WP-Optimize - Version 3.2.5

Version Description

  • 03/Jun/2022 =

  • FIX: Fix a fatal error that could occur in 3.2.4 if settings had not been saved

Download this release

Release Info

Developer DavidAnderson
Plugin Icon 128x128 WP-Optimize
Version 3.2.5
Comparing to
See all releases

Code changes from version 3.2.3 to 3.2.5

Files changed (53) hide show
  1. cache/{class-cache-commands.php → class-wp-optimize-cache-commands.php} +0 -0
  2. cache/{class-wpo-detect-cache-plugins.php → class-wp-optimize-detect-cache-plugins.php} +0 -0
  3. cache/{class-wpo-cache-preloader.php → class-wp-optimize-page-cache-preloader.php} +3 -4
  4. cache/class-wpo-cache-config.php +20 -8
  5. cache/class-wpo-cache-rules.php +9 -19
  6. cache/class-wpo-load-url-task.php +0 -2
  7. cache/class-wpo-page-cache.php +122 -31
  8. cache/file-based-page-cache-functions.php +177 -10
  9. cache/file-based-page-cache.php +7 -0
  10. css/{admin-3-2-3.min.css → admin-3-2-5.min.css} +1 -1
  11. css/{admin-3-2-3.min.css.map → admin-3-2-5.min.css.map} +1 -1
  12. css/smush-3-2-3.min.css +0 -2
  13. css/smush-3-2-3.min.css.map +0 -1
  14. css/smush-3-2-5.min.css +2 -0
  15. css/smush-3-2-5.min.css.map +1 -0
  16. css/smush.css +1 -0
  17. css/{wp-optimize-admin-3-2-3.min.css → wp-optimize-admin-3-2-5.min.css} +1 -1
  18. css/{wp-optimize-admin-3-2-3.min.css.map → wp-optimize-admin-3-2-5.min.css.map} +1 -1
  19. css/{wp-optimize-global-3-2-3.min.css → wp-optimize-global-3-2-5.min.css} +1 -1
  20. css/{wp-optimize-global-3-2-3.min.css.map → wp-optimize-global-3-2-5.min.css.map} +1 -1
  21. google-fonts.json +1 -1
  22. includes/{class-updraft-resmushit-task.php → class-re-smush-it-task.php} +0 -2
  23. includes/class-updraft-php-logger.php +0 -1
  24. includes/class-updraft-smush-manager-commands.php +18 -0
  25. includes/class-updraft-smush-manager.php +11 -12
  26. includes/class-updraft-smush-task.php +1 -4
  27. includes/class-updraftcentral-wp-optimize-commands.php +0 -1
  28. includes/class-wp-optimize-admin.php +729 -0
  29. includes/{class-commands.php → class-wp-optimize-commands.php} +0 -0
  30. includes/{wp-optimize-database-information.php → class-wp-optimize-database-information.php} +17 -0
  31. includes/class-wp-optimize-htaccess.php +1 -1
  32. includes/{wp-optimize-notices.php → class-wp-optimize-notices.php} +0 -0
  33. includes/{class-wpo-preloader.php → class-wp-optimize-preloader.php} +0 -0
  34. js/{cache-3-2-3.min.js → cache-3-2-5.min.js} +0 -0
  35. js/{loadAsync-3-2-3.min.js → loadAsync-3-2-5.min.js} +0 -0
  36. js/{loadCSS-3-2-3.min.js → loadCSS-3-2-5.min.js} +0 -0
  37. js/{minify-3-2-3.min.js → minify-3-2-5.min.js} +0 -0
  38. js/{modal-3-2-3.min.js → modal-3-2-5.min.js} +0 -0
  39. js/{queue-3-2-3.min.js → queue-3-2-5.min.js} +0 -0
  40. js/{send-command-3-2-3.min.js → send-command-3-2-5.min.js} +0 -0
  41. js/{wpo-images-view-3-2-3.min.js → wpo-images-view-3-2-5.min.js} +0 -0
  42. js/{wpoadmin-3-2-3.min.js → wpoadmin-3-2-5.min.js} +0 -0
  43. js/wposmush-3-2-3.min.js +0 -1
  44. js/wposmush-3-2-5.min.js +1 -0
  45. js/wposmush.js +18 -7
  46. languages/wp-optimize.pot +527 -491
  47. minify/class-wp-optimize-minify-admin.php +0 -4
  48. minify/class-wp-optimize-minify-front-end.php +73 -13
  49. minify/{class-wpo-minify-load-url-task.php → class-wp-optimize-minify-load-url-task.php} +0 -0
  50. minify/{class-wpo-minify-preloader.php → class-wp-optimize-minify-preloader.php} +0 -4
  51. minify/class-wp-optimize-minify.php +0 -11
  52. optimizations/revisions.php +1 -1
  53. plugin.json +0 -1
cache/{class-cache-commands.php → class-wp-optimize-cache-commands.php} RENAMED
File without changes
cache/{class-wpo-detect-cache-plugins.php → class-wp-optimize-detect-cache-plugins.php} RENAMED
File without changes
cache/{class-wpo-cache-preloader.php → class-wp-optimize-page-cache-preloader.php} RENAMED
@@ -3,10 +3,6 @@
3
  if (!defined('ABSPATH')) die('No direct access allowed');
4
 
5
 
6
- if (!class_exists('WP_Optimize_Load_Url_Task')) require_once(dirname(__FILE__) . '/class-wpo-load-url-task.php');
7
-
8
- if (!class_exists('WP_Optimize_Preloader')) require_once(WPO_PLUGIN_MAIN_PATH . 'includes/class-wpo-preloader.php');
9
-
10
  class WP_Optimize_Page_Cache_Preloader extends WP_Optimize_Preloader {
11
 
12
  protected $preload_type = 'page_cache';
@@ -196,6 +192,9 @@ class WP_Optimize_Page_Cache_Preloader extends WP_Optimize_Preloader {
196
  $description = 'Preload - '.$url;
197
  $options = array('url' => $url, 'preload_type' => $type, 'anonymous_user_allowed' => (defined('DOING_CRON') && DOING_CRON) || (defined('WP_CLI') && WP_CLI));
198
 
 
 
 
199
  WP_Optimize_Load_Url_Task::create_task($this->task_type, $description, $options, 'WP_Optimize_Load_Url_Task');
200
  }
201
 
3
  if (!defined('ABSPATH')) die('No direct access allowed');
4
 
5
 
 
 
 
 
6
  class WP_Optimize_Page_Cache_Preloader extends WP_Optimize_Preloader {
7
 
8
  protected $preload_type = 'page_cache';
192
  $description = 'Preload - '.$url;
193
  $options = array('url' => $url, 'preload_type' => $type, 'anonymous_user_allowed' => (defined('DOING_CRON') && DOING_CRON) || (defined('WP_CLI') && WP_CLI));
194
 
195
+ if (!class_exists('WP_Optimize_Load_Url_Task')) {
196
+ require_once WPO_PLUGIN_MAIN_PATH . 'cache/class-wpo-load-url-task.php';
197
+ }
198
  WP_Optimize_Load_Url_Task::create_task($this->task_type, $description, $options, 'WP_Optimize_Load_Url_Task');
199
  }
200
 
cache/class-wpo-cache-config.php CHANGED
@@ -57,7 +57,7 @@ class WPO_Cache_Config {
57
  */
58
  public function get_option($option_key, $default = false) {
59
  $options = $this->get();
60
- return isset($options[$option_key]) ? $options[$option_key] : $default;
61
  }
62
 
63
  /**
@@ -156,13 +156,7 @@ class WPO_Cache_Config {
156
  */
157
  private function write($config, $only_if_present = false) {
158
 
159
- $url = parse_url(network_site_url());
160
-
161
- if (isset($url['port']) && '' != $url['port'] && 80 != $url['port']) {
162
- $config_file = WPO_CACHE_CONFIG_DIR.'/config-'.$url['host'].'-port'.$url['port'].'.php';
163
- } else {
164
- $config_file = WPO_CACHE_CONFIG_DIR.'/config-'.$url['host'].'.php';
165
- }
166
 
167
  $this->config = wp_parse_args($config, $this->get_defaults());
168
 
@@ -238,6 +232,7 @@ class WPO_Cache_Config {
238
  'page_cache_length_value' => 24,
239
  'page_cache_length_unit' => 'hours',
240
  'page_cache_length' => 86400,
 
241
  'cache_exception_urls' => array(),
242
  'cache_exception_cookies' => array(),
243
  'cache_exception_browser_agents' => array(),
@@ -248,11 +243,28 @@ class WPO_Cache_Config {
248
  'enable_user_caching' => false,
249
  'site_url' => network_site_url('/'),
250
  'enable_cache_per_country' => false,
 
 
251
  );
252
 
253
  return apply_filters('wpo_cache_defaults', $defaults);
254
  }
255
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
256
  /**
257
  * Return an instance of the current class, create one if it doesn't exist
258
  *
57
  */
58
  public function get_option($option_key, $default = false) {
59
  $options = $this->get();
60
+ return apply_filters("wpo_option_key_{$option_key}", (isset($options[$option_key]) ? $options[$option_key] : $default));
61
  }
62
 
63
  /**
156
  */
157
  private function write($config, $only_if_present = false) {
158
 
159
+ $config_file = WPO_CACHE_CONFIG_DIR.'/'.$this->get_cache_config_filename();
 
 
 
 
 
 
160
 
161
  $this->config = wp_parse_args($config, $this->get_defaults());
162
 
232
  'page_cache_length_value' => 24,
233
  'page_cache_length_unit' => 'hours',
234
  'page_cache_length' => 86400,
235
+ 'cache_exception_conditional_tags' => array(),
236
  'cache_exception_urls' => array(),
237
  'cache_exception_cookies' => array(),
238
  'cache_exception_browser_agents' => array(),
243
  'enable_user_caching' => false,
244
  'site_url' => network_site_url('/'),
245
  'enable_cache_per_country' => false,
246
+ 'permalink_structure' => get_option('permalink_structure'),
247
+ 'uploads' => wp_upload_dir()['basedir'],
248
  );
249
 
250
  return apply_filters('wpo_cache_defaults', $defaults);
251
  }
252
 
253
+ /**
254
+ * Get advanced-cache.php file name with full path.
255
+ *
256
+ * @return string
257
+ */
258
+ public function get_cache_config_filename() {
259
+ $url = parse_url(network_site_url());
260
+
261
+ if (isset($url['port']) && '' != $url['port'] && 80 != $url['port']) {
262
+ return 'config-'.$url['host'].'-port'.$url['port'].'.php';
263
+ } else {
264
+ return 'config-'.$url['host'].'.php';
265
+ }
266
+ }
267
+
268
  /**
269
  * Return an instance of the current class, create one if it doesn't exist
270
  *
cache/class-wpo-cache-rules.php CHANGED
@@ -6,8 +6,6 @@ if (!defined('ABSPATH')) die('No direct access allowed');
6
  * Page caching rules and exceptions
7
  */
8
 
9
- if (!class_exists('WPO_Cache_Config')) require_once('class-wpo-cache-config.php');
10
-
11
  require_once dirname(__FILE__) . '/file-based-page-cache-functions.php';
12
 
13
  if (!class_exists('WPO_Cache_Rules')) :
@@ -46,6 +44,7 @@ class WPO_Cache_Rules {
46
  add_action('set_object_terms', array($this, 'purge_related_elements_on_post_terms_change'), 10, 6);
47
  add_action('wpo_cache_config_updated', array($this, 'cache_config_updated'), 10, 1);
48
  add_action('wp_insert_comment', array($this, 'comment_inserted'), 10, 2);
 
49
 
50
  add_action('woocommerce_variation_set_stock', array($this, 'purge_product_page'), 10, 1);
51
  add_action('woocommerce_product_set_stock', array($this, 'purge_product_page'), 10, 1);
@@ -55,7 +54,7 @@ class WPO_Cache_Rules {
55
  *
56
  * @param array $actions The actions
57
  */
58
- $purge_on_action = apply_filters('wpo_purge_cache_hooks', array('after_switch_theme', 'wp_update_nav_menu', 'customize_save_after', array('wp_ajax_save-widget', 0), array('wp_ajax_update-widget', 0), 'autoptimize_action_cachepurged', 'upgrader_overwrote_package', 'wpo_active_plugin_or_theme_updated', 'fusion_cache_reset_after'));
59
  foreach ($purge_on_action as $action) {
60
  if (is_array($action)) {
61
  add_action($action[0], array($this, 'purge_cache'), $action[1]);
@@ -63,8 +62,6 @@ class WPO_Cache_Rules {
63
  add_action($action, array($this, 'purge_cache'));
64
  }
65
  }
66
-
67
- add_filter('wpo_cache_cookies', array($this, 'wpo_cache_cookies'), 9);
68
  }
69
 
70
  /**
@@ -128,6 +125,13 @@ class WPO_Cache_Rules {
128
  }
129
  }
130
 
 
 
 
 
 
 
 
131
  /**
132
  * Automatically purge all file based page cache on post changes
133
  * We want the whole cache purged here as different parts
@@ -334,20 +338,6 @@ class WPO_Cache_Rules {
334
  }
335
  }
336
 
337
- /**
338
- * Add cookie names that are need separate caching
339
- */
340
- public function wpo_cache_cookies($cookies) {
341
- $cookies[] = 'cookie_notice_accepted';
342
- $cookies[] = 'cookielawinfo-checkbox-necessary';
343
- $cookies[] = 'cookielawinfo-checkbox-functional';
344
- $cookies[] = 'cookielawinfo-checkbox-advertisement';
345
- $cookies[] = 'cookielawinfo-checkbox-others';
346
- $cookies[] = 'cookielawinfo-checkbox-analytics';
347
- $cookies[] = 'cookielawinfo-checkbox-performance';
348
- return $cookies;
349
- }
350
-
351
  /**
352
  * Returns an instance of the current class, creates one if it doesn't exist
353
  *
6
  * Page caching rules and exceptions
7
  */
8
 
 
 
9
  require_once dirname(__FILE__) . '/file-based-page-cache-functions.php';
10
 
11
  if (!class_exists('WPO_Cache_Rules')) :
44
  add_action('set_object_terms', array($this, 'purge_related_elements_on_post_terms_change'), 10, 6);
45
  add_action('wpo_cache_config_updated', array($this, 'cache_config_updated'), 10, 1);
46
  add_action('wp_insert_comment', array($this, 'comment_inserted'), 10, 2);
47
+ add_action('import_start', array($this, 'remove_wp_insert_comment'));
48
 
49
  add_action('woocommerce_variation_set_stock', array($this, 'purge_product_page'), 10, 1);
50
  add_action('woocommerce_product_set_stock', array($this, 'purge_product_page'), 10, 1);
54
  *
55
  * @param array $actions The actions
56
  */
57
+ $purge_on_action = apply_filters('wpo_purge_cache_hooks', array('after_switch_theme', 'wp_update_nav_menu', 'customize_save_after', array('wp_ajax_save-widget', 0), array('wp_ajax_update-widget', 0), 'autoptimize_action_cachepurged', 'upgrader_overwrote_package', 'wpo_active_plugin_or_theme_updated', 'fusion_cache_reset_after', 'update_option_permalink_structure'));
58
  foreach ($purge_on_action as $action) {
59
  if (is_array($action)) {
60
  add_action($action[0], array($this, 'purge_cache'), $action[1]);
62
  add_action($action, array($this, 'purge_cache'));
63
  }
64
  }
 
 
65
  }
66
 
67
  /**
125
  }
126
  }
127
 
128
+ /**
129
+ * Comment posted cookie is not needed for imports. So remove the action
130
+ */
131
+ public function remove_wp_insert_comment() {
132
+ remove_action('wp_insert_comment', array($this, 'comment_inserted'), 10);
133
+ }
134
+
135
  /**
136
  * Automatically purge all file based page cache on post changes
137
  * We want the whole cache purged here as different parts
338
  }
339
  }
340
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341
  /**
342
  * Returns an instance of the current class, creates one if it doesn't exist
343
  *
cache/class-wpo-load-url-task.php CHANGED
@@ -4,8 +4,6 @@ if (!defined('ABSPATH')) die('Access denied.');
4
 
5
  if (!class_exists('Updraft_Task_1_2')) require_once(WPO_PLUGIN_MAIN_PATH . 'vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task.php');
6
 
7
- if (!class_exists('WP_Optimize_Page_Cache_Preloader')) require_once(dirname(__FILE__) . '/class-wpo-cache-preloader.php');
8
-
9
  class WP_Optimize_Load_Url_Task extends Updraft_Task_1_2 {
10
 
11
  /**
4
 
5
  if (!class_exists('Updraft_Task_1_2')) require_once(WPO_PLUGIN_MAIN_PATH . 'vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task.php');
6
 
 
 
7
  class WP_Optimize_Load_Url_Task extends Updraft_Task_1_2 {
8
 
9
  /**
cache/class-wpo-page-cache.php CHANGED
@@ -27,18 +27,6 @@ if (!defined('WPO_CACHE_CONFIG_DIR')) define('WPO_CACHE_CONFIG_DIR', WPO_CACHE_D
27
  */
28
  if (!defined('WPO_CACHE_FILES_DIR')) define('WPO_CACHE_FILES_DIR', untrailingslashit(WP_CONTENT_DIR).'/cache/wpo-cache');
29
 
30
- if (!class_exists('WPO_Cache_Config')) require_once(dirname(__FILE__) . '/class-wpo-cache-config.php');
31
- if (!class_exists('WPO_Cache_Rules')) require_once(dirname(__FILE__) . '/class-wpo-cache-rules.php');
32
-
33
- if (!class_exists('WP_Optimize_Detect_Cache_Plugins')) require_once(dirname(__FILE__) . '/class-wpo-detect-cache-plugins.php');
34
-
35
- if (!class_exists('WP_Optimize_Page_Cache_Preloader')) require_once(dirname(__FILE__) . '/class-wpo-cache-preloader.php');
36
- if (!class_exists('WPO_Cache_Config')) require_once(dirname(__FILE__) . '/class-wpo-cache-config.php');
37
- if (!class_exists('WPO_Cache_Rules')) require_once(dirname(__FILE__) . '/class-wpo-cache-rules.php');
38
-
39
- if (!class_exists('Updraft_Abstract_Logger')) require_once(WPO_PLUGIN_MAIN_PATH.'includes/class-updraft-abstract-logger.php');
40
- if (!class_exists('Updraft_PHP_Logger')) require_once(WPO_PLUGIN_MAIN_PATH.'includes/class-updraft-php-logger.php');
41
-
42
  require_once dirname(__FILE__) . '/file-based-page-cache-functions.php';
43
 
44
  if (version_compare(PHP_VERSION, '5.3.0') >= 0) {
@@ -109,14 +97,16 @@ class WPO_Page_Cache {
109
  $this->rules = WPO_Cache_Rules::instance();
110
  $this->logger = new Updraft_PHP_Logger();
111
 
112
- add_action('activate_plugin', array($this, 'activate_deactivate_plugin'));
113
  add_action('deactivate_plugin', array($this, 'activate_deactivate_plugin'));
 
114
 
115
  /**
116
  * Regenerate config file on cache flush.
117
  */
118
  add_action('wpo_cache_flush', array($this, 'update_cache_config'));
119
  add_action('wpo_cache_flush', array($this, 'delete_cache_size_information'));
 
120
 
121
  // Add purge cache link to admin bar.
122
  add_filter('wpo_cache_admin_bar_menu_items', array($this, 'admin_bar_purge_cache'), 20, 1);
@@ -127,6 +117,19 @@ class WPO_Page_Cache {
127
  add_action('admin_init', array($this, 'admin_init'));
128
 
129
  $this->check_compatibility_issues();
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  }
131
 
132
  /**
@@ -134,6 +137,8 @@ class WPO_Page_Cache {
134
  */
135
  public function activate_deactivate_plugin() {
136
 
 
 
137
  $this->update_cache_config();
138
 
139
  /**
@@ -383,6 +388,13 @@ class WPO_Page_Cache {
383
  // N.B. The only use of WP_CACHE in WP core is to include('advanced-cache.php') (and run a function if it's then defined); so, if the decision to leave it enable is, for some unexpected reason, technically incorrect, it still can't cause a problem.
384
  $disabled_wp_config = $this->write_wp_config(false);
385
  if (!$disabled_wp_config) {
 
 
 
 
 
 
 
386
  $this->log("Could not turn off the WP_CACHE constant in wp-config.php");
387
  $this->add_warning('error_disabling', __('Could not turn off the WP_CACHE constant in wp-config.php', 'wp-optimize'));
388
  }
@@ -430,6 +442,57 @@ class WPO_Page_Cache {
430
  return true;
431
  }
432
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
433
  /**
434
  * Purges the cache
435
  *
@@ -455,14 +518,18 @@ class WPO_Page_Cache {
455
  public function is_enabled() {
456
 
457
  if (!defined('WP_CACHE') || !WP_CACHE) {
 
458
  return false;
459
  }
460
 
461
  if (!defined('WPO_ADVANCED_CACHE') || !WPO_ADVANCED_CACHE) {
 
462
  return false;
463
  }
464
 
465
- if (!file_exists(WPO_CACHE_CONFIG_DIR . '/'.$this->get_cache_config_filename())) {
 
 
466
  return false;
467
  }
468
 
@@ -504,21 +571,6 @@ class WPO_Page_Cache {
504
  return untrailingslashit(WP_CONTENT_DIR) . '/advanced-cache.php';
505
  }
506
 
507
- /**
508
- * Get advanced-cache.php file name with full path.
509
- *
510
- * @return string
511
- */
512
- public function get_cache_config_filename() {
513
- $url = parse_url(network_site_url());
514
-
515
- if (isset($url['port']) && '' != $url['port'] && 80 != $url['port']) {
516
- return 'config-'.$url['host'].'-port'.$url['port'].'.php';
517
- } else {
518
- return 'config-'.$url['host'].'.php';
519
- }
520
- }
521
-
522
  /**
523
  * Writes advanced-cache.php
524
  *
@@ -526,7 +578,7 @@ class WPO_Page_Cache {
526
  * @return bool
527
  */
528
  private function write_advanced_cache($update_required = false) {
529
- $config_file_basename = $this->get_cache_config_filename();
530
  $cache_file_basename = untrailingslashit(plugin_dir_path(__FILE__));
531
  $plugin_basename = basename(WPO_PLUGIN_MAIN_PATH);
532
  $cache_path = '/wpo-cache';
@@ -786,7 +838,7 @@ EOF;
786
  $this->log("Unable to write inside the cache configuration folder; please check file/folder permissions");
787
  // If the config exists, only send a warning. Otherwise send an error.
788
  $type = 'warning';
789
- if (!file_exists(WPO_CACHE_CONFIG_DIR . '/'.$this->get_cache_config_filename())) {
790
  $type = 'error';
791
  $errors++;
792
  }
@@ -797,6 +849,21 @@ EOF;
797
  return !$errors;
798
  }
799
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
800
  /**
801
  * Update cache config. Used to support 3d party plugins.
802
  */
@@ -1072,6 +1139,7 @@ EOF;
1072
  // Maybe update the advanced cache.
1073
  if ((!defined('DOING_AJAX') || !DOING_AJAX) && current_user_can('update_plugins')) {
1074
  $this->maybe_update_advanced_cache();
 
1075
  }
1076
  }
1077
 
@@ -1223,6 +1291,29 @@ EOF;
1223
  $message .= ' '.__('Please check file and directory permissions on the file paths up to this point, and your PHP error log.', 'wp-optimize');
1224
  WP_Optimize()->include_template('notices/cache-notice.php', false, array('message' => $message));
1225
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1226
  }
1227
 
1228
  endif;
27
  */
28
  if (!defined('WPO_CACHE_FILES_DIR')) define('WPO_CACHE_FILES_DIR', untrailingslashit(WP_CONTENT_DIR).'/cache/wpo-cache');
29
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  require_once dirname(__FILE__) . '/file-based-page-cache-functions.php';
31
 
32
  if (version_compare(PHP_VERSION, '5.3.0') >= 0) {
97
  $this->rules = WPO_Cache_Rules::instance();
98
  $this->logger = new Updraft_PHP_Logger();
99
 
100
+ add_action('activated_plugin', array($this, 'activate_deactivate_plugin'));
101
  add_action('deactivate_plugin', array($this, 'activate_deactivate_plugin'));
102
+ add_action('wpo_purge_old_cache', array($this, 'purge_old'));
103
 
104
  /**
105
  * Regenerate config file on cache flush.
106
  */
107
  add_action('wpo_cache_flush', array($this, 'update_cache_config'));
108
  add_action('wpo_cache_flush', array($this, 'delete_cache_size_information'));
109
+ add_action('update_option_permalink_structure', array($this, 'update_option_permalink_structure'), 10, 3);
110
 
111
  // Add purge cache link to admin bar.
112
  add_filter('wpo_cache_admin_bar_menu_items', array($this, 'admin_bar_purge_cache'), 20, 1);
117
  add_action('admin_init', array($this, 'admin_init'));
118
 
119
  $this->check_compatibility_issues();
120
+
121
+ add_filter('cron_schedules', array($this, 'cron_schedules'));
122
+ add_action('wpo_save_images_settings', array($this, 'update_webp_images_option'));
123
+ }
124
+
125
+ /**
126
+ * Activate cron job for deleting expired cache files
127
+ */
128
+ public function cron_activate() {
129
+ $page_cache_length = $this->config->get_option('page_cache_length');
130
+ if (!wp_next_scheduled('wpo_purge_old_cache')) {
131
+ wp_schedule_event(time() + (false === $page_cache_length ? '86400' : $page_cache_length), 'wpo_purge_old_cache', 'wpo_purge_old_cache');
132
+ }
133
  }
134
 
135
  /**
137
  */
138
  public function activate_deactivate_plugin() {
139
 
140
+ wp_clear_scheduled_hook('wpo_purge_old_cache');
141
+
142
  $this->update_cache_config();
143
 
144
  /**
388
  // N.B. The only use of WP_CACHE in WP core is to include('advanced-cache.php') (and run a function if it's then defined); so, if the decision to leave it enable is, for some unexpected reason, technically incorrect, it still can't cause a problem.
389
  $disabled_wp_config = $this->write_wp_config(false);
390
  if (!$disabled_wp_config) {
391
+ $plugin_basename = basename(WPO_PLUGIN_MAIN_PATH);
392
+ $action = "deactivate_".$plugin_basename."/wp-optimize.php";
393
+ if (current_action() === $action) {
394
+ $cache_config = WPO_Cache_Config::instance()->config;
395
+ $cache_config['enable_page_caching'] = false;
396
+ WPO_Cache_Config::instance()->update($cache_config, true);
397
+ }
398
  $this->log("Could not turn off the WP_CACHE constant in wp-config.php");
399
  $this->add_warning('error_disabling', __('Could not turn off the WP_CACHE constant in wp-config.php', 'wp-optimize'));
400
  }
442
  return true;
443
  }
444
 
445
+ /**
446
+ * Purge cache files older than cache life span
447
+ */
448
+ public function purge_old() {
449
+ $page_cache_length = $this->config->get_option('page_cache_length');
450
+ $expires = time() - $page_cache_length;
451
+ $log = array();
452
+ $cache_folder = WPO_CACHE_FILES_DIR . '/' . str_ireplace(array('http://', 'https://'), '', get_site_url());
453
+ // get all directories that are a direct child of current directory
454
+ if (is_dir($cache_folder) && is_writable($cache_folder)) {
455
+ if ($handle = opendir($cache_folder)) {
456
+ while (false !== ($d = readdir($handle))) {
457
+ if (0 == strcmp($d, '.') || 0 == strcmp($d, '..')) {
458
+ continue;
459
+ }
460
+
461
+ if ($this->is_front_page_cache($d)) {
462
+ $modified_time = (int) filemtime("$cache_folder/$d");
463
+ if ($modified_time <= $expires) {
464
+ unlink("$cache_folder/$d");
465
+ }
466
+ continue;
467
+ }
468
+
469
+ $dir = $cache_folder.'/'.$d;
470
+ if (!is_dir($dir)) continue;
471
+
472
+ $stat = stat($dir);
473
+ $modified_time = $stat['mtime'];
474
+ $log[] = "checking if cache has expired - $d";
475
+ if ($modified_time <= $expires) {
476
+ $log[] = "deleting cache in $dir";
477
+ wpo_delete_files($dir, true);
478
+ if (file_exists($dir)) rmdir($dir);
479
+ }
480
+ }
481
+ closedir($handle);
482
+ }
483
+ }
484
+ return $log;
485
+ }
486
+
487
+ /**
488
+ * Finds out given cache file is of front page or not
489
+ *
490
+ * @return bool
491
+ */
492
+ private function is_front_page_cache($d) {
493
+ return in_array($d, array('index.html', 'index.html.gz'));
494
+ }
495
+
496
  /**
497
  * Purges the cache
498
  *
518
  public function is_enabled() {
519
 
520
  if (!defined('WP_CACHE') || !WP_CACHE) {
521
+ $this->log("WP_CACHE constant is not present in wp-config.php");
522
  return false;
523
  }
524
 
525
  if (!defined('WPO_ADVANCED_CACHE') || !WPO_ADVANCED_CACHE) {
526
+ $this->log("WPO_ADVANCED_CACHE constant is not present in advanced-cache.php");
527
  return false;
528
  }
529
 
530
+ $config_file = WPO_CACHE_CONFIG_DIR . '/'.$this->config->get_cache_config_filename();
531
+ if (!file_exists($config_file)) {
532
+ $this->log("$config_file is not present");
533
  return false;
534
  }
535
 
571
  return untrailingslashit(WP_CONTENT_DIR) . '/advanced-cache.php';
572
  }
573
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
574
  /**
575
  * Writes advanced-cache.php
576
  *
578
  * @return bool
579
  */
580
  private function write_advanced_cache($update_required = false) {
581
+ $config_file_basename = $this->config->get_cache_config_filename();
582
  $cache_file_basename = untrailingslashit(plugin_dir_path(__FILE__));
583
  $plugin_basename = basename(WPO_PLUGIN_MAIN_PATH);
584
  $cache_path = '/wpo-cache';
838
  $this->log("Unable to write inside the cache configuration folder; please check file/folder permissions");
839
  // If the config exists, only send a warning. Otherwise send an error.
840
  $type = 'warning';
841
+ if (!file_exists(WPO_CACHE_CONFIG_DIR . '/'.$this->config->get_cache_config_filename())) {
842
  $type = 'error';
843
  $errors++;
844
  }
849
  return !$errors;
850
  }
851
 
852
+ /**
853
+ * Update permalink strucutre in cache config
854
+ *
855
+ * @param string $old_value Old value of permalink_structure option
856
+ * @param string $value New value of permalink_structure option
857
+ * @param string $option Option name `permalink_structure`
858
+ */
859
+ public function update_option_permalink_structure($old_value, $value, $option) {
860
+ $current_config = $this->config->get();
861
+ if ($old_value != $value) {
862
+ $current_config[$option] = $value;
863
+ $this->config->update($current_config, true);
864
+ }
865
+ }
866
+
867
  /**
868
  * Update cache config. Used to support 3d party plugins.
869
  */
1139
  // Maybe update the advanced cache.
1140
  if ((!defined('DOING_AJAX') || !DOING_AJAX) && current_user_can('update_plugins')) {
1141
  $this->maybe_update_advanced_cache();
1142
+ $this->cron_activate();
1143
  }
1144
  }
1145
 
1291
  $message .= ' '.__('Please check file and directory permissions on the file paths up to this point, and your PHP error log.', 'wp-optimize');
1292
  WP_Optimize()->include_template('notices/cache-notice.php', false, array('message' => $message));
1293
  }
1294
+
1295
+ /**
1296
+ * Scheduler public functions to update schedulers
1297
+ *
1298
+ * @param array $schedules An array of schedules being passed.
1299
+ * @return array An array of schedules being returned.
1300
+ */
1301
+ public function cron_schedules($schedules) {
1302
+ $page_cache_length = $this->config->get_option('page_cache_length');
1303
+ $schedules['wpo_purge_old_cache'] = array('interval' => false === $page_cache_length ? 86400 : $page_cache_length, 'display' => __('Every time after the cache has expired', 'wp-optimize'));
1304
+ return $schedules;
1305
+ }
1306
+
1307
+ /**
1308
+ * Update cache config file to reflect the webp images option
1309
+ */
1310
+ public function update_webp_images_option() {
1311
+ if ($this->is_enabled()) {
1312
+ $cache_settings = WPO_Cache_Config::instance()->get();
1313
+ $cache_settings['use_webp_images'] = WP_Optimize()->get_options()->get_option('webp_conversion');
1314
+ WPO_Cache_Config::instance()->update($cache_settings);
1315
+ }
1316
+ }
1317
  }
1318
 
1319
  endif;
cache/file-based-page-cache-functions.php CHANGED
@@ -42,6 +42,11 @@ function wpo_cache($buffer, $flags) {
42
  $no_cache_because[] = $restricted_page_type_cache;
43
  }
44
 
 
 
 
 
 
45
  // No root cache folder, so short-circuit here
46
  if (!file_exists(WPO_CACHE_DIR)) {
47
  $no_cache_because[] = __('WP-O cache parent directory was not found', 'wp-optimize').' ('.WPO_CACHE_DIR.')';
@@ -193,7 +198,7 @@ function wpo_cache($buffer, $flags) {
193
  }
194
 
195
  // if we can then cache gzipped content in .gz file.
196
- if (function_exists('gzencode')) {
197
  // Only replace inside the addition, not inside the main buffer (e.g. post content)
198
  file_put_contents($cache_file . '.gz', gzencode($buffer.str_replace('by WP-Optimize', 'by WP-Optimize (gzip)', $add_to_footer), apply_filters('wpo_cache_gzip_level', 6)));
199
  }
@@ -204,14 +209,18 @@ function wpo_cache($buffer, $flags) {
204
  // delete cached information about cache size.
205
  WP_Optimize()->get_page_cache()->delete_cache_size_information();
206
  } else {
207
- error_log('[WPO_CACHE] WP_Optimize() is not callable.');
208
- $message = 'Please report this to WP-O support: ';
209
- if (function_exists('wp_debug_backtrace_summary')) {
210
- $message .= wp_debug_backtrace_summary();
211
- } else {
212
- $message .= wpo_debug_backtrace_summary();
 
 
 
 
 
213
  }
214
- error_log($message);
215
  }
216
 
217
  header('Cache-Control: no-cache'); // Check back every time to see if re-download is necessary.
@@ -323,6 +332,10 @@ function wpo_cache_filename($ext = '.html') {
323
  $filename = 'mobile.' . $filename;
324
  }
325
 
 
 
 
 
326
  $cookies = wpo_cache_cookies();
327
 
328
  $cache_key = '';
@@ -541,6 +554,52 @@ function wpo_cache_mobile_caching_enabled() {
541
  }
542
  endif;
543
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
544
  /**
545
  * Serves the cache and exits
546
  */
@@ -606,6 +665,9 @@ function wpo_serve_cache() {
606
  }
607
 
608
  if (file_exists($path) && is_readable($path)) {
 
 
 
609
  if ($use_gzip && !$gzip_header_already_sent) {
610
  header('Content-Encoding: gzip');
611
  }
@@ -637,6 +699,35 @@ function wpo_serve_cache() {
637
  }
638
  endif;
639
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
640
  /**
641
  * Clears the cache
642
  */
@@ -694,6 +785,48 @@ function wpo_current_url() {
694
  }
695
  endif;
696
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
697
  /**
698
  * Return list of url exceptions.
699
  *
@@ -707,13 +840,13 @@ function wpo_get_url_exceptions() {
707
 
708
  // if called from file-based-page-cache.php when WP loading
709
  // and cache settings exists then use it otherwise get settings from database.
710
- if (isset($GLOBALS['wpo_cache_config']['cache_exception_urls'])) {
711
  if (empty($GLOBALS['wpo_cache_config']['cache_exception_urls'])) {
712
  $exceptions = array();
713
  } else {
714
  $exceptions = is_array($GLOBALS['wpo_cache_config']['cache_exception_urls']) ? $GLOBALS['wpo_cache_config']['cache_exception_urls'] : preg_split('#(\n|\r)#', $GLOBALS['wpo_cache_config']['cache_exception_urls']);
715
  }
716
- } else {
717
  $config = WPO_Page_Cache::instance()->config->get();
718
 
719
  if (is_array($config) && array_key_exists('cache_exception_urls', $config)) {
@@ -724,6 +857,8 @@ function wpo_get_url_exceptions() {
724
 
725
  $exceptions = is_array($exceptions) ? $exceptions : preg_split('#(\n|\r)#', $exceptions);
726
  $exceptions = array_filter($exceptions, 'trim');
 
 
727
  }
728
 
729
  return apply_filters('wpo_get_url_exceptions', $exceptions);
@@ -744,6 +879,38 @@ function wpo_current_url_exception_match($exception) {
744
  }
745
  endif;
746
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
747
  /**
748
  * Check if url in exceptions list.
749
  *
42
  $no_cache_because[] = $restricted_page_type_cache;
43
  }
44
 
45
+ $conditional_tag_exceptions = apply_filters('wpo_url_in_conditional_tags_exceptions', false);
46
+ if ($conditional_tag_exceptions) {
47
+ $no_cache_because[] = $conditional_tag_exceptions;
48
+ }
49
+
50
  // No root cache folder, so short-circuit here
51
  if (!file_exists(WPO_CACHE_DIR)) {
52
  $no_cache_because[] = __('WP-O cache parent directory was not found', 'wp-optimize').' ('.WPO_CACHE_DIR.')';
198
  }
199
 
200
  // if we can then cache gzipped content in .gz file.
201
+ if (function_exists('gzencode') && apply_filters('wpo_allow_cache_gzip_files', true)) {
202
  // Only replace inside the addition, not inside the main buffer (e.g. post content)
203
  file_put_contents($cache_file . '.gz', gzencode($buffer.str_replace('by WP-Optimize', 'by WP-Optimize (gzip)', $add_to_footer), apply_filters('wpo_cache_gzip_level', 6)));
204
  }
209
  // delete cached information about cache size.
210
  WP_Optimize()->get_page_cache()->delete_cache_size_information();
211
  } else {
212
+ // If the shutdown occurs before plugins are loaded,
213
+ // then this will trigger a fatal error, so, we check first
214
+ if (!doing_action('shutdown')) {
215
+ error_log('[WPO_CACHE] WP_Optimize() is not callable.');
216
+ $message = 'Please report this to WP-O support: ';
217
+ if (function_exists('wp_debug_backtrace_summary')) {
218
+ $message .= wp_debug_backtrace_summary();
219
+ } else {
220
+ $message .= wpo_debug_backtrace_summary();
221
+ }
222
+ error_log($message);
223
  }
 
224
  }
225
 
226
  header('Cache-Control: no-cache'); // Check back every time to see if re-download is necessary.
332
  $filename = 'mobile.' . $filename;
333
  }
334
 
335
+ if (wpo_webp_images_enabled() && !wpo_is_using_webp_images_redirection() && wpo_is_using_alter_html()) {
336
+ $filename = $filename . '.webp';
337
+ }
338
+
339
  $cookies = wpo_cache_cookies();
340
 
341
  $cache_key = '';
554
  }
555
  endif;
556
 
557
+ /**
558
+ * Check if webp images enabled
559
+ *
560
+ * @return bool
561
+ */
562
+ if (!function_exists('wpo_webp_images_enabled')) :
563
+ function wpo_webp_images_enabled() {
564
+ if (!empty($GLOBALS['wpo_cache_config']['use_webp_images'])) return true;
565
+ return false;
566
+ }
567
+ endif;
568
+
569
+ /**
570
+ * Check whether webp images using alter html method or not
571
+ *
572
+ * @return bool
573
+ */
574
+ if (!function_exists('wpo_is_using_alter_html')) :
575
+ function wpo_is_using_alter_html() {
576
+ return (isset($_SERVER['HTTP_ACCEPT']) && false !== strpos($_SERVER['HTTP_ACCEPT'], 'image/webp'));
577
+ }
578
+ endif;
579
+
580
+ /**
581
+ * Check whether webp images are served using redirect
582
+ *
583
+ * @return bool
584
+ */
585
+ if (!function_exists('wpo_is_using_webp_images_redirection')) :
586
+ function wpo_is_using_webp_images_redirection() {
587
+ if (empty($GLOBALS['wpo_cache_config']['uploads'])) return false;
588
+
589
+ $uploads_dir = $GLOBALS['wpo_cache_config']['uploads'];
590
+ $htaccess_file = $uploads_dir . '/.htaccess';
591
+ if (!file_exists($htaccess_file)) return false;
592
+ $htaccess_content = file_get_contents($htaccess_file);
593
+ $comment_sections = array('Register webp mime type', 'WP-Optimize WebP Rules');
594
+
595
+ if (function_exists('str_contains')) {
596
+ return str_contains($htaccess_content, $comment_sections[0]) && str_contains($htaccess_content, $comment_sections[1]);
597
+ } else {
598
+ return strpos($htaccess_content, $comment_sections[0]) && strpos($htaccess_content, $comment_sections[1]);
599
+ }
600
+ }
601
+ endif;
602
+
603
  /**
604
  * Serves the cache and exits
605
  */
665
  }
666
 
667
  if (file_exists($path) && is_readable($path)) {
668
+
669
+ if (wpo_is_canonical_redirection_needed()) return;
670
+
671
  if ($use_gzip && !$gzip_header_already_sent) {
672
  header('Content-Encoding: gzip');
673
  }
699
  }
700
  endif;
701
 
702
+ /**
703
+ * Checks and does redirection, if needed
704
+ *
705
+ * @return bool
706
+ */
707
+ if (!function_exists('wpo_is_canonical_redirection_needed')) :
708
+ function wpo_is_canonical_redirection_needed() {
709
+ $permalink_structure = isset($GLOBALS['wpo_cache_config']['permalink_structure']) ? $GLOBALS['wpo_cache_config']['permalink_structure'] : '';
710
+ $site_url = $GLOBALS['wpo_cache_config']['site_url'];
711
+
712
+ $schema = isset($_SERVER['HTTPS']) && 'on' === $_SERVER['HTTPS'] ? "https" : "http";
713
+ $url_part = "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
714
+ $requested_url = $schema . $url_part;
715
+ $url_parts = parse_url($requested_url);
716
+ $extension = pathinfo($url_parts['path'], PATHINFO_EXTENSION);
717
+
718
+ if (!empty($permalink_structure) && $requested_url != $site_url) {
719
+ if ('/' == substr($permalink_structure, -1) && empty($extension) && empty($url_parts['query']) && empty($url_parts['fragment'])) {
720
+ $url = preg_replace('/(.+?)([\/]*)(\[\?\#][^\/]+|$)/', '$1/$3', $_SERVER['REQUEST_URI']);
721
+ if (0 !== strcmp($_SERVER['REQUEST_URI'], $url)) return true;
722
+ } else {
723
+ $url = rtrim($_SERVER['REQUEST_URI'], '/');
724
+ if (0 !== strcmp($_SERVER['REQUEST_URI'], $url)) return true;
725
+ }
726
+ }
727
+ return false;
728
+ }
729
+ endif;
730
+
731
  /**
732
  * Clears the cache
733
  */
785
  }
786
  endif;
787
 
788
+ /**
789
+ * Return list of conditional tag exceptions.
790
+ *
791
+ * @return array
792
+ */
793
+ if (!function_exists('wpo_get_conditional_tags_exceptions')) :
794
+ function wpo_get_conditional_tags_exceptions() {
795
+ static $exceptions = null;
796
+
797
+ if (null !== $exceptions) return $exceptions;
798
+
799
+ if (!empty($GLOBALS['wpo_cache_config'])) {
800
+ if (empty($GLOBALS['wpo_cache_config']['cache_exception_conditional_tags'])) {
801
+ $exceptions = array();
802
+
803
+ } else {
804
+
805
+ $exceptions = $GLOBALS['wpo_cache_config']['cache_exception_conditional_tags'];
806
+
807
+ }
808
+
809
+ } elseif (class_exists('WPO_Page_Cache')) {
810
+
811
+ $config = WPO_Page_Cache::instance()->config->get();
812
+
813
+ if (is_array($config) && array_key_exists('cache_exception_conditional_tags', $config)) {
814
+ $exceptions = $config['cache_exception_conditional_tags'];
815
+ } else {
816
+ $exceptions = array();
817
+ }
818
+
819
+ $exceptions = is_array($exceptions) ? $exceptions : preg_split('#(\n|\r|\r\n)#', $exceptions);
820
+ $exceptions = array_filter($exceptions, 'trim');
821
+
822
+ } else {
823
+ $exceptions = array();
824
+ }
825
+
826
+ return $exceptions;
827
+ }
828
+ endif;
829
+
830
  /**
831
  * Return list of url exceptions.
832
  *
840
 
841
  // if called from file-based-page-cache.php when WP loading
842
  // and cache settings exists then use it otherwise get settings from database.
843
+ if (!empty($GLOBALS['wpo_cache_config'])) {
844
  if (empty($GLOBALS['wpo_cache_config']['cache_exception_urls'])) {
845
  $exceptions = array();
846
  } else {
847
  $exceptions = is_array($GLOBALS['wpo_cache_config']['cache_exception_urls']) ? $GLOBALS['wpo_cache_config']['cache_exception_urls'] : preg_split('#(\n|\r)#', $GLOBALS['wpo_cache_config']['cache_exception_urls']);
848
  }
849
+ } elseif (class_exists('WPO_Page_Cache')) {
850
  $config = WPO_Page_Cache::instance()->config->get();
851
 
852
  if (is_array($config) && array_key_exists('cache_exception_urls', $config)) {
857
 
858
  $exceptions = is_array($exceptions) ? $exceptions : preg_split('#(\n|\r)#', $exceptions);
859
  $exceptions = array_filter($exceptions, 'trim');
860
+ } else {
861
+ $exceptions = array();
862
  }
863
 
864
  return apply_filters('wpo_get_url_exceptions', $exceptions);
879
  }
880
  endif;
881
 
882
+ /**
883
+ * Check if url in conditional tags exceptions list.
884
+ *
885
+ * @return string
886
+ */
887
+ if (!function_exists('wpo_url_in_conditional_tags_exceptions')) :
888
+ function wpo_url_in_conditional_tags_exceptions() {
889
+
890
+ $exceptions = wpo_get_conditional_tags_exceptions();
891
+ $restricted = '';
892
+ $allowed_functions = array('is_single', 'is_page', 'is_front_page', 'is_home', 'is_archive', 'is_tag', 'is_category', 'is_feed', 'is_search', 'is_author', 'is_woocommerce', 'is_shop', 'is_product', 'is_account_page', 'is_product_category', 'is_product_tag', 'is_wc_endpoint_url', 'is_bbpress', 'bbp_is_forum_archive', 'bbp_is_topic_archive', 'bbp_is_topic_tag', 'bbp_is_single_forum', 'bbp_is_single_topic', 'bbp_is_single_view', 'bbp_is_single_user', 'bbp_is_user_home', 'bbp_is_search');
893
+ //Filter for add more conditional tags to whitelist in the exceptions list.
894
+ $allowed_functions = apply_filters('wpo_allowed_conditional_tags_exceptions', $allowed_functions);
895
+ if (!empty($exceptions)) {
896
+ foreach ($exceptions as $exception) {
897
+ if (false !== strpos($exception, 'is_')) {
898
+ $exception_function = $exception;
899
+ if ('()' == substr($exception, -2)) {
900
+ $exception_function = substr($exception, 0, -2);
901
+ }
902
+
903
+ if (in_array($exception_function, $allowed_functions) && function_exists($exception_function) && call_user_func($exception_function)) {
904
+ $restricted = sprintf(__('In the settings, caching is disabled for %s', 'wp-optimize'), $exception_function);
905
+ }
906
+ }
907
+ }
908
+ }
909
+ return $restricted;
910
+ }
911
+ endif;
912
+
913
+
914
  /**
915
  * Check if url in exceptions list.
916
  *
cache/file-based-page-cache.php CHANGED
@@ -26,16 +26,23 @@ $no_cache_because = array();
26
  // check if we want to cache current page.
27
  if (function_exists('add_filter') && function_exists('apply_filters')) {
28
  add_filter('wpo_restricted_cache_page_type', 'wpo_restricted_cache_page_type');
 
29
  $restricted_cache_page_type = apply_filters('wpo_restricted_cache_page_type', false);
 
30
  } else {
31
  // On old WP versions, you can't filter the result
32
  $restricted_cache_page_type = wpo_restricted_cache_page_type(false);
 
33
  }
34
 
35
  if ($restricted_cache_page_type) {
36
  $no_cache_because[] = $restricted_cache_page_type;
37
  }
38
 
 
 
 
 
39
  // Don't cache non-GET requests.
40
  if (!isset($_SERVER['REQUEST_METHOD']) || 'GET' !== $_SERVER['REQUEST_METHOD']) {
41
  $no_cache_because[] = 'The request method was not GET ('.(isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : '-').')';
26
  // check if we want to cache current page.
27
  if (function_exists('add_filter') && function_exists('apply_filters')) {
28
  add_filter('wpo_restricted_cache_page_type', 'wpo_restricted_cache_page_type');
29
+ add_filter('wpo_url_in_conditional_tags_exceptions', 'wpo_url_in_conditional_tags_exceptions');
30
  $restricted_cache_page_type = apply_filters('wpo_restricted_cache_page_type', false);
31
+ $conditional_tag_exceptions = wpo_url_in_conditional_tags_exceptions();
32
  } else {
33
  // On old WP versions, you can't filter the result
34
  $restricted_cache_page_type = wpo_restricted_cache_page_type(false);
35
+ $conditional_tag_exceptions = wpo_url_in_conditional_tags_exceptions();
36
  }
37
 
38
  if ($restricted_cache_page_type) {
39
  $no_cache_because[] = $restricted_cache_page_type;
40
  }
41
 
42
+ if ($conditional_tag_exceptions) {
43
+ $no_cache_because[] = $conditional_tag_exceptions;
44
+ }
45
+
46
  // Don't cache non-GET requests.
47
  if (!isset($_SERVER['REQUEST_METHOD']) || 'GET' !== $_SERVER['REQUEST_METHOD']) {
48
  $no_cache_because[] = 'The request method was not GET ('.(isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : '-').')';
css/{admin-3-2-3.min.css → admin-3-2-5.min.css} RENAMED
@@ -1,2 +1,2 @@
1
  .wpo_hidden{display:none !important}.wpo_info{background:#FFF;color:#444;font-family:-apple-system,"BlinkMacSystemFont","Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;margin:2em auto;padding:1em 2em;max-width:700px;box-shadow:0 1px 3px rgba(0,0,0,0.13)}#wp-optimize-wrap .widefat thead th,#wp-optimize-wrap .widefat thead td{border-bottom:1px solid #e1e1e1}#wp-optimize-wrap .widefat td,#wp-optimize-wrap .widefat th{padding:8px 10px}.wpo_primary_big{padding:4px 6px !important;font-size:22px !important;min-height:34px;min-width:200px}.wpo_section{clear:both;padding:0;margin:0}.wp-optimize-settings{margin-bottom:16px}.wp-optimize-settings td>label{font-weight:bold;display:block;margin-bottom:8px}.wpo_col{display:block;float:left;margin:1% 0 1% 1%}.wpo_col:first-child{margin-left:0}.wpo_group:before,.wpo_group:after{content:"";display:table}.wpo_group:after{clear:both}.wpo_half_width{width:48%}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:65.3%}.wpo_span_1_of_3{width:32.1%}#wp-optimize-wrap .nav-tab-wrapper{margin:0}@media screen and (min-width:549px){.show_on_default_sizes{display:block !important}.show_on_mobile_sizes{display:none !important}}@media screen and (max-width:548px){.show_on_default_sizes{display:none !important}.show_on_mobile_sizes{display:block !important}}@media screen and (max-width:768px){.wpo_col{margin:1% 0}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:100%}.wpo_span_1_of_3{width:100%}.wpo_half_width{width:100%}}.wp-optimize-setting-is-sensitive td>label::before{content:"\f534";font-family:'dashicons';display:inline-block;margin-right:6px;font-style:normal;line-height:1;vertical-align:middle;width:20px;font-size:18px;height:20px;text-align:center;color:#72777c}.wpo-run-optimizations__container{margin-bottom:15px}.wp-optimize-optimizations-table-placeholder{min-height:80px}td.wp-optimize-settings-optimization-checkbox{width:18px;padding-left:4px;padding-right:0}.wp-optimize-settings-optimization-checkbox input{margin:0;padding:0}#retention-period,#revisions-count{width:60px}.wp-optimize-settings-optimization-info{font-size:80%;font-style:italic}img.addons{display:block;margin-left:auto;margin-right:auto;margin-bottom:20px;max-height:44px;height:auto;max-width:100%}.wpo_spinner{width:18px;height:18px;padding-left:10px;display:none;position:relative;top:4px}.optimization_spinner{width:20px;height:20px}#wp-optimize-auto-options{margin:20px 0 0 28px}.display-none{display:none}.visibility-hidden{visibility:hidden}.margin-one-percent{margin:1%}#save_done,.save-done{color:#d94f00;font-size:220% !important}.wp-optimize-settings-optimization-info a{text-decoration:underline}.wp-optimize-settings-optimization-run-spinner{position:relative;top:2px}@media screen and (min-width:782px){td.wp-optimize-settings-optimization-run{width:180px;padding-top:16px}}#wpoptimize_table_list .tablesorter-filter-row{display:none !important}#wpoptimize_table_list .optimization_spinner{position:relative;top:2px;left:5px}#wpoptimize_table_list .optimization_spinner.visibility-hidden{display:none}#wpoptimize_table_list_filter{width:100%;margin-bottom:15px}#wpoptimize_table_list_tables_not_found{display:none;margin:20px 0}div#wpoptimize_table_list_tables_not_found+h3{margin-top:30px}#wpoptimize_table_list tr th:first-child,#wpoptimize_table_list tr td:first-child{display:none}#wpoptimize_table_list tr td.no-table{display:table-cell !important;background:#fb8787;font-weight:bold}#optimize_form .select2-container,#wp-optimize-auto-options .select2-container{width:50% !important;top:-5px;height:40px;margin-left:10px}#wpoptimize_table_list .optimization_done_icon{color:#009b24;font-size:200%;display:inline-block;position:relative}#wpo_sitelist_show_moreoptions_cron{font-size:13px;line-height:1.5;letter-spacing:1px}#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3{display:inline-block}.wpo_remove_selected_sizes_btn__container{margin-top:20px}.unused-image-sizes__label{display:block;line-height:1.6}@media(max-width:782px){.unused-image-sizes__label{margin-left:30px;margin-bottom:15px;line-height:1;word-break:break-word}.unused-image-sizes__label input[type=checkbox]{margin-left:-30px}body.rtl .unused-image-sizes__label{margin-right:30px;margin-left:0}body.rtl .unused-image-sizes__label input[type=checkbox]{margin-left:4px;margin-right:-30px}}#wp-optimize-nav-tab-contents-tables a{vertical-align:middle}#wpo_sitelist_moreoptions,#wpo_sitelist_moreoptions_cron{margin:4px 16px 6px 0;border:1px dotted;padding:6px 10px;max-height:300px;overflow-y:scroll;overflow-x:hidden}#wpo_sitelist_moreoptions{max-height:150px;margin-right:0}#wpo_settings_sites_list li,#wpo_settings_sites_list li a{font-size:13px;line-height:1.5}#wpo_sitelist_moreoptions_cron li{padding-left:20px}#wpo_import_error_message{display:none;color:#9b0000}#wpo_import_success_message{display:none;color:#46b450}#wp-optimize-logging-options{margin-top:10px}.wpo_logging_header{font-weight:bold;border-top:1px solid #333;border-bottom:1px solid #333;padding:5px 0;margin:0}.wpo_logging_row{border-bottom:1px solid #a1a2a3;padding:5px 0}.wpo_logging_logger_title,.wpo_logging_options_title,.wpo_logging_status_title,.wpo_logging_actions_title,.wpo_logging_logger_row,.wpo_logging_options_row,.wpo_logging_status_row,.wpo_logging_actions_row{display:inline-block;vertical-align:middle}.wpo_logging_logger_title,.wpo_logging_logger_row{width:38%}.wpo_logging_options_title,.wpo_logging_options_row{width:44%}.wpo_logging_status_title,.wpo_logging_status_row{width:8%}.wpo_logging_actions_title,.wpo_logging_actions_row{width:7%}.wpo_logging_actions_row{text-align:right}.wpo_logging_options_row{word-wrap:break-word}.wpo_logging_actions_row .dashicons-no-alt,.wpo_add_logger_form .dashicons-no-alt{background-color:#f06666;color:#FFF;width:20px;height:20px;border-radius:20px;display:inline-block;cursor:pointer;margin-left:5px}.wpo_add_logger_form .dashicons-no-alt{margin-top:12px;margin-right:10px;float:right}.wpo_logger_type{width:90%;margin-top:10px}.wpo_logger_addition_option{width:100%;margin-top:5px}.wpo_alert_notice{background-color:#f06666;color:#FFF;padding:1em;display:block;margin-bottom:10px;border-radius:5px}.wpo_error_field{border-color:#f06666 !important}.save_settings_reminder{display:none;color:#333;padding:15px 20px;background-color:#f0a5a4;border-radius:3px;margin:15px 0}#wpo_remove_selected_sizes{margin-top:20px}.wpo_unused_images_buttons_wrap{float:right;margin-right:20px}.wpo_unused_images_container h3{min-width:150px}#wpo_unused_images,#wpo_smush_images_grid{max-height:500px;overflow-y:auto}#wpo_unused_images a{outline:0}#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup{margin-left:1%}.run-single-table-delete{margin-top:3px}.wpo-confirm h4 span.table-name{font-style:italic;display:inline-block;background:#efefef;padding:3px 7px;border-radius:4px}#wpo_browser_cache_output,#wpo_gzip_compression_output,#wpo_advanced_cache_output{background:#f0f0f0;padding:10px;border:1px solid #CCC;white-space:pre-wrap}#wpo_gzip_compression_error_message,.wpo-error{color:#9b0000}.notice.wpo-error__enabling-cache{white-space:pre-wrap;margin-bottom:15px}.notice.wpo-warnings__enabling-cache{margin-bottom:15px}.notice.wpo-warnings__enabling-cache ul,.notice.wpo-warnings__enabling-cache ul li{list-style:inside disc}a.loading.wpo-refresh-gzip-status{color:rgba(68,68,68,0.5);text-decoration:none}a.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none{display:inline-block}#wpo_browser_cache_expire_days,#wpo_browser_cache_expire_hours{width:50px}.wpo-enabled .wpo-disabled{display:none}.wpo-disabled .wpo-enabled{display:none}.wpo-button-wrap{margin-top:10px}
2
- /*# sourceMappingURL=admin-3-2-3.min.css.map */
1
  .wpo_hidden{display:none !important}.wpo_info{background:#FFF;color:#444;font-family:-apple-system,"BlinkMacSystemFont","Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;margin:2em auto;padding:1em 2em;max-width:700px;box-shadow:0 1px 3px rgba(0,0,0,0.13)}#wp-optimize-wrap .widefat thead th,#wp-optimize-wrap .widefat thead td{border-bottom:1px solid #e1e1e1}#wp-optimize-wrap .widefat td,#wp-optimize-wrap .widefat th{padding:8px 10px}.wpo_primary_big{padding:4px 6px !important;font-size:22px !important;min-height:34px;min-width:200px}.wpo_section{clear:both;padding:0;margin:0}.wp-optimize-settings{margin-bottom:16px}.wp-optimize-settings td>label{font-weight:bold;display:block;margin-bottom:8px}.wpo_col{display:block;float:left;margin:1% 0 1% 1%}.wpo_col:first-child{margin-left:0}.wpo_group:before,.wpo_group:after{content:"";display:table}.wpo_group:after{clear:both}.wpo_half_width{width:48%}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:65.3%}.wpo_span_1_of_3{width:32.1%}#wp-optimize-wrap .nav-tab-wrapper{margin:0}@media screen and (min-width:549px){.show_on_default_sizes{display:block !important}.show_on_mobile_sizes{display:none !important}}@media screen and (max-width:548px){.show_on_default_sizes{display:none !important}.show_on_mobile_sizes{display:block !important}}@media screen and (max-width:768px){.wpo_col{margin:1% 0}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:100%}.wpo_span_1_of_3{width:100%}.wpo_half_width{width:100%}}.wp-optimize-setting-is-sensitive td>label::before{content:"\f534";font-family:'dashicons';display:inline-block;margin-right:6px;font-style:normal;line-height:1;vertical-align:middle;width:20px;font-size:18px;height:20px;text-align:center;color:#72777c}.wpo-run-optimizations__container{margin-bottom:15px}.wp-optimize-optimizations-table-placeholder{min-height:80px}td.wp-optimize-settings-optimization-checkbox{width:18px;padding-left:4px;padding-right:0}.wp-optimize-settings-optimization-checkbox input{margin:0;padding:0}#retention-period,#revisions-count{width:60px}.wp-optimize-settings-optimization-info{font-size:80%;font-style:italic}img.addons{display:block;margin-left:auto;margin-right:auto;margin-bottom:20px;max-height:44px;height:auto;max-width:100%}.wpo_spinner{width:18px;height:18px;padding-left:10px;display:none;position:relative;top:4px}.optimization_spinner{width:20px;height:20px}#wp-optimize-auto-options{margin:20px 0 0 28px}.display-none{display:none}.visibility-hidden{visibility:hidden}.margin-one-percent{margin:1%}#save_done,.save-done{color:#d94f00;font-size:220% !important}.wp-optimize-settings-optimization-info a{text-decoration:underline}.wp-optimize-settings-optimization-run-spinner{position:relative;top:2px}@media screen and (min-width:782px){td.wp-optimize-settings-optimization-run{width:180px;padding-top:16px}}#wpoptimize_table_list .tablesorter-filter-row{display:none !important}#wpoptimize_table_list .optimization_spinner{position:relative;top:2px;left:5px}#wpoptimize_table_list .optimization_spinner.visibility-hidden{display:none}#wpoptimize_table_list_filter{width:100%;margin-bottom:15px}#wpoptimize_table_list_tables_not_found{display:none;margin:20px 0}div#wpoptimize_table_list_tables_not_found+h3{margin-top:30px}#wpoptimize_table_list tr th:first-child,#wpoptimize_table_list tr td:first-child{display:none}#wpoptimize_table_list tr td.no-table{display:table-cell !important;background:#fb8787;font-weight:bold}#optimize_form .select2-container,#wp-optimize-auto-options .select2-container{width:50% !important;top:-5px;height:40px;margin-left:10px}#wpoptimize_table_list .optimization_done_icon{color:#009b24;font-size:200%;display:inline-block;position:relative}#wpo_sitelist_show_moreoptions_cron{font-size:13px;line-height:1.5;letter-spacing:1px}#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3{display:inline-block}.wpo_remove_selected_sizes_btn__container{margin-top:20px}.unused-image-sizes__label{display:block;line-height:1.6}@media(max-width:782px){.unused-image-sizes__label{margin-left:30px;margin-bottom:15px;line-height:1;word-break:break-word}.unused-image-sizes__label input[type=checkbox]{margin-left:-30px}body.rtl .unused-image-sizes__label{margin-right:30px;margin-left:0}body.rtl .unused-image-sizes__label input[type=checkbox]{margin-left:4px;margin-right:-30px}}#wp-optimize-nav-tab-contents-tables a{vertical-align:middle}#wpo_sitelist_moreoptions,#wpo_sitelist_moreoptions_cron{margin:4px 16px 6px 0;border:1px dotted;padding:6px 10px;max-height:300px;overflow-y:scroll;overflow-x:hidden}#wpo_sitelist_moreoptions{max-height:150px;margin-right:0}#wpo_settings_sites_list li,#wpo_settings_sites_list li a{font-size:13px;line-height:1.5}#wpo_sitelist_moreoptions_cron li{padding-left:20px}#wpo_import_error_message{display:none;color:#9b0000}#wpo_import_success_message{display:none;color:#46b450}#wp-optimize-logging-options{margin-top:10px}.wpo_logging_header{font-weight:bold;border-top:1px solid #333;border-bottom:1px solid #333;padding:5px 0;margin:0}.wpo_logging_row{border-bottom:1px solid #a1a2a3;padding:5px 0}.wpo_logging_logger_title,.wpo_logging_options_title,.wpo_logging_status_title,.wpo_logging_actions_title,.wpo_logging_logger_row,.wpo_logging_options_row,.wpo_logging_status_row,.wpo_logging_actions_row{display:inline-block;vertical-align:middle}.wpo_logging_logger_title,.wpo_logging_logger_row{width:38%}.wpo_logging_options_title,.wpo_logging_options_row{width:44%}.wpo_logging_status_title,.wpo_logging_status_row{width:8%}.wpo_logging_actions_title,.wpo_logging_actions_row{width:7%}.wpo_logging_actions_row{text-align:right}.wpo_logging_options_row{word-wrap:break-word}.wpo_logging_actions_row .dashicons-no-alt,.wpo_add_logger_form .dashicons-no-alt{background-color:#f06666;color:#FFF;width:20px;height:20px;border-radius:20px;display:inline-block;cursor:pointer;margin-left:5px}.wpo_add_logger_form .dashicons-no-alt{margin-top:12px;margin-right:10px;float:right}.wpo_logger_type{width:90%;margin-top:10px}.wpo_logger_addition_option{width:100%;margin-top:5px}.wpo_alert_notice{background-color:#f06666;color:#FFF;padding:1em;display:block;margin-bottom:10px;border-radius:5px}.wpo_error_field{border-color:#f06666 !important}.save_settings_reminder{display:none;color:#333;padding:15px 20px;background-color:#f0a5a4;border-radius:3px;margin:15px 0}#wpo_remove_selected_sizes{margin-top:20px}.wpo_unused_images_buttons_wrap{float:right;margin-right:20px}.wpo_unused_images_container h3{min-width:150px}#wpo_unused_images,#wpo_smush_images_grid{max-height:500px;overflow-y:auto}#wpo_unused_images a{outline:0}#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup{margin-left:1%}.run-single-table-delete{margin-top:3px}.wpo-confirm h4 span.table-name{font-style:italic;display:inline-block;background:#efefef;padding:3px 7px;border-radius:4px}#wpo_browser_cache_output,#wpo_gzip_compression_output,#wpo_advanced_cache_output{background:#f0f0f0;padding:10px;border:1px solid #CCC;white-space:pre-wrap}#wpo_gzip_compression_error_message,.wpo-error{color:#9b0000}.notice.wpo-error__enabling-cache{white-space:pre-wrap;margin-bottom:15px}.notice.wpo-warnings__enabling-cache{margin-bottom:15px}.notice.wpo-warnings__enabling-cache ul,.notice.wpo-warnings__enabling-cache ul li{list-style:inside disc}a.loading.wpo-refresh-gzip-status{color:rgba(68,68,68,0.5);text-decoration:none}a.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none{display:inline-block}#wpo_browser_cache_expire_days,#wpo_browser_cache_expire_hours{width:50px}.wpo-enabled .wpo-disabled{display:none}.wpo-disabled .wpo-enabled{display:none}.wpo-button-wrap{margin-top:10px}
2
+ /*# sourceMappingURL=admin-3-2-5.min.css.map */
css/{admin-3-2-3.min.css.map → admin-3-2-5.min.css.map} RENAMED
@@ -1 +1 @@
1
- {"version":3,"sources":["css/admin.css"],"names":[],"mappings":"AAAA;CACC,yBAAyB;CACzB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,2IAA2I;CAC3I,iBAAiB;CACjB,iBAAiB;CACjB,iBAAiB;CAEjB,uCAAuC;CACvC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kBAAkB;CAClB;;AAED,gBAAgB;AAChB;CACC,4BAA4B;CAC5B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED,gBAAgB;AAChB;CACC,YAAY;CACZ,WAAW;CACX,UAAU;CACV;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,mBAAmB;CACnB;;AAED,oBAAoB;AACpB;CACC,eAAe;CACf,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf;;AAED,gBAAgB;AAChB;;CAEC,YAAY;CACZ,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,WAAW;CACX;;AAED,qBAAqB;AACrB;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV;;AAED;;CAEC;EACC,0BAA0B;EAC1B;;CAED;EACC,yBAAyB;EACzB;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED;;CAEC;EACC,aAAa;EACb;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;;AAED,qRAAqR;;AAErR,uBAAuB;;AAEvB;CACC,iBAAiB;CACjB,yBAAyB;CACzB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB,eAAe;CACf,uBAAuB;CACvB,YAAY;CACZ,gBAAgB;CAChB,aAAa;CACb,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED,sCAAsC;AACtC;CACC,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB,iBAAiB;CACjB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,cAAc;CACd,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,WAAW;CACX;;AAED;CACC,eAAe;CACf,2BAA2B;CAC3B;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT;;AAED;;CAEC;EACC,aAAa;EACb,kBAAkB;EAClB;;CAED;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT,UAAU;CACV;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,uBAAuB;AACvB;;CAEC,cAAc;CACd;;AAED;CACC,+BAA+B;CAC/B,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;;CAEC,sBAAsB;CACtB,UAAU;CACV,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,sBAAsB;CACtB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB;;AAED;;CAEC;EACC,kBAAkB;EAClB,oBAAoB;EACpB,eAAe;EACf,uBAAuB;EACvB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,mBAAmB;EACnB,eAAe;EACf;;CAED;EACC,iBAAiB;EACjB,oBAAoB;EACpB;;CAED;;AAED;CACC,uBAAuB;CACvB;;AAED;;CAEC,uBAAuB;CACvB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;;CAEC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,oBAAoB;AACpB;CACC,kBAAkB;CAClB,2BAA2B;CAC3B,8BAA8B;CAC9B,eAAe;CACf,UAAU;CACV;;AAED;CACC,iCAAiC;CACjC,eAAe;CACf;;AAED;;;;;;;;CAQC,sBAAsB;CACtB,uBAAuB;CACvB;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,UAAU;CACV;;AAED;;CAEC,UAAU;CACV;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,0BAA0B;CAC1B,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ,aAAa;CACb,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,cAAc;CACd,YAAY;CACZ,mBAAmB;CACnB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB,sBAAsB;CACtB,oBAAoB;CACpB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;;;CAGC,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,6BAA6B;CAC7B,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB","file":"admin-3-2-3.min.css","sourcesContent":[".wpo_hidden {\n\tdisplay: none !important;\n}\n\n.wpo_info {\n\tbackground: #FFF;\n\tcolor: #444;\n\tfont-family: -apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen-Sans\", \"Ubuntu\", \"Cantarell\", \"Helvetica Neue\", sans-serif;\n\tmargin: 2em auto;\n\tpadding: 1em 2em;\n\tmax-width: 700px;\n\t-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);\n\tbox-shadow: 0 1px 3px rgba(0,0,0,0.13);\n}\n\n#wp-optimize-wrap .widefat thead th, #wp-optimize-wrap .widefat thead td {\n\tborder-bottom: 1px solid #E1E1E1;\n}\n\n#wp-optimize-wrap .widefat td, #wp-optimize-wrap .widefat th {\n\tpadding: 8px 10px;\n}\n\n/* big button */\n.wpo_primary_big {\n\tpadding: 4px 6px !important;\n\tfont-size: 22px !important;\n\tmin-height: 34px;\n\tmin-width: 200px;\n}\n\n/* SECTIONS */\n.wpo_section {\n\tclear: both;\n\tpadding: 0;\n\tmargin: 0;\n}\n\n.wp-optimize-settings {\n\tmargin-bottom: 16px;\n}\n\n.wp-optimize-settings td > label {\n\tfont-weight: bold;\n\tdisplay: block;\n\tmargin-bottom: 8px;\n}\n\n/* COLUMN SETUP */\n.wpo_col {\n\tdisplay: block;\n\tfloat: left;\n\tmargin: 1% 0 1% 1%;\n}\n\n.wpo_col:first-child {\n\tmargin-left: 0;\n}\n\n/* GROUPING */\n.wpo_group:before,\n.wpo_group:after {\n\tcontent: \"\";\n\tdisplay: table;\n}\n\n.wpo_group:after {\n\tclear: both;\n}\n\n.wpo_half_width {\n\twidth: 48%;\n}\n\n/* GRID OF THREE */\n.wpo_span_3_of_3 {\n\twidth: 100%;\n}\n\n.wpo_span_2_of_3 {\n\twidth: 65.3%;\n}\n\n.wpo_span_1_of_3 {\n\twidth: 32.1%;\n}\n\n#wp-optimize-wrap .nav-tab-wrapper {\n\tmargin: 0;\n}\n\n@media screen and (min-width: 549px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: block !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: none !important;\n\t}\n\n}\n\n@media screen and (max-width: 548px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: none !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: block !important;\n\t}\n\n}\n\n@media screen and (max-width: 768px) {\n\n\t.wpo_col {\n\t\tmargin: 1% 0;\n\t}\n\n\t.wpo_span_3_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_2_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_1_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_half_width {\n\t\twidth: 100%;\n\t}\n\n}\n\n/* .wp-optimize-settings-clean-transient label, .wp-optimize-settings-clean-pingbacks label, .wp-optimize-settings-clean-trackbacks label, .wp-optimize-settings-clean-postmeta label, .wp-optimize-settings-clean-orphandata label, .wp-optimize-settings-clean-commentmeta label */\n\n/* Optimizations tab */\n\n.wp-optimize-setting-is-sensitive td > label::before {\n\tcontent: \"\\f534\";\n\tfont-family: 'dashicons';\n\tdisplay: inline-block;\n\tmargin-right: 6px;\n\tfont-style: normal;\n\tline-height: 1;\n\tvertical-align: middle;\n\twidth: 20px;\n\tfont-size: 18px;\n\theight: 20px;\n\ttext-align: center;\n\tcolor: #72777C;\n}\n\n.wpo-run-optimizations__container {\n\tmargin-bottom: 15px;\n}\n\n.wp-optimize-optimizations-table-placeholder {\n\tmin-height: 80px;\n}\n\ntd.wp-optimize-settings-optimization-checkbox {\n\twidth: 18px;\n\tpadding-left: 4px;\n\tpadding-right: 0px;\n}\n\n.wp-optimize-settings-optimization-checkbox input {\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n#retention-period, #revisions-count {\n\twidth: 60px;\n}\n\n.wp-optimize-settings-optimization-info {\n\tfont-size: 80%;\n\tfont-style: italic;\n}\n\n.wp-optimize-settings input[type=\"checkbox\"] {\n\t/* width: 18px; */\n}\n\n/* Added for the Image on Addons tab*/\nimg.addons {\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tmargin-bottom: 20px;\n\tmax-height: 44px;\n\theight: auto;\n\tmax-width: 100%;\n}\n\n.wpo_spinner {\n\twidth: 18px;\n\theight: 18px;\n\tpadding-left: 10px;\n\tdisplay: none;\n\tposition: relative;\n\ttop: 4px;\n}\n\n.optimization_spinner {\n\twidth: 20px;\n\theight: 20px;\n}\n\n#wp-optimize-auto-options {\n\tmargin: 20px 0 0 28px;\n}\n\n.display-none {\n\tdisplay: none;\n}\n\n.visibility-hidden {\n\tvisibility: hidden;\n}\n\n.margin-one-percent {\n\tmargin: 1%;\n}\n\n#save_done, .save-done {\n\tcolor: #D94F00;\n\tfont-size: 220% !important;\n}\n\n.wp-optimize-settings-optimization-info a {\n\ttext-decoration: underline;\n}\n\n.wp-optimize-settings-optimization-run-spinner {\n\tposition: relative;\n\ttop: 2px;\n}\n\n@media screen and (min-width: 782px) {\n\n\ttd.wp-optimize-settings-optimization-run {\n\t\twidth: 180px;\n\t\tpadding-top: 16px;\n\t}\n\n}\n\n#wpoptimize_table_list .tablesorter-filter-row {\n\tdisplay: none !important;\n}\n\n#wpoptimize_table_list .optimization_spinner {\n\tposition: relative;\n\ttop: 2px;\n\tleft: 5px;\n}\n\n#wpoptimize_table_list .optimization_spinner.visibility-hidden {\n\tdisplay: none;\n}\n\n#wpoptimize_table_list_filter {\n\twidth: 100%;\n\tmargin-bottom: 15px;\n}\n\n#wpoptimize_table_list_tables_not_found {\n\tdisplay: none;\n\tmargin: 20px 0;\n}\n\ndiv#wpoptimize_table_list_tables_not_found + h3 {\n\tmargin-top: 30px;\n}\n\n/* Hide First column */\n#wpoptimize_table_list tr th:first-child,\n#wpoptimize_table_list tr td:first-child {\n\tdisplay: none;\n}\n\n#wpoptimize_table_list tr td.no-table {\n\tdisplay: table-cell !important;\n\tbackground: #FB8787;\n\tfont-weight: bold;\n}\n\n#optimize_form .select2-container,\n#wp-optimize-auto-options .select2-container {\n\twidth: 50% !important;\n\ttop: -5px;\n\theight: 40px;\n\tmargin-left: 10px;\n}\n\n#wpoptimize_table_list .optimization_done_icon {\n\tcolor: #009B24;\n\tfont-size: 200%;\n\tdisplay: inline-block;\n\tposition: relative;\n}\n\n#wpo_sitelist_show_moreoptions_cron {\n\tfont-size: 13px;\n\tline-height: 1.5;\n\tletter-spacing: 1px;\n}\n\n#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3 {\n\tdisplay: inline-block;\n}\n\n.wpo_remove_selected_sizes_btn__container {\n\tmargin-top: 20px;\n}\n\n.unused-image-sizes__label {\n\tdisplay: block;\n\tline-height: 1.6;\n}\n\n@media (max-width: 782px) {\n\n\t.unused-image-sizes__label {\n\t\tmargin-left: 30px;\n\t\tmargin-bottom: 15px;\n\t\tline-height: 1;\n\t\tword-break: break-word;\n\t}\n\n\t.unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: -30px;\n\t}\n\n\tbody.rtl .unused-image-sizes__label {\n\t\tmargin-right: 30px;\n\t\tmargin-left: 0;\n\t}\n\n\tbody.rtl .unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: 4px;\n\t\tmargin-right: -30px;\n\t}\n\n}\n\n#wp-optimize-nav-tab-contents-tables a {\n\tvertical-align: middle;\n}\n\n#wpo_sitelist_moreoptions,\n#wpo_sitelist_moreoptions_cron {\n\tmargin: 4px 16px 6px 0;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n\tmax-height: 300px;\n\toverflow-y: scroll;\n\toverflow-x: hidden;\n}\n\n#wpo_sitelist_moreoptions {\n\tmax-height: 150px;\n\tmargin-right: 0;\n}\n\n#wpo_settings_sites_list li,\n#wpo_settings_sites_list li a {\n\tfont-size: 13px;\n\tline-height: 1.5;\n}\n\n#wpo_sitelist_moreoptions_cron li {\n\tpadding-left: 20px;\n}\n\n#wpo_import_error_message {\n\tdisplay: none;\n\tcolor: #9B0000;\n}\n\n#wpo_import_success_message {\n\tdisplay: none;\n\tcolor: #46B450;\n}\n\n#wp-optimize-logging-options {\n\tmargin-top: 10px;\n}\n\n/* Logger settings*/\n.wpo_logging_header {\n\tfont-weight: bold;\n\tborder-top: 1px solid #333;\n\tborder-bottom: 1px solid #333;\n\tpadding: 5px 0;\n\tmargin: 0;\n}\n\n.wpo_logging_row {\n\tborder-bottom: 1px solid #A1A2A3;\n\tpadding: 5px 0;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_options_title,\n.wpo_logging_status_title,\n.wpo_logging_actions_title,\n.wpo_logging_logger_row,\n.wpo_logging_options_row,\n.wpo_logging_status_row,\n.wpo_logging_actions_row {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_logger_row {\n\twidth: 38%;\n}\n\n.wpo_logging_options_title,\n.wpo_logging_options_row {\n\twidth: 44%;\n}\n\n.wpo_logging_status_title,\n.wpo_logging_status_row {\n\twidth: 8%;\n}\n\n.wpo_logging_actions_title,\n.wpo_logging_actions_row {\n\twidth: 7%;\n}\n\n.wpo_logging_actions_row {\n\ttext-align: right;\n}\n\n.wpo_logging_options_row {\n\tword-wrap: break-word;\n}\n\n.wpo_logging_actions_row .dashicons-no-alt,\n.wpo_add_logger_form .dashicons-no-alt {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\twidth: 20px;\n\theight: 20px;\n\tborder-radius: 20px;\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tmargin-left: 5px;\n}\n\n.wpo_add_logger_form .dashicons-no-alt {\n\tmargin-top: 12px;\n\tmargin-right: 10px;\n\tfloat: right;\n}\n\n.wpo_logger_type {\n\twidth: 90%;\n\tmargin-top: 10px;\n}\n\n.wpo_logger_addition_option {\n\twidth: 100%;\n\tmargin-top: 5px;\n}\n\n.wpo_alert_notice {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\tpadding: 1em;\n\tdisplay: block;\n\tmargin-bottom: 10px;\n\tborder-radius: 5px;\n}\n\n.wpo_error_field {\n\tborder-color: #F06666 !important;\n}\n\n.save_settings_reminder {\n\tdisplay: none;\n\tcolor: #333;\n\tpadding: 15px 20px;\n\tbackground-color: #F0A5A4;\n\tborder-radius: 3px;\n\tmargin: 15px 0;\n}\n\n#wpo_remove_selected_sizes {\n\tmargin-top: 20px;\n}\n\n.wpo_unused_images_buttons_wrap {\n\tfloat: right;\n\tmargin-right: 20px;\n}\n\n.wpo_unused_images_container h3 {\n\tmin-width: 150px;\n}\n\n#wpo_unused_images, #wpo_smush_images_grid {\n\tmax-height: 500px;\n\toverflow-y: auto;\n}\n\n#wpo_unused_images a {\n\toutline: none;\n}\n\n#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup {\n\tmargin-left: 1%;\n}\n\n.run-single-table-delete {\n\tmargin-top: 3px;\n}\n\n.wpo-confirm h4 span.table-name {\n\tfont-style: italic;\n\tdisplay: inline-block;\n\tbackground: #EFEFEF;\n\tpadding: 3px 7px;\n\tborder-radius: 4px;\n}\n\n#wpo_browser_cache_output,\n#wpo_gzip_compression_output,\n#wpo_advanced_cache_output {\n\tbackground: #F0F0F0;\n\tpadding: 10px;\n\tborder: 1px solid #CCC;\n\twhite-space: pre-wrap;\n}\n\n#wpo_gzip_compression_error_message,\n.wpo-error {\n\tcolor: #9B0000;\n}\n\n.notice.wpo-error__enabling-cache {\n\twhite-space: pre-wrap;\n\tmargin-bottom: 15px;\n}\n\n.notice.wpo-warnings__enabling-cache {\n\tmargin-bottom: 15px;\n}\n\n.notice.wpo-warnings__enabling-cache ul, .notice.wpo-warnings__enabling-cache ul li {\n\tlist-style: inside disc;\n}\n\na.loading.wpo-refresh-gzip-status {\n\tcolor: rgba(68, 68, 68, 0.5);\n\ttext-decoration: none;\n}\n\na.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none {\n\tdisplay: inline-block;\n}\n\n#wpo_browser_cache_expire_days,\n#wpo_browser_cache_expire_hours {\n\twidth: 50px;\n}\n\n.wpo-enabled .wpo-disabled {\n\tdisplay: none;\n}\n\n.wpo-disabled .wpo-enabled {\n\tdisplay: none;\n}\n\n.wpo-button-wrap {\n\tmargin-top: 10px;\n}\n"]}
1
+ {"version":3,"sources":["css/admin.css"],"names":[],"mappings":"AAAA;CACC,yBAAyB;CACzB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,2IAA2I;CAC3I,iBAAiB;CACjB,iBAAiB;CACjB,iBAAiB;CAEjB,uCAAuC;CACvC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kBAAkB;CAClB;;AAED,gBAAgB;AAChB;CACC,4BAA4B;CAC5B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED,gBAAgB;AAChB;CACC,YAAY;CACZ,WAAW;CACX,UAAU;CACV;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,mBAAmB;CACnB;;AAED,oBAAoB;AACpB;CACC,eAAe;CACf,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf;;AAED,gBAAgB;AAChB;;CAEC,YAAY;CACZ,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,WAAW;CACX;;AAED,qBAAqB;AACrB;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV;;AAED;;CAEC;EACC,0BAA0B;EAC1B;;CAED;EACC,yBAAyB;EACzB;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED;;CAEC;EACC,aAAa;EACb;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;;AAED,qRAAqR;;AAErR,uBAAuB;;AAEvB;CACC,iBAAiB;CACjB,yBAAyB;CACzB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB,eAAe;CACf,uBAAuB;CACvB,YAAY;CACZ,gBAAgB;CAChB,aAAa;CACb,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED,sCAAsC;AACtC;CACC,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB,iBAAiB;CACjB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,cAAc;CACd,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,WAAW;CACX;;AAED;CACC,eAAe;CACf,2BAA2B;CAC3B;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT;;AAED;;CAEC;EACC,aAAa;EACb,kBAAkB;EAClB;;CAED;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT,UAAU;CACV;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,uBAAuB;AACvB;;CAEC,cAAc;CACd;;AAED;CACC,+BAA+B;CAC/B,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;;CAEC,sBAAsB;CACtB,UAAU;CACV,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,sBAAsB;CACtB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB;;AAED;;CAEC;EACC,kBAAkB;EAClB,oBAAoB;EACpB,eAAe;EACf,uBAAuB;EACvB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,mBAAmB;EACnB,eAAe;EACf;;CAED;EACC,iBAAiB;EACjB,oBAAoB;EACpB;;CAED;;AAED;CACC,uBAAuB;CACvB;;AAED;;CAEC,uBAAuB;CACvB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;;CAEC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,oBAAoB;AACpB;CACC,kBAAkB;CAClB,2BAA2B;CAC3B,8BAA8B;CAC9B,eAAe;CACf,UAAU;CACV;;AAED;CACC,iCAAiC;CACjC,eAAe;CACf;;AAED;;;;;;;;CAQC,sBAAsB;CACtB,uBAAuB;CACvB;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,UAAU;CACV;;AAED;;CAEC,UAAU;CACV;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,0BAA0B;CAC1B,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ,aAAa;CACb,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,cAAc;CACd,YAAY;CACZ,mBAAmB;CACnB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB,sBAAsB;CACtB,oBAAoB;CACpB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;;;CAGC,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,6BAA6B;CAC7B,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB","file":"admin-3-2-5.min.css","sourcesContent":[".wpo_hidden {\n\tdisplay: none !important;\n}\n\n.wpo_info {\n\tbackground: #FFF;\n\tcolor: #444;\n\tfont-family: -apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen-Sans\", \"Ubuntu\", \"Cantarell\", \"Helvetica Neue\", sans-serif;\n\tmargin: 2em auto;\n\tpadding: 1em 2em;\n\tmax-width: 700px;\n\t-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);\n\tbox-shadow: 0 1px 3px rgba(0,0,0,0.13);\n}\n\n#wp-optimize-wrap .widefat thead th, #wp-optimize-wrap .widefat thead td {\n\tborder-bottom: 1px solid #E1E1E1;\n}\n\n#wp-optimize-wrap .widefat td, #wp-optimize-wrap .widefat th {\n\tpadding: 8px 10px;\n}\n\n/* big button */\n.wpo_primary_big {\n\tpadding: 4px 6px !important;\n\tfont-size: 22px !important;\n\tmin-height: 34px;\n\tmin-width: 200px;\n}\n\n/* SECTIONS */\n.wpo_section {\n\tclear: both;\n\tpadding: 0;\n\tmargin: 0;\n}\n\n.wp-optimize-settings {\n\tmargin-bottom: 16px;\n}\n\n.wp-optimize-settings td > label {\n\tfont-weight: bold;\n\tdisplay: block;\n\tmargin-bottom: 8px;\n}\n\n/* COLUMN SETUP */\n.wpo_col {\n\tdisplay: block;\n\tfloat: left;\n\tmargin: 1% 0 1% 1%;\n}\n\n.wpo_col:first-child {\n\tmargin-left: 0;\n}\n\n/* GROUPING */\n.wpo_group:before,\n.wpo_group:after {\n\tcontent: \"\";\n\tdisplay: table;\n}\n\n.wpo_group:after {\n\tclear: both;\n}\n\n.wpo_half_width {\n\twidth: 48%;\n}\n\n/* GRID OF THREE */\n.wpo_span_3_of_3 {\n\twidth: 100%;\n}\n\n.wpo_span_2_of_3 {\n\twidth: 65.3%;\n}\n\n.wpo_span_1_of_3 {\n\twidth: 32.1%;\n}\n\n#wp-optimize-wrap .nav-tab-wrapper {\n\tmargin: 0;\n}\n\n@media screen and (min-width: 549px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: block !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: none !important;\n\t}\n\n}\n\n@media screen and (max-width: 548px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: none !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: block !important;\n\t}\n\n}\n\n@media screen and (max-width: 768px) {\n\n\t.wpo_col {\n\t\tmargin: 1% 0;\n\t}\n\n\t.wpo_span_3_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_2_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_1_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_half_width {\n\t\twidth: 100%;\n\t}\n\n}\n\n/* .wp-optimize-settings-clean-transient label, .wp-optimize-settings-clean-pingbacks label, .wp-optimize-settings-clean-trackbacks label, .wp-optimize-settings-clean-postmeta label, .wp-optimize-settings-clean-orphandata label, .wp-optimize-settings-clean-commentmeta label */\n\n/* Optimizations tab */\n\n.wp-optimize-setting-is-sensitive td > label::before {\n\tcontent: \"\\f534\";\n\tfont-family: 'dashicons';\n\tdisplay: inline-block;\n\tmargin-right: 6px;\n\tfont-style: normal;\n\tline-height: 1;\n\tvertical-align: middle;\n\twidth: 20px;\n\tfont-size: 18px;\n\theight: 20px;\n\ttext-align: center;\n\tcolor: #72777C;\n}\n\n.wpo-run-optimizations__container {\n\tmargin-bottom: 15px;\n}\n\n.wp-optimize-optimizations-table-placeholder {\n\tmin-height: 80px;\n}\n\ntd.wp-optimize-settings-optimization-checkbox {\n\twidth: 18px;\n\tpadding-left: 4px;\n\tpadding-right: 0px;\n}\n\n.wp-optimize-settings-optimization-checkbox input {\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n#retention-period, #revisions-count {\n\twidth: 60px;\n}\n\n.wp-optimize-settings-optimization-info {\n\tfont-size: 80%;\n\tfont-style: italic;\n}\n\n.wp-optimize-settings input[type=\"checkbox\"] {\n\t/* width: 18px; */\n}\n\n/* Added for the Image on Addons tab*/\nimg.addons {\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tmargin-bottom: 20px;\n\tmax-height: 44px;\n\theight: auto;\n\tmax-width: 100%;\n}\n\n.wpo_spinner {\n\twidth: 18px;\n\theight: 18px;\n\tpadding-left: 10px;\n\tdisplay: none;\n\tposition: relative;\n\ttop: 4px;\n}\n\n.optimization_spinner {\n\twidth: 20px;\n\theight: 20px;\n}\n\n#wp-optimize-auto-options {\n\tmargin: 20px 0 0 28px;\n}\n\n.display-none {\n\tdisplay: none;\n}\n\n.visibility-hidden {\n\tvisibility: hidden;\n}\n\n.margin-one-percent {\n\tmargin: 1%;\n}\n\n#save_done, .save-done {\n\tcolor: #D94F00;\n\tfont-size: 220% !important;\n}\n\n.wp-optimize-settings-optimization-info a {\n\ttext-decoration: underline;\n}\n\n.wp-optimize-settings-optimization-run-spinner {\n\tposition: relative;\n\ttop: 2px;\n}\n\n@media screen and (min-width: 782px) {\n\n\ttd.wp-optimize-settings-optimization-run {\n\t\twidth: 180px;\n\t\tpadding-top: 16px;\n\t}\n\n}\n\n#wpoptimize_table_list .tablesorter-filter-row {\n\tdisplay: none !important;\n}\n\n#wpoptimize_table_list .optimization_spinner {\n\tposition: relative;\n\ttop: 2px;\n\tleft: 5px;\n}\n\n#wpoptimize_table_list .optimization_spinner.visibility-hidden {\n\tdisplay: none;\n}\n\n#wpoptimize_table_list_filter {\n\twidth: 100%;\n\tmargin-bottom: 15px;\n}\n\n#wpoptimize_table_list_tables_not_found {\n\tdisplay: none;\n\tmargin: 20px 0;\n}\n\ndiv#wpoptimize_table_list_tables_not_found + h3 {\n\tmargin-top: 30px;\n}\n\n/* Hide First column */\n#wpoptimize_table_list tr th:first-child,\n#wpoptimize_table_list tr td:first-child {\n\tdisplay: none;\n}\n\n#wpoptimize_table_list tr td.no-table {\n\tdisplay: table-cell !important;\n\tbackground: #FB8787;\n\tfont-weight: bold;\n}\n\n#optimize_form .select2-container,\n#wp-optimize-auto-options .select2-container {\n\twidth: 50% !important;\n\ttop: -5px;\n\theight: 40px;\n\tmargin-left: 10px;\n}\n\n#wpoptimize_table_list .optimization_done_icon {\n\tcolor: #009B24;\n\tfont-size: 200%;\n\tdisplay: inline-block;\n\tposition: relative;\n}\n\n#wpo_sitelist_show_moreoptions_cron {\n\tfont-size: 13px;\n\tline-height: 1.5;\n\tletter-spacing: 1px;\n}\n\n#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3 {\n\tdisplay: inline-block;\n}\n\n.wpo_remove_selected_sizes_btn__container {\n\tmargin-top: 20px;\n}\n\n.unused-image-sizes__label {\n\tdisplay: block;\n\tline-height: 1.6;\n}\n\n@media (max-width: 782px) {\n\n\t.unused-image-sizes__label {\n\t\tmargin-left: 30px;\n\t\tmargin-bottom: 15px;\n\t\tline-height: 1;\n\t\tword-break: break-word;\n\t}\n\n\t.unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: -30px;\n\t}\n\n\tbody.rtl .unused-image-sizes__label {\n\t\tmargin-right: 30px;\n\t\tmargin-left: 0;\n\t}\n\n\tbody.rtl .unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: 4px;\n\t\tmargin-right: -30px;\n\t}\n\n}\n\n#wp-optimize-nav-tab-contents-tables a {\n\tvertical-align: middle;\n}\n\n#wpo_sitelist_moreoptions,\n#wpo_sitelist_moreoptions_cron {\n\tmargin: 4px 16px 6px 0;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n\tmax-height: 300px;\n\toverflow-y: scroll;\n\toverflow-x: hidden;\n}\n\n#wpo_sitelist_moreoptions {\n\tmax-height: 150px;\n\tmargin-right: 0;\n}\n\n#wpo_settings_sites_list li,\n#wpo_settings_sites_list li a {\n\tfont-size: 13px;\n\tline-height: 1.5;\n}\n\n#wpo_sitelist_moreoptions_cron li {\n\tpadding-left: 20px;\n}\n\n#wpo_import_error_message {\n\tdisplay: none;\n\tcolor: #9B0000;\n}\n\n#wpo_import_success_message {\n\tdisplay: none;\n\tcolor: #46B450;\n}\n\n#wp-optimize-logging-options {\n\tmargin-top: 10px;\n}\n\n/* Logger settings*/\n.wpo_logging_header {\n\tfont-weight: bold;\n\tborder-top: 1px solid #333;\n\tborder-bottom: 1px solid #333;\n\tpadding: 5px 0;\n\tmargin: 0;\n}\n\n.wpo_logging_row {\n\tborder-bottom: 1px solid #A1A2A3;\n\tpadding: 5px 0;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_options_title,\n.wpo_logging_status_title,\n.wpo_logging_actions_title,\n.wpo_logging_logger_row,\n.wpo_logging_options_row,\n.wpo_logging_status_row,\n.wpo_logging_actions_row {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_logger_row {\n\twidth: 38%;\n}\n\n.wpo_logging_options_title,\n.wpo_logging_options_row {\n\twidth: 44%;\n}\n\n.wpo_logging_status_title,\n.wpo_logging_status_row {\n\twidth: 8%;\n}\n\n.wpo_logging_actions_title,\n.wpo_logging_actions_row {\n\twidth: 7%;\n}\n\n.wpo_logging_actions_row {\n\ttext-align: right;\n}\n\n.wpo_logging_options_row {\n\tword-wrap: break-word;\n}\n\n.wpo_logging_actions_row .dashicons-no-alt,\n.wpo_add_logger_form .dashicons-no-alt {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\twidth: 20px;\n\theight: 20px;\n\tborder-radius: 20px;\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tmargin-left: 5px;\n}\n\n.wpo_add_logger_form .dashicons-no-alt {\n\tmargin-top: 12px;\n\tmargin-right: 10px;\n\tfloat: right;\n}\n\n.wpo_logger_type {\n\twidth: 90%;\n\tmargin-top: 10px;\n}\n\n.wpo_logger_addition_option {\n\twidth: 100%;\n\tmargin-top: 5px;\n}\n\n.wpo_alert_notice {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\tpadding: 1em;\n\tdisplay: block;\n\tmargin-bottom: 10px;\n\tborder-radius: 5px;\n}\n\n.wpo_error_field {\n\tborder-color: #F06666 !important;\n}\n\n.save_settings_reminder {\n\tdisplay: none;\n\tcolor: #333;\n\tpadding: 15px 20px;\n\tbackground-color: #F0A5A4;\n\tborder-radius: 3px;\n\tmargin: 15px 0;\n}\n\n#wpo_remove_selected_sizes {\n\tmargin-top: 20px;\n}\n\n.wpo_unused_images_buttons_wrap {\n\tfloat: right;\n\tmargin-right: 20px;\n}\n\n.wpo_unused_images_container h3 {\n\tmin-width: 150px;\n}\n\n#wpo_unused_images, #wpo_smush_images_grid {\n\tmax-height: 500px;\n\toverflow-y: auto;\n}\n\n#wpo_unused_images a {\n\toutline: none;\n}\n\n#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup {\n\tmargin-left: 1%;\n}\n\n.run-single-table-delete {\n\tmargin-top: 3px;\n}\n\n.wpo-confirm h4 span.table-name {\n\tfont-style: italic;\n\tdisplay: inline-block;\n\tbackground: #EFEFEF;\n\tpadding: 3px 7px;\n\tborder-radius: 4px;\n}\n\n#wpo_browser_cache_output,\n#wpo_gzip_compression_output,\n#wpo_advanced_cache_output {\n\tbackground: #F0F0F0;\n\tpadding: 10px;\n\tborder: 1px solid #CCC;\n\twhite-space: pre-wrap;\n}\n\n#wpo_gzip_compression_error_message,\n.wpo-error {\n\tcolor: #9B0000;\n}\n\n.notice.wpo-error__enabling-cache {\n\twhite-space: pre-wrap;\n\tmargin-bottom: 15px;\n}\n\n.notice.wpo-warnings__enabling-cache {\n\tmargin-bottom: 15px;\n}\n\n.notice.wpo-warnings__enabling-cache ul, .notice.wpo-warnings__enabling-cache ul li {\n\tlist-style: inside disc;\n}\n\na.loading.wpo-refresh-gzip-status {\n\tcolor: rgba(68, 68, 68, 0.5);\n\ttext-decoration: none;\n}\n\na.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none {\n\tdisplay: inline-block;\n}\n\n#wpo_browser_cache_expire_days,\n#wpo_browser_cache_expire_hours {\n\twidth: 50px;\n}\n\n.wpo-enabled .wpo-disabled {\n\tdisplay: none;\n}\n\n.wpo-disabled .wpo-enabled {\n\tdisplay: none;\n}\n\n.wpo-button-wrap {\n\tmargin-top: 10px;\n}\n"]}
css/smush-3-2-3.min.css DELETED
@@ -1,2 +0,0 @@
1
- .wpo-fieldgroup .autosmush{display:inline-block;width:100%}.wpo-fieldgroup .autosmush h3{font-size:1.2em;margin:3px 18px}.wpo-fieldgroup .compression_server div{max-width:300px}.wpo-fieldgroup .compression_server h2{margin:10px 0}.wpo-fieldgroup .compression_server h3{clear:both;width:100%}.wpo-fieldgroup .compression_server p{margin:1px}.wpo-fieldgroup .compression_server p:last-of-type{margin-bottom:10px}.wpo-fieldgroup .compression_server{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.wpo-fieldgroup .compression_server>div{-ms-flex:1;flex:1;margin-right:10px;height:100%;position:relative}.wpo-fieldgroup .compression_server input[type="radio"]{position:absolute;z-index:1;top:calc(50% + 2px);left:20px;transform:translatey(-50%)}.wpo-fieldgroup .compression_server input[type="radio"] ~ label h4{color:#23282d;margin-top:0;margin-bottom:.9em;font-size:1.2em}.wpo-fieldgroup .compression_server label{display:block;position:relative;box-sizing:border-box;height:100%;background:#FFF;text-align:left;box-shadow:0 3px 10px -2px hsla(150,5%,65%,0.5)}.wpo-fieldgroup .compression_server input[type="radio"]+label{padding:20px;border:2px solid #FFF;padding-left:65px;position:relative;border-radius:5px;color:#82868b}.wpo-fieldgroup .compression_server input[type="radio"]+label::before{content:'';display:block;position:absolute;top:0;left:52px;height:100%;border-right:1px solid #edeff0}.wpo-fieldgroup .save-options{margin:10px 0}.wpo-fieldgroup .compression_server input[type="radio"]:focus+label,.wpo-fieldgroup .compression_server input[type="radio"]+label:hover{border-color:rgba(0,134,184,0.38)}.wpo-fieldgroup .compression_server input[type="radio"]:focus+label{box-shadow:0 3px 10px -2px #5b9dd9}.wpo-fieldgroup .compression_server input[type="radio"]:focus+label h4{color:#0086b9}.wpo-fieldgroup .compression_server input[type="radio"]:checked+label,.wpo-fieldgroup .compression_server input[type="radio"]:checked+label:hover{border-color:#0086b9}@media only screen and (max-width:700px){.wpo-fieldgroup .compression_server{-ms-flex-direction:column;flex-direction:column}.wpo-fieldgroup .compression_server>div{margin-bottom:15px;max-width:100%}}.wpo-fieldgroup h4{margin:1em 0;width:100%}.wpo-fieldgroup .image_quality input[type=radio]{position:absolute;visibility:hidden;display:none}.wpo-fieldgroup .image_quality label{color:#23282d;display:inline-block;cursor:pointer;font-weight:bold;padding:5px 20px;background:#f9f9f9;float:left;margin:0 .5px}.wpo-fieldgroup .image_quality input[type=radio]:checked+label{color:white;background:#0088b9}.wpo-fieldgroup .image_quality label+.wpo-fieldgroup .image_quality input[type=radio]+label{border-left:solid 3px #675f6b}.wpo-fieldgroup .image_quality.radio-group{border:solid .5px #c4c4c4;display:inline-block;border-radius:5px;overflow:hidden;border-bottom:solid 2px #c4c4c4;background:#c4c4c4}.wpo-fieldgroup .image_options input{min-height:16px;min-width:16px;margin:3px 2px}img#wpo_smush_images_save_options_spinner{max-width:20px;max-height:20px}span#wpo_smush_images_save_options_fail{font-size:inherit;color:red}span#wpo_smush_images_save_options_done{font-size:inherit;color:green}#smush-complete-summary span.clearfix{height:10px;display:block;clear:both}#smush-complete-summary span.close{display:block;clear:both;text-align:left;color:#df6927;border:2px solid;border-radius:50%;cursor:pointer}.modal-message-text{margin:0 25px}.smush-options.custom_compression{margin:10px}#smush-backup-delete-days{width:50px;margin:0 8px}img#wpo_smush_delete_backup_spinner{max-width:20px;max-height:20px;position:relative;top:4px}span#wpo_smush_delete_backup_done{font-size:inherit;color:green}.wpo-fieldgroup .smush-options.custom_compression{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-left:24px}.wpo-fieldgroup .smush-options.custom_compression>span{display:inline-block;padding:6px;border:1px solid #cfd2d4;border-radius:4px;font-size:.9em;position:relative}.wpo-fieldgroup .smush-options.custom_compression>span.slider-start::after{content:'';width:6px;height:6px;display:block;position:absolute;top:0;left:100%;transform:translate(-3px,8px) rotate(45deg);border-right:1px solid #cfd2d4;border-top:1px solid #cfd2d4;background:#edeff0}.wpo-fieldgroup .smush-options.custom_compression>span.slider-end::before{content:'';width:6px;height:6px;display:block;position:absolute;top:0;right:100%;transform:translate(3px,8px) rotate(45deg);border-left:1px solid #cfd2d4;border-bottom:1px solid #cfd2d4;background:#edeff0}.wpo-fieldgroup .smush-options.custom_compression>input{margin-left:8px;margin-right:8px}@media screen and (max-width:782px){.wpo-fieldgroup input[type="radio"]{height:16px;width:16px}.wpo-fieldgroup input[type="radio"]:checked:before{width:6px;height:6px;margin:4px}.wpo-fieldgroup .smush-options.custom_compression{-ms-flex-direction:column;flex-direction:column}.wpo-fieldgroup .smush-options.custom_compression>input{width:100%}.wpo-fieldgroup .smush-options.custom_compression>span{display:block;width:100%}.wpo-fieldgroup .smush-options.custom_compression>span.slider-start::after{left:0;transform:translate(7px,22px) rotate(135deg)}.wpo-fieldgroup .smush-options.custom_compression>span.slider-end::before{right:auto;left:100%;transform:translate(-14px,-5px) rotate(135deg)}}#wpo_smush_settings .align-left{float:left}#wpo_smush_settings .align-right{float:right}.wpo-fieldgroup .wpo_smush_images_buttons_wrap{width:100%}.wpo-fieldgroup .smush-refresh-icon,.wpo-fieldgroup .smush-select-actions{font-size:15px}.wpo-fieldgroup img.wpo_smush_images_loader{display:none;min-height:20px;min-width:20px}.wpo-fieldgroup .dashicons.dashicons-image-rotate,{font-size:15px}.wpo-fieldgroup .wpo-toggle-advanced-options{cursor:pointer;text-decoration:underline;color:#0088bc}.wpo-fieldgroup .button.wpo-toggle-advanced-options{display:block;width:calc(100% + 40px);margin-left:-20px;margin-right:-20px;padding-left:20px;padding-right:20px;position:relative;text-decoration:none}.wpo-fieldgroup .button.wpo-toggle-advanced-options span.dashicons{text-decoration:none;font-size:16px;height:16px;vertical-align:middle;color:#444;transition:.2s all}.wpo-fieldgroup .wpo-toggle-advanced-options span.text{background:#f2f4f4;z-index:1;position:relative;padding-right:5px}.wpo-fieldgroup .button.wpo-toggle-advanced-options:hover,.wpo-fieldgroup .button.wpo-toggle-advanced-options:focus{background:transparent}.wpo-fieldgroup .button.wpo-toggle-advanced-options .wpo-toggle-advanced-options__text-show{display:inline-block}.wpo-fieldgroup .button.wpo-toggle-advanced-options .wpo-toggle-advanced-options__text-hide{display:none}.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened .wpo-toggle-advanced-options__text-show{display:none}.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened .wpo-toggle-advanced-options__text-hide{display:inline-block}.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened::before{content:'';border-top:1px solid #CCC;width:100%;position:absolute;top:16px;left:0}.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened span.dashicons{transform:rotate(180deg)}.wpo-fieldgroup .wpo-advanced-options{display:none}.wpo-advanced-options>fieldset:first-child{margin-top:10px}.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened+.wpo-advanced-options{display:block}.wpo_smush_image:focus-within label{box-shadow:0 0 4px #0272aa}.wpo_smush_image .wpo_smush_image__input:checked+label{border-color:#0272aa}.uncompressed-images input[type="checkbox"]{position:absolute;opacity:0;width:0;height:0}.uncompressed-images small.red{clear:both;display:block;margin:5px}.smush-actions .wpo_primary_small{display:inline-block;margin:5px}.smush-actions{display:inline-block;width:100%;margin:10px 0}.smush-actions .dashicons.dashicons-yes{font-size:15px;margin:0 5px}.smush-actions img{max-height:25px;max-width:25px}#smush-log-modal{width:100%;height:100%}#log-panel{height:80%;overflow:scroll;margin:2%}#log-panel pre{text-align:left;overflow:auto;height:100%;background:gainsboro}.smush-information{margin-bottom:10px}#smush_stats{text-align:center;margin:0 auto;padding:2%;min-width:350px;font-size:larger}#smush_stats .wpo_smush_stats_cta_btn{clear:both;display:block;text-align:center}#smush_stats .smush_stats_row td:first-child{text-align:left}#smush_stats tr.smush_stats_row td:last-child{text-align:right}#smush_stats #wpo_smush_images_information_container p{padding:10px}#smush-complete-summary .checkmark-circle{width:50px;height:50px;position:relative;display:inline-block;vertical-align:top}#smush-complete-summary .checkmark-circle .background{width:50px;height:50px;border-radius:50%;background:#df6927;position:absolute}#smush-complete-summary .checkmark-circle .checkmark{border-radius:5px}#smush-complete-summary .checkmark-circle .checkmark.draw:after{animation-delay:100ms;animation-duration:1s;animation-timing-function:ease;animation-name:checkmark;transform:scalex(-1) rotate(135deg);animation-fill-mode:forwards}#smush-complete-summary .checkmark-circle .checkmark:after{opacity:1;height:25px;width:12.5px;transform-origin:left top;border-right:5px solid white;border-top:5px solid white;border-radius:2.5px !important;content:'';left:8.3333333333px;top:25px;position:absolute}#smush_stats .wpo_primary_small{text-align:center}#smush-complete-summary #summary-message{margin:15px auto}img#wpo_smush_images_clear_stats_spinner{width:20px;line-height:1;vertical-align:middle}#wpo_smush_images_information_container{padding:10px}#wpo_smush_images_information_wrapper .progress-bar{height:25px;padding:1px;width:350px;margin:10px auto;border-radius:5px}#wpo_smush_images_information_wrapper .progress-bar span{display:inline-block;height:100%;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5) inset;transition:width .4s ease-in-out}#wpo_smush_images_information_wrapper .orange span{background-color:#df6927}#wpo_smush_images_information_wrapper .stripes span{background-size:30px;background-image:linear-gradient(135deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);animation:animate-stripes 3s linear infinite}#smush-metabox-inside-wrapper{display:inline-table;width:100%}#smush-metabox-inside-wrapper h4{margin:2px 0}#smush-metabox-inside-wrapper label{margin-top:5px;clear:left;display:block}#smush-metabox-inside-wrapper .wpo_smush_single_image{display:block}#smush-metabox-inside-wrapper .wpo_smush_single_image.action_button{padding:5px 0}#smush-metabox-inside-wrapper fieldset{margin:10px 0}#smush-metabox-inside-wrapper input[type="radio"]{margin:-4px 4px 0 0}#smush-metabox-inside-wrapper .alignleft{float:left}#smush-metabox-inside-wrapper p#smush_info{margin:20px auto;padding-top:10px;clear:both}#smush-metabox-inside-wrapper .wpo-toggle-advanced-options{cursor:pointer;display:block;clear:both;margin-top:10px;margin-bottom:10px}#smush-metabox-inside-wrapper .wpo-toggle-advanced-options:not(.opened) ~ .wpo-advanced-options{display:none}#smush-metabox-inside-wrapper .wpo-toggle-advanced-options.opened ~ .wpo-advanced-options{display:block !important}#smush-metabox-inside-wrapper .smush-options.custom_compression span{display:block;max-width:30%;clear:both}#smush-metabox-inside-wrapper input#custom_compression_slider{display:block;clear:both;width:100%}#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignleft{float:left}#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignright{float:right;text-align:right}.smush-metabox-dashboard-link{clear:both;padding-top:15px;text-align:right}.media-frame-content .attachment-compat .compat-item,.compat-field-wpo_compress_image{overflow:visible !important}.compat-field-wpo_compress_image{border-top:1px solid #DDD}.compat-field-wpo_compress_image span.dashicons{text-align:left;float:none;min-height:0;padding-top:2px}.compat-field-wpo_compress_image td.field{width:auto;float:none}.compat-field-wpo_compress_image td.field [data-tooltip]{display:none}.compat-field-wpo_compress_image th.label{text-align:left;min-width:0;float:none;margin:0}.compat-field-wpo_compress_image th.label label span{font-weight:500;text-align:left}.wpo_restore_single_image .alignright{float:right}.blockUI.blockMsg.blockPage{z-index:170000 !important;right:0;left:0 !important;margin-right:auto !important;margin-left:auto !important;max-width:90%;cursor:default !important}.blockUI.blockOverlay{cursor:default !important}#smush-metabox-inside-wrapper [data-tooltip],.wpo-fieldgroup [data-tooltip]{position:relative;cursor:pointer;line-height:18px}#smush-metabox-inside-wrapper [data-tooltip]:before,#smush-metabox-inside-wrapper [data-tooltip]:after,.wpo-fieldgroup [data-tooltip]:before,.wpo-fieldgroup [data-tooltip]:after{visibility:hidden;-ms-filter:"alpha(opacity=0)";filter:alpha(opacity=0);opacity:0;pointer-events:none}#smush-metabox-inside-wrapper [data-tooltip]:before,.wpo-fieldgroup [data-tooltip]:before{position:absolute;bottom:150%;left:50%;margin-bottom:5px;margin-left:-140px;padding:12px;width:275px;z-index:9999;border-radius:3px;background-color:#000;background-color:hsla(0,0%,20%,0.95);color:#FFF;content:attr(data-tooltip);text-align:center;font-size:.85rem;font-weight:400;line-height:1.4}#smush-metabox-inside-wrapper [data-tooltip]:before{margin-left:-280px}#smush-metabox-inside-wrapper [data-tooltip]:after,.wpo-fieldgroup [data-tooltip]:after{position:absolute;bottom:150%;left:50%;margin-left:-5px;width:0;border-top:5px solid #000;border-top:5px solid hsla(0,0%,20%,0.9);border-right:5px solid transparent;border-left:5px solid transparent;content:" ";font-size:0;line-height:0}#smush-metabox-inside-wrapper [data-tooltip]:hover:before,#smush-metabox-inside-wrapper [data-tooltip]:hover:after,.wpo-fieldgroup [data-tooltip]:hover:before,.wpo-fieldgroup [data-tooltip]:hover:after,#smush-metabox-inside-wrapper [data-tooltip]:focus:before,#smush-metabox-inside-wrapper [data-tooltip]:focus:after,.wpo-fieldgroup [data-tooltip]:focus:before,.wpo-fieldgroup [data-tooltip]:focus:after{visibility:visible;-ms-filter:"alpha(opacity=100)";filter:alpha(opacity=100);opacity:1}@keyframes checkmark{0%{height:0;width:0;opacity:1}20%{height:0;width:12.5px;opacity:1}40%{height:25px;width:12.5px;opacity:1}100%{height:25px;width:12.5px;opacity:1}}@keyframes animate-stripes{0%{background-position:0 0}100%{background-position:60px 0}}@keyframes animate-stripes{0%{background-position:0 0}100%{background-position:60px 0}}#wpo_smush_restore_all_compressed_images_btn+span>span{line-height:28px}
2
- /*# sourceMappingURL=smush-3-2-3.min.css.map */
 
 
css/smush-3-2-3.min.css.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"sources":["css/smush.css"],"names":[],"mappings":"AAAA;;GAEG;AACH;CACC,sBAAsB;CACtB,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;;GAEG;AACH;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,qBAAqB;CACrB,cAAc;CACd,wBAAwB;CACxB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,QAAQ;CACR,mBAAmB;CACnB,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,qBAAqB;CACrB,WAAW;CACX,4BAA4B;CAC5B;;AAED;CACC,eAAe;CACf,cAAc;CACd,qBAAqB;CACrB,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,mBAAmB;CACnB,uBAAuB;CACvB,aAAa;CACb,iBAAiB;CACjB,iBAAiB;CACjB,sDAAsD;CACtD;;AAED;CACC,cAAc;CACd,uBAAuB;CACvB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,OAAO;CACP,WAAW;CACX,aAAa;CACb,gCAAgC;CAChC;;AAED;CACC,eAAe;CACf;;AAED;;CAEC,sCAAsC;CACtC;;AAED;CACC,sCAAsC;CACtC;;AAED;CACC,eAAe;CACf;;AAED;;CAEC,sBAAsB;CACtB;;AAED;;CAEC;EACC,2BAA2B;EAC3B,uBAAuB;EACvB;;CAED;EACC,oBAAoB;EACpB,gBAAgB;EAChB;;CAED;;AAED;;GAEG;AACH;CACC,cAAc;CACd,YAAY;CACZ;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,kBAAkB;CAClB,oBAAoB;CACpB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,2BAA2B;CAC3B,sBAAsB;CACtB,mBAAmB;CACnB,iBAAiB;CACjB,iCAAiC;CACjC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,aAAa;CACb,eAAe;CACf,YAAY;CACZ;;AAED;CACC,eAAe;CACf,YAAY;CACZ,iBAAiB;CACjB,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,0BAA0B;CAC1B,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,OAAO;CACP,WAAW;CACX,8CAA8C;CAC9C,gCAAgC;CAChC,8BAA8B;CAC9B,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,OAAO;CACP,YAAY;CACZ,6CAA6C;CAC7C,+BAA+B;CAC/B,iCAAiC;CACjC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;;CAEC;EACC,aAAa;EACb,YAAY;EACZ;;CAED;EACC,WAAW;EACX,YAAY;EACZ,YAAY;EACZ;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,eAAe;EACf,YAAY;EACZ;;CAED;EACC,QAAQ;EACR,+CAA+C;EAC/C;;CAED;EACC,YAAY;EACZ,WAAW;EACX,iDAAiD;EACjD;;CAED;;AAED;;GAEG;;AAEH;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,2BAA2B;CAC3B,eAAe;CACf;;AAED;CACC,eAAe;CACf,yBAAyB;CACzB,mBAAmB;CACnB,oBAAoB;CACpB,mBAAmB;CACnB,oBAAoB;CACpB,mBAAmB;CACnB,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb,uBAAuB;CACvB,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB,WAAW;CACX,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;;CAEC,wBAAwB;CACxB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,2BAA2B;CAC3B,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,QAAQ;CACR;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,SAAS;CACT,UAAU;CACV;;AAED;CACC,YAAY;CACZ,eAAe;CACf,YAAY;CACZ;;AAED;CACC,sBAAsB;CACtB,YAAY;CACZ;;AAED;CACC,sBAAsB;CACtB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,gBAAgB;CAChB,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;;GAEG;;AAEH;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,WAAW;CACX;;AAED;CACC,iBAAiB;CACjB,eAAe;CACf,aAAa;CACb,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB;;AAED;;GAEG;;AAEH;CACC,mBAAmB;CACnB,eAAe;CACf,YAAY;CACZ,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,uBAAuB;CACvB,gCAAgC;CAChC,0BAA0B;CAC1B,qCAAqC;CACrC,8BAA8B;CAC9B;;AAED;CACC,WAAW;CACX,aAAa;CACb,cAAc;CACd,2BAA2B;CAC3B,8BAA8B;CAC9B,4BAA4B;CAC5B,gCAAgC;CAChC,YAAY;CACZ,qBAAqB;CACrB,UAAU;CACV,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,eAAe;CACf,uBAAuB;CACvB;;AAED,2BAA2B;;AAE3B;CACC,cAAc;CACd;;AAED;CACC,aAAa;CACb,aAAa;CACb,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,mBAAmB;CACnB,kDAAkD;CAClD,kCAAkC;CAClC;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,sBAAsB;CACtB,oMAAoM;CACpM,8CAA8C;CAC9C;;AAED;;GAEG;;AAEH;CACC,sBAAsB;CACtB,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,eAAe;CACf;;AAED;CACC,eAAe;CACf;;AAED;CACC,eAAe;CACf;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB,kBAAkB;CAClB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,YAAY;CACZ,iBAAiB;CACjB,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,eAAe;CACf,eAAe;CACf,YAAY;CACZ;;AAED;CACC,eAAe;CACf,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB,kBAAkB;CAClB;;AAED;;CAEC,6BAA6B;CAC7B;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,cAAc;CACd,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,aAAa;CACb,YAAY;CACZ,UAAU;CACV;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB;;AAED,+CAA+C;AAC/C;CACC,aAAa;CACb;;AAED;;GAEG;AACH;CACC,2BAA2B;CAC3B,SAAS;CACT,mBAAmB;CACnB,8BAA8B;CAC9B,6BAA6B;CAC7B,eAAe;CACf,2BAA2B;CAC3B;;AAED;CACC,2BAA2B;CAC3B;;AAED;;GAEG;;AAEH,4DAA4D;AAC5D;;CAEC,mBAAmB;CACnB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED,yCAAyC;AACzC;;;;CAIC,mBAAmB;CACnB,iEAAiE;CACjE,4DAA4D;CAC5D,WAAW;CACX,qBAAqB;CACrB;;AAED,wCAAwC;AACxC;;CAEC,mBAAmB;CACnB,aAAa;CACb,UAAU;CACV,mBAAmB;CACnB,oBAAoB;CACpB,cAAc;CACd,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,uBAAuB;CACvB,yCAAyC;CACzC,YAAY;CACZ,4BAA4B;CAC5B,mBAAmB;CACnB,kBAAkB;CAClB,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,oBAAoB;CACpB;;AAED,6DAA6D;AAC7D;;CAEC,mBAAmB;CACnB,aAAa;CACb,UAAU;CACV,kBAAkB;CAClB,SAAS;CACT,2BAA2B;CAC3B,4CAA4C;CAC5C,oCAAoC;CACpC,mCAAmC;CACnC,aAAa;CACb,aAAa;CACb,eAAe;CACf;;AAED,mCAAmC;AACnC;;;;;;;;CAQC,oBAAoB;CACpB,mEAAmE;CACnE,8DAA8D;CAC9D,WAAW;CACX;;AAED;;GAEG;;AAEH;;CAEC;EACC,UAAU;EACV,SAAS;EACT,WAAW;EACX;;CAED;EACC,UAAU;EACV,cAAc;EACd,WAAW;EACX;;CAED;EACC,aAAa;EACb,cAAc;EACd,WAAW;EACX;;CAED;EACC,aAAa;EACb,cAAc;EACd,WAAW;EACX;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,4BAA4B;EAC5B;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,4BAA4B;EAC5B;;CAED;;AAED;CACC,kBAAkB;CAClB","file":"smush-3-2-3.min.css","sourcesContent":["/**\n * Autosmush\n */\n.wpo-fieldgroup .autosmush {\n\tdisplay: inline-block;\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .autosmush h3 {\n\tfont-size: 1.2em;\n\tmargin: 3px 18px;\n}\n\n/**\n * Compression Server\n */\n.wpo-fieldgroup .compression_server div {\n\tmax-width: 300px;\n}\n\n.wpo-fieldgroup .compression_server h2 {\n\tmargin: 10px 0;\n}\n\n.wpo-fieldgroup .compression_server h3 {\n\tclear: both;\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .compression_server p {\n\tmargin: 1px;\n}\n\n.wpo-fieldgroup .compression_server p:last-of-type {\n\tmargin-bottom: 10px;\n}\n\n.wpo-fieldgroup .compression_server {\n\tdisplay: -ms-flexbox;\n\tdisplay: flex;\n\t-ms-flex-flow: row wrap;\n\tflex-flow: row wrap;\n}\n\n.wpo-fieldgroup .compression_server > div {\n\t-ms-flex: 1;\n\tflex: 1;\n\tmargin-right: 10px;\n\theight: 100%;\n\tposition: relative;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] {\n\tposition: absolute;\n\tz-index: 1;\n\ttop: calc(50% + 2px);\n\tleft: 20px;\n\ttransform: translatey(-50%);\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] ~ label h4 {\n\tcolor: #23282D;\n\tmargin-top: 0;\n\tmargin-bottom: 0.9em;\n\tfont-size: 1.2em;\n}\n\n.wpo-fieldgroup .compression_server label {\n\tdisplay: block;\n\tposition: relative;\n\tbox-sizing: border-box;\n\theight: 100%;\n\tbackground: #FFF;\n\ttext-align: left;\n\tbox-shadow: 0px 3px 10px -2px hsla(150, 5%, 65%, 0.5);\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] + label {\n\tpadding: 20px;\n\tborder: 2px solid #FFF;\n\tpadding-left: 65px;\n\tposition: relative;\n\tborder-radius: 5px;\n\tcolor: #82868B;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] + label::before {\n\tcontent: '';\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 52px;\n\theight: 100%;\n\tborder-right: 1px solid #EDEFF0;\n}\n\n.wpo-fieldgroup .save-options {\n\tmargin: 10px 0;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:focus + label,\n.wpo-fieldgroup .compression_server input[type=\"radio\"] + label:hover {\n\tborder-color: rgba(0, 134, 184, 0.38);\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:focus + label {\n\tbox-shadow: 0px 3px 10px -2px #5B9DD9;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:focus + label h4 {\n\tcolor: #0086B9;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:checked + label,\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:checked + label:hover {\n\tborder-color: #0086B9;\n}\n\n@media only screen and (max-width: 700px) {\n\n\t.wpo-fieldgroup .compression_server {\n\t\t-ms-flex-direction: column;\n\t\tflex-direction: column;\n\t}\n\n\t.wpo-fieldgroup .compression_server > div {\n\t\tmargin-bottom: 15px;\n\t\tmax-width: 100%;\n\t}\n\n}\n\n/**\n * Compression Options\n */\n.wpo-fieldgroup h4 {\n\tmargin: 1em 0;\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .image_quality input[type=radio] {\n\tposition: absolute;\n\tvisibility: hidden;\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .image_quality label {\n\tcolor: #23282D;\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tfont-weight: bold;\n\tpadding: 5px 20px;\n\tbackground: #F9F9F9;\n\tfloat: left;\n\tmargin: 0 .5px;\n}\n\n.wpo-fieldgroup .image_quality input[type=radio]:checked + label {\n\tcolor: white;\n\tbackground: #0088B9;\n}\n\n.wpo-fieldgroup .image_quality label + .wpo-fieldgroup .image_quality input[type=radio] + label {\n\tborder-left: solid 3px #675F6B;\n}\n\n.wpo-fieldgroup .image_quality.radio-group {\n\tborder: solid .5px #C4C4C4;\n\tdisplay: inline-block;\n\tborder-radius: 5px;\n\toverflow: hidden;\n\tborder-bottom: solid 2px #C4C4C4;\n\tbackground: #C4C4C4;\n}\n\n.wpo-fieldgroup .image_options input {\n\tmin-height: 16px;\n\tmin-width: 16px;\n\tmargin: 3px 2px;\n}\n\nimg#wpo_smush_images_save_options_spinner {\n\tmax-width: 20px;\n\tmax-height: 20px;\n}\n\nspan#wpo_smush_images_save_options_fail {\n\tfont-size: inherit;\n\tcolor: red;\n}\n\nspan#wpo_smush_images_save_options_done {\n\tfont-size: inherit;\n\tcolor: green;\n}\n\n#smush-complete-summary span.clearfix {\n\theight: 10px;\n\tdisplay: block;\n\tclear: both;\n}\n\n#smush-complete-summary span.close {\n\tdisplay: block;\n\tclear: both;\n\ttext-align: left;\n\tcolor: #DF6927;\n\tborder: 2px solid;\n\tborder-radius: 50%;\n\tcursor: pointer;\n}\n\n.modal-message-text {\n\tmargin: 0 25px;\n}\n\n.smush-options.custom_compression {\n\tmargin: 10px;\n}\n\n#smush-backup-delete-days {\n\twidth: 50px;\n\tmargin: 0 8px;\n}\n\nimg#wpo_smush_delete_backup_spinner {\n\tmax-width: 20px;\n\tmax-height: 20px;\n\tposition: relative;\n\ttop: 4px;\n}\n\nspan#wpo_smush_delete_backup_done {\n\tfont-size: inherit;\n\tcolor: green;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression {\n\tdisplay: flex;\n\talign-items: center;\n\tmargin-left: 24px;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > span {\n\tdisplay: inline-block;\n\tpadding: 6px;\n\tborder: 1px solid #CFD2D4;\n\tborder-radius: 4px;\n\tfont-size: 0.9em;\n\tposition: relative;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > span.slider-start::after {\n\tcontent: '';\n\twidth: 6px;\n\theight: 6px;\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 100%;\n\ttransform: translate(-3px, 8px) rotate(45deg);\n\tborder-right: 1px solid #CFD2D4;\n\tborder-top: 1px solid #CFD2D4;\n\tbackground: #EDEFF0;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > span.slider-end::before {\n\tcontent: '';\n\twidth: 6px;\n\theight: 6px;\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 0;\n\tright: 100%;\n\ttransform: translate(3px, 8px) rotate(45deg);\n\tborder-left: 1px solid #CFD2D4;\n\tborder-bottom: 1px solid #CFD2D4;\n\tbackground: #EDEFF0;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > input {\n\tmargin-left: 8px;\n\tmargin-right: 8px;\n}\n\n@media screen and (max-width: 782px) {\n\n\t.wpo-fieldgroup input[type=\"radio\"] {\n\t\theight: 16px;\n\t\twidth: 16px;\n\t}\n\n\t.wpo-fieldgroup\tinput[type=\"radio\"]:checked:before {\n\t\twidth: 6px;\n\t\theight: 6px;\n\t\tmargin: 4px;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression {\n\t\tflex-direction: column;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > input {\n\t\twidth: 100%;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > span {\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > span.slider-start::after {\n\t\tleft: 0;\n\t\ttransform: translate(7px, 22px) rotate(135deg);\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > span.slider-end::before {\n\t\tright: auto;\n\t\tleft: 100%;\n\t\ttransform: translate(-14px, -5px) rotate(135deg);\n\t}\n\n}\n\n/**\n * Uncompressed images\n */\n\n#wpo_smush_settings .align-left {\n\tfloat: left;\n}\n\n#wpo_smush_settings .align-right {\n\tfloat: right;\n}\n\n.wpo-fieldgroup .wpo_smush_images_buttons_wrap {\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .smush-refresh-icon,\n.wpo-fieldgroup .smush-select-actions {\n\tfont-size: 15px;\n}\n\n.wpo-fieldgroup img.wpo_smush_images_loader {\n\tdisplay: none;\n\tmin-height: 20px;\n\tmin-width: 20px;\n}\n\n.wpo-fieldgroup .dashicons.dashicons-image-rotate, {\n\tfont-size: 15px;\n}\n\n.wpo-fieldgroup .wpo-toggle-advanced-options {\n\tcursor: pointer;\n\ttext-decoration: underline;\n\tcolor: #0088BC;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options {\n\tdisplay: block;\n\twidth: calc(100% + 40px);\n\tmargin-left: -20px;\n\tmargin-right: -20px;\n\tpadding-left: 20px;\n\tpadding-right: 20px;\n\tposition: relative;\n\ttext-decoration: none;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options span.dashicons {\n\ttext-decoration: none;\n\tfont-size: 16px;\n\theight: 16px;\n\tvertical-align: middle;\n\tcolor: #444;\n\ttransition: .2s all;\n}\n\n.wpo-fieldgroup .wpo-toggle-advanced-options span.text {\n\tbackground: #F2F4F4;\n\tz-index: 1;\n\tposition: relative;\n\tpadding-right: 5px;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options:hover,\n.wpo-fieldgroup .button.wpo-toggle-advanced-options:focus {\n\tbackground: transparent;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options .wpo-toggle-advanced-options__text-show {\n\tdisplay: inline-block;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options .wpo-toggle-advanced-options__text-hide {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened .wpo-toggle-advanced-options__text-show {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened .wpo-toggle-advanced-options__text-hide {\n\tdisplay: inline-block;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened::before {\n\tcontent: '';\n\tborder-top: 1px solid #CCC;\n\twidth: 100%;\n\tposition: absolute;\n\ttop: 16px;\n\tleft: 0;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened span.dashicons {\n\ttransform: rotate(180deg);\n}\n\n.wpo-fieldgroup .wpo-advanced-options {\n\tdisplay: none;\n}\n\n.wpo-advanced-options > fieldset:first-child {\n\tmargin-top: 10px;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened + .wpo-advanced-options {\n\tdisplay: block;\n}\n\n.wpo_smush_image:focus-within label {\n\tbox-shadow: 0 0 4px #0272AA;\n}\n\n.wpo_smush_image .wpo_smush_image__input:checked + label {\n\tborder-color: #0272AA;\n}\n\n.uncompressed-images input[type=\"checkbox\"] {\n\tposition: absolute;\n\topacity: 0;\n\twidth: 0;\n\theight: 0;\n}\n\n.uncompressed-images small.red {\n\tclear: both;\n\tdisplay: block;\n\tmargin: 5px;\n}\n\n.smush-actions .wpo_primary_small {\n\tdisplay: inline-block;\n\tmargin: 5px;\n}\n\n.smush-actions {\n\tdisplay: inline-block;\n\twidth: 100%;\n\tmargin: 10px 0;\n}\n\n.smush-actions .dashicons.dashicons-yes {\n\tfont-size: 15px;\n\tmargin: 0 5px;\n}\n\n.smush-actions img {\n\tmax-height: 25px;\n\tmax-width: 25px;\n}\n\n/**\n * Log and panels\n */\n\n#smush-log-modal {\n\twidth: 100%;\n\theight: 100%;\n}\n\n#log-panel {\n\theight: 80%;\n\toverflow: scroll;\n\tmargin: 2%;\n}\n\n#log-panel pre {\n\ttext-align: left;\n\toverflow: auto;\n\theight: 100%;\n\tbackground: gainsboro;\n}\n\n.smush-information {\n\tmargin-bottom: 10px;\n}\n\n/**\n * Smush modal progress box & related styling\n */\n\n#smush_stats {\n\ttext-align: center;\n\tmargin: 0 auto;\n\tpadding: 2%;\n\tmin-width: 350px;\n\tfont-size: larger;\n}\n\n#smush_stats .wpo_smush_stats_cta_btn {\n\tclear: both;\n\tdisplay: block;\n\ttext-align: center;\n}\n\n#smush_stats .smush_stats_row td:first-child {\n\ttext-align: left;\n}\n\n#smush_stats tr.smush_stats_row td:last-child {\n\ttext-align: right;\n}\n\n#smush_stats #wpo_smush_images_information_container p {\n\tpadding: 10px;\n}\n\n#smush-complete-summary .checkmark-circle {\n\twidth: 50px;\n\theight: 50px;\n\tposition: relative;\n\tdisplay: inline-block;\n\tvertical-align: top;\n}\n\n#smush-complete-summary .checkmark-circle .background {\n\twidth: 50px;\n\theight: 50px;\n\tborder-radius: 50%;\n\tbackground: #DF6927;\n\tposition: absolute;\n}\n\n#smush-complete-summary .checkmark-circle .checkmark {\n\tborder-radius: 5px;\n}\n\n#smush-complete-summary .checkmark-circle .checkmark.draw:after {\n\tanimation-delay: 100ms;\n\tanimation-duration: 1s;\n\tanimation-timing-function: ease;\n\tanimation-name: checkmark;\n\ttransform: scalex(-1) rotate(135deg);\n\tanimation-fill-mode: forwards;\n}\n\n#smush-complete-summary .checkmark-circle .checkmark:after {\n\topacity: 1;\n\theight: 25px;\n\twidth: 12.5px;\n\ttransform-origin: left top;\n\tborder-right: 5px solid white;\n\tborder-top: 5px solid white;\n\tborder-radius: 2.5px !important;\n\tcontent: '';\n\tleft: 8.3333333333px;\n\ttop: 25px;\n\tposition: absolute;\n}\n\n#smush_stats .wpo_primary_small {\n\ttext-align: center;\n}\n\n#smush-complete-summary #summary-message {\n\tmargin: 15px auto;\n}\n\nimg#wpo_smush_images_clear_stats_spinner {\n\twidth: 20px;\n\tline-height: 1;\n\tvertical-align: middle;\n}\n\n/* Animated progress bar */\n\n#wpo_smush_images_information_container {\n\tpadding: 10px;\n}\n\n#wpo_smush_images_information_wrapper .progress-bar {\n\theight: 25px;\n\tpadding: 1px;\n\twidth: 350px;\n\tmargin: 10px auto;\n\tborder-radius: 5px;\n}\n\n#wpo_smush_images_information_wrapper .progress-bar span {\n\tdisplay: inline-block;\n\theight: 100%;\n\tborder-radius: 3px;\n\tbox-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;\n\ttransition: width .4s ease-in-out;\n}\n\n#wpo_smush_images_information_wrapper .orange span {\n\tbackground-color: #DF6927;\n}\n\n#wpo_smush_images_information_wrapper .stripes span {\n\tbackground-size: 30px;\n\tbackground-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n\tanimation: animate-stripes 3s linear infinite;\n}\n\n/**\n * Smush metabox\n */\n\n#smush-metabox-inside-wrapper {\n\tdisplay: inline-table;\n\twidth: 100%;\n}\n\n#smush-metabox-inside-wrapper h4 {\n\tmargin: 2px 0;\n}\n\n#smush-metabox-inside-wrapper label {\n\tmargin-top: 5px;\n\tclear: left;\n\tdisplay: block;\n}\n\n#smush-metabox-inside-wrapper .wpo_smush_single_image {\n\tdisplay: block;\n}\n\n#smush-metabox-inside-wrapper .wpo_smush_single_image.action_button {\n\tpadding: 5px 0;\n}\n\n#smush-metabox-inside-wrapper fieldset {\n\tmargin: 10px 0;\n}\n\n#smush-metabox-inside-wrapper input[type=\"radio\"] {\n\tmargin: -4px 4px 0 0;\n}\n\n#smush-metabox-inside-wrapper .alignleft {\n\tfloat: left;\n}\n\n#smush-metabox-inside-wrapper p#smush_info {\n\tmargin: 20px auto;\n\tpadding-top: 10px;\n\tclear: both;\n}\n\n#smush-metabox-inside-wrapper .wpo-toggle-advanced-options {\n\tcursor: pointer;\n\tdisplay: block;\n\tclear: both;\n\tmargin-top: 10px;\n\tmargin-bottom: 10px;\n}\n\n#smush-metabox-inside-wrapper .wpo-toggle-advanced-options:not(.opened) ~ .wpo-advanced-options {\n\tdisplay: none;\n}\n\n#smush-metabox-inside-wrapper .wpo-toggle-advanced-options.opened ~ .wpo-advanced-options {\n\tdisplay: block !important;\n}\n\n#smush-metabox-inside-wrapper .smush-options.custom_compression span {\n\tdisplay: block;\n\tmax-width: 30%;\n\tclear: both;\n}\n\n#smush-metabox-inside-wrapper input#custom_compression_slider {\n\tdisplay: block;\n\tclear: both;\n\twidth: 100%;\n}\n\n#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignleft {\n\tfloat: left;\n}\n\n#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignright {\n\tfloat: right;\n\ttext-align: right;\n}\n\n.smush-metabox-dashboard-link {\n\tclear: both;\n\tpadding-top: 15px;\n\ttext-align: right;\n}\n\n.media-frame-content .attachment-compat .compat-item,\n.compat-field-wpo_compress_image {\n\toverflow: visible !important;\n}\n\n.compat-field-wpo_compress_image {\n\tborder-top: 1px solid #DDD;\n}\n\n.compat-field-wpo_compress_image span.dashicons {\n\ttext-align: left;\n\tfloat: none;\n\tmin-height: 0;\n\tpadding-top: 2px;\n}\n\n.compat-field-wpo_compress_image td.field {\n\twidth: auto;\n\tfloat: none;\n}\n\n.compat-field-wpo_compress_image td.field [data-tooltip] {\n\tdisplay: none;\n}\n\n.compat-field-wpo_compress_image th.label {\n\ttext-align: left;\n\tmin-width: 0;\n\tfloat: none;\n\tmargin: 0;\n}\n\n.compat-field-wpo_compress_image th.label label span {\n\tfont-weight: 500;\n\ttext-align: left;\n}\n\n/* fix for elementor restore button position */\n.wpo_restore_single_image .alignright {\n\tfloat: right;\n}\n\n/**\n * Force fix the modals\n */\n.blockUI.blockMsg.blockPage {\n\tz-index: 170000 !important;\n\tright: 0;\n\tleft: 0 !important;\n\tmargin-right: auto !important;\n\tmargin-left: auto !important;\n\tmax-width: 90%;\n\tcursor: default !important;\n}\n\n.blockUI.blockOverlay {\n\tcursor: default !important;\n}\n\n/**\n * Tooltip Styles\n */\n\n/* Add this attribute to the element that needs a tooltip */\n#smush-metabox-inside-wrapper [data-tooltip],\n.wpo-fieldgroup [data-tooltip] {\n\tposition: relative;\n\tcursor: pointer;\n\tline-height: 18px;\n}\n\n/* Hide the tooltip content by default */\n#smush-metabox-inside-wrapper [data-tooltip]:before,\n#smush-metabox-inside-wrapper [data-tooltip]:after,\n.wpo-fieldgroup [data-tooltip]:before,\n.wpo-fieldgroup [data-tooltip]:after {\n\tvisibility: hidden;\n\t-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\n\tfilter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);\n\topacity: 0;\n\tpointer-events: none;\n}\n\n/* Position tooltip above the element */\n#smush-metabox-inside-wrapper [data-tooltip]:before,\n.wpo-fieldgroup [data-tooltip]:before {\n\tposition: absolute;\n\tbottom: 150%;\n\tleft: 50%;\n\tmargin-bottom: 5px;\n\tmargin-left: -140px;\n\tpadding: 12px;\n\twidth: 275px;\n\tz-index: 9999;\n\tborder-radius: 3px;\n\tbackground-color: #000;\n\tbackground-color: hsla(0, 0%, 20%, 0.95);\n\tcolor: #FFF;\n\tcontent: attr(data-tooltip);\n\ttext-align: center;\n\tfont-size: .85rem;\n\tfont-weight: 400;\n\tline-height: 1.4;\n}\n\n#smush-metabox-inside-wrapper [data-tooltip]:before {\n\tmargin-left: -280px;\n}\n\n/* Triangle hack to make tooltip look like a speech bubble */\n#smush-metabox-inside-wrapper [data-tooltip]:after,\n.wpo-fieldgroup [data-tooltip]:after {\n\tposition: absolute;\n\tbottom: 150%;\n\tleft: 50%;\n\tmargin-left: -5px;\n\twidth: 0;\n\tborder-top: 5px solid #000;\n\tborder-top: 5px solid hsla(0, 0%, 20%, 0.9);\n\tborder-right: 5px solid transparent;\n\tborder-left: 5px solid transparent;\n\tcontent: \" \";\n\tfont-size: 0;\n\tline-height: 0;\n}\n\n/* Show tooltip content on hover */\n#smush-metabox-inside-wrapper [data-tooltip]:hover:before,\n#smush-metabox-inside-wrapper [data-tooltip]:hover:after,\n.wpo-fieldgroup [data-tooltip]:hover:before,\n.wpo-fieldgroup [data-tooltip]:hover:after,\n#smush-metabox-inside-wrapper [data-tooltip]:focus:before,\n#smush-metabox-inside-wrapper [data-tooltip]:focus:after,\n.wpo-fieldgroup [data-tooltip]:focus:before,\n.wpo-fieldgroup [data-tooltip]:focus:after {\n\tvisibility: visible;\n\t-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\n\tfilter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);\n\topacity: 1;\n}\n\n/**\n * Animation needed for smush\n */\n\n@keyframes checkmark {\n\n\t0% {\n\t\theight: 0;\n\t\twidth: 0;\n\t\topacity: 1;\n\t}\n\n\t20% {\n\t\theight: 0;\n\t\twidth: 12.5px;\n\t\topacity: 1;\n\t}\n\n\t40% {\n\t\theight: 25px;\n\t\twidth: 12.5px;\n\t\topacity: 1;\n\t}\n\n\t100% {\n\t\theight: 25px;\n\t\twidth: 12.5px;\n\t\topacity: 1;\n\t}\n\n}\n\n@keyframes animate-stripes {\n\n\t0% {\n\t\tbackground-position: 0 0;\n\t}\n\n\t100% {\n\t\tbackground-position: 60px 0;\n\t}\n\n}\n\n@keyframes animate-stripes {\n\n\t0% {\n\t\tbackground-position: 0 0;\n\t}\n\n\t100% {\n\t\tbackground-position: 60px 0;\n\t}\n\n}\n\n#wpo_smush_restore_all_compressed_images_btn + span > span {\n\tline-height: 28px;\n}\n"]}
 
css/smush-3-2-5.min.css ADDED
@@ -0,0 +1,2 @@
 
 
1
+ .wpo-fieldgroup .autosmush{display:inline-block;width:100%}.wpo-fieldgroup .autosmush h3{font-size:1.2em;margin:3px 18px}.wpo-fieldgroup .compression_server div{max-width:300px}.wpo-fieldgroup .compression_server h2{margin:10px 0}.wpo-fieldgroup .compression_server h3{clear:both;width:100%}.wpo-fieldgroup .compression_server p{margin:1px}.wpo-fieldgroup .compression_server p:last-of-type{margin-bottom:10px}.wpo-fieldgroup .compression_server{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.wpo-fieldgroup .compression_server>div{-ms-flex:1;flex:1;margin-right:10px;height:100%;position:relative}.wpo-fieldgroup .compression_server input[type="radio"]{position:absolute;z-index:1;top:calc(50% + 2px);left:20px;transform:translatey(-50%)}.wpo-fieldgroup .compression_server input[type="radio"] ~ label h4{color:#23282d;margin-top:0;margin-bottom:.9em;font-size:1.2em}.wpo-fieldgroup .compression_server label{display:block;position:relative;box-sizing:border-box;height:100%;background:#FFF;text-align:left;box-shadow:0 3px 10px -2px hsla(150,5%,65%,0.5)}.wpo-fieldgroup .compression_server input[type="radio"]+label{padding:20px;border:2px solid #FFF;padding-left:65px;position:relative;border-radius:5px;color:#82868b}.wpo-fieldgroup .compression_server input[type="radio"]+label::before{content:'';display:block;position:absolute;top:0;left:52px;height:100%;border-right:1px solid #edeff0}.wpo-fieldgroup .save-options{margin:10px 0}.wpo-fieldgroup .compression_server input[type="radio"]:focus+label,.wpo-fieldgroup .compression_server input[type="radio"]+label:hover{border-color:rgba(0,134,184,0.38)}.wpo-fieldgroup .compression_server input[type="radio"]:focus+label{box-shadow:0 3px 10px -2px #5b9dd9}.wpo-fieldgroup .compression_server input[type="radio"]:focus+label h4{color:#0086b9}.wpo-fieldgroup .compression_server input[type="radio"]:checked+label,.wpo-fieldgroup .compression_server input[type="radio"]:checked+label:hover{border-color:#0086b9}@media only screen and (max-width:700px){.wpo-fieldgroup .compression_server{-ms-flex-direction:column;flex-direction:column}.wpo-fieldgroup .compression_server>div{margin-bottom:15px;max-width:100%}}.wpo-fieldgroup h4{margin:1em 0;width:100%}.wpo-fieldgroup .image_quality input[type=radio]{position:absolute;visibility:hidden;display:none}.wpo-fieldgroup .image_quality label{color:#23282d;display:inline-block;cursor:pointer;font-weight:bold;padding:5px 20px;background:#f9f9f9;float:left;margin:0 .5px}.wpo-fieldgroup .image_quality input[type=radio]:checked+label{color:white;background:#0088b9}.wpo-fieldgroup .image_quality label+.wpo-fieldgroup .image_quality input[type=radio]+label{border-left:solid 3px #675f6b}.wpo-fieldgroup .image_quality.radio-group{border:solid .5px #c4c4c4;display:inline-block;border-radius:5px;overflow:hidden;border-bottom:solid 2px #c4c4c4;background:#c4c4c4}.wpo-fieldgroup .image_options input{min-height:16px;min-width:16px;margin:3px 2px}img#wpo_smush_images_save_options_spinner{max-width:20px;max-height:20px}span#wpo_smush_images_save_options_fail{font-size:inherit;color:red}span#wpo_smush_images_save_options_done{font-size:inherit;color:green}#smush-complete-summary span.clearfix{height:10px;display:block;clear:both}#smush-complete-summary span.close{display:block;clear:both;text-align:left;color:#df6927;border:2px solid;border-radius:50%;cursor:pointer}.modal-message-text{margin:0 25px}.smush-options.custom_compression{margin:10px}#smush-backup-delete-days{width:50px;margin:0 8px}img#wpo_smush_delete_backup_spinner{max-width:20px;max-height:20px;position:relative;top:4px}span#wpo_smush_delete_backup_done{font-size:inherit;color:green}.wpo-fieldgroup .smush-options.custom_compression{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-left:24px}.wpo-fieldgroup .smush-options.custom_compression>span{display:inline-block;padding:6px;border:1px solid #cfd2d4;border-radius:4px;font-size:.9em;position:relative}.wpo-fieldgroup .smush-options.custom_compression>span.slider-start::after{content:'';width:6px;height:6px;display:block;position:absolute;top:0;left:100%;transform:translate(-3px,8px) rotate(45deg);border-right:1px solid #cfd2d4;border-top:1px solid #cfd2d4;background:#edeff0}.wpo-fieldgroup .smush-options.custom_compression>span.slider-end::before{content:'';width:6px;height:6px;display:block;position:absolute;top:0;right:100%;transform:translate(3px,8px) rotate(45deg);border-left:1px solid #cfd2d4;border-bottom:1px solid #cfd2d4;background:#edeff0}.wpo-fieldgroup .smush-options.custom_compression>input{margin-left:8px;margin-right:8px}@media screen and (max-width:782px){.wpo-fieldgroup input[type="radio"]{height:16px;width:16px}.wpo-fieldgroup input[type="radio"]:checked:before{width:6px;height:6px;margin:4px}.wpo-fieldgroup .smush-options.custom_compression{-ms-flex-direction:column;flex-direction:column}.wpo-fieldgroup .smush-options.custom_compression>input{width:100%}.wpo-fieldgroup .smush-options.custom_compression>span{display:block;width:100%}.wpo-fieldgroup .smush-options.custom_compression>span.slider-start::after{left:0;transform:translate(7px,22px) rotate(135deg)}.wpo-fieldgroup .smush-options.custom_compression>span.slider-end::before{right:auto;left:100%;transform:translate(-14px,-5px) rotate(135deg)}}#wpo_smush_settings .align-left{float:left}#wpo_smush_settings .align-right{float:right}.wpo-fieldgroup .wpo_smush_images_buttons_wrap{width:100%}.wpo-fieldgroup .smush-refresh-icon,.wpo-fieldgroup .smush-select-actions{font-size:15px}.wpo-fieldgroup img.wpo_smush_images_loader{display:none;min-height:20px;min-width:20px}.wpo-fieldgroup .dashicons.dashicons-image-rotate,{font-size:15px}.wpo-fieldgroup .wpo-toggle-advanced-options{cursor:pointer;text-decoration:underline;color:#0088bc}.wpo-fieldgroup .button.wpo-toggle-advanced-options{display:block;width:calc(100% + 40px);margin-left:-20px;margin-right:-20px;padding-left:20px;padding-right:20px;position:relative;text-decoration:none}.wpo-fieldgroup .button.wpo-toggle-advanced-options span.dashicons{text-decoration:none;font-size:16px;height:16px;vertical-align:middle;color:#444;transition:.2s all}.wpo-fieldgroup .wpo-toggle-advanced-options span.text{background:#f2f4f4;z-index:1;position:relative;padding-right:5px}.wpo-fieldgroup .button.wpo-toggle-advanced-options:hover,.wpo-fieldgroup .button.wpo-toggle-advanced-options:focus{background:transparent}.wpo-fieldgroup .button.wpo-toggle-advanced-options .wpo-toggle-advanced-options__text-show{display:inline-block}.wpo-fieldgroup .button.wpo-toggle-advanced-options .wpo-toggle-advanced-options__text-hide{display:none}.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened .wpo-toggle-advanced-options__text-show{display:none}.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened .wpo-toggle-advanced-options__text-hide{display:inline-block;margin-bottom:20px}.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened::before{content:'';border-top:1px solid #CCC;width:100%;position:absolute;top:16px;left:0}.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened span.dashicons{transform:rotate(180deg)}.wpo-fieldgroup .wpo-advanced-options{display:none}.wpo-advanced-options>fieldset:first-child{margin-top:10px}.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened+.wpo-advanced-options{display:block}.wpo_smush_image:focus-within label{box-shadow:0 0 4px #0272aa}.wpo_smush_image .wpo_smush_image__input:checked+label{border-color:#0272aa}.uncompressed-images input[type="checkbox"]{position:absolute;opacity:0;width:0;height:0}.uncompressed-images small.red{clear:both;display:block;margin:5px}.smush-actions .wpo_primary_small{display:inline-block;margin:5px}.smush-actions{display:inline-block;width:100%;margin:10px 0}.smush-actions .dashicons.dashicons-yes{font-size:15px;margin:0 5px}.smush-actions img{max-height:25px;max-width:25px}#smush-log-modal{width:100%;height:100%}#log-panel{height:80%;overflow:scroll;margin:2%}#log-panel pre{text-align:left;overflow:auto;height:100%;background:gainsboro}.smush-information{margin-bottom:10px}#smush_stats{text-align:center;margin:0 auto;padding:2%;min-width:350px;font-size:larger}#smush_stats .wpo_smush_stats_cta_btn{clear:both;display:block;text-align:center}#smush_stats .smush_stats_row td:first-child{text-align:left}#smush_stats tr.smush_stats_row td:last-child{text-align:right}#smush_stats #wpo_smush_images_information_container p{padding:10px}#smush-complete-summary .checkmark-circle{width:50px;height:50px;position:relative;display:inline-block;vertical-align:top}#smush-complete-summary .checkmark-circle .background{width:50px;height:50px;border-radius:50%;background:#df6927;position:absolute}#smush-complete-summary .checkmark-circle .checkmark{border-radius:5px}#smush-complete-summary .checkmark-circle .checkmark.draw:after{animation-delay:100ms;animation-duration:1s;animation-timing-function:ease;animation-name:checkmark;transform:scalex(-1) rotate(135deg);animation-fill-mode:forwards}#smush-complete-summary .checkmark-circle .checkmark:after{opacity:1;height:25px;width:12.5px;transform-origin:left top;border-right:5px solid white;border-top:5px solid white;border-radius:2.5px !important;content:'';left:8.3333333333px;top:25px;position:absolute}#smush_stats .wpo_primary_small{text-align:center}#smush-complete-summary #summary-message{margin:15px auto}img#wpo_smush_images_clear_stats_spinner{width:20px;line-height:1;vertical-align:middle}#wpo_smush_images_information_container{padding:10px}#wpo_smush_images_information_wrapper .progress-bar{height:25px;padding:1px;width:350px;margin:10px auto;border-radius:5px}#wpo_smush_images_information_wrapper .progress-bar span{display:inline-block;height:100%;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5) inset;transition:width .4s ease-in-out}#wpo_smush_images_information_wrapper .orange span{background-color:#df6927}#wpo_smush_images_information_wrapper .stripes span{background-size:30px;background-image:linear-gradient(135deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);animation:animate-stripes 3s linear infinite}#smush-metabox-inside-wrapper{display:inline-table;width:100%}#smush-metabox-inside-wrapper h4{margin:2px 0}#smush-metabox-inside-wrapper label{margin-top:5px;clear:left;display:block}#smush-metabox-inside-wrapper .wpo_smush_single_image{display:block}#smush-metabox-inside-wrapper .wpo_smush_single_image.action_button{padding:5px 0}#smush-metabox-inside-wrapper fieldset{margin:10px 0}#smush-metabox-inside-wrapper input[type="radio"]{margin:-4px 4px 0 0}#smush-metabox-inside-wrapper .alignleft{float:left}#smush-metabox-inside-wrapper p#smush_info{margin:20px auto;padding-top:10px;clear:both}#smush-metabox-inside-wrapper .wpo-toggle-advanced-options{cursor:pointer;display:block;clear:both;margin-top:10px;margin-bottom:10px}#smush-metabox-inside-wrapper .wpo-toggle-advanced-options:not(.opened) ~ .wpo-advanced-options{display:none}#smush-metabox-inside-wrapper .wpo-toggle-advanced-options.opened ~ .wpo-advanced-options{display:block !important}#smush-metabox-inside-wrapper .smush-options.custom_compression span{display:block;max-width:30%;clear:both}#smush-metabox-inside-wrapper input#custom_compression_slider{display:block;clear:both;width:100%}#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignleft{float:left}#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignright{float:right;text-align:right}.smush-metabox-dashboard-link{clear:both;padding-top:15px;text-align:right}.media-frame-content .attachment-compat .compat-item,.compat-field-wpo_compress_image{overflow:visible !important}.compat-field-wpo_compress_image{border-top:1px solid #DDD}.compat-field-wpo_compress_image span.dashicons{text-align:left;float:none;min-height:0;padding-top:2px}.compat-field-wpo_compress_image td.field{width:auto;float:none}.compat-field-wpo_compress_image td.field [data-tooltip]{display:none}.compat-field-wpo_compress_image th.label{text-align:left;min-width:0;float:none;margin:0}.compat-field-wpo_compress_image th.label label span{font-weight:500;text-align:left}.wpo_restore_single_image .alignright{float:right}.blockUI.blockMsg.blockPage{z-index:170000 !important;right:0;left:0 !important;margin-right:auto !important;margin-left:auto !important;max-width:90%;cursor:default !important}.blockUI.blockOverlay{cursor:default !important}#smush-metabox-inside-wrapper [data-tooltip],.wpo-fieldgroup [data-tooltip]{position:relative;cursor:pointer;line-height:18px}#smush-metabox-inside-wrapper [data-tooltip]:before,#smush-metabox-inside-wrapper [data-tooltip]:after,.wpo-fieldgroup [data-tooltip]:before,.wpo-fieldgroup [data-tooltip]:after{visibility:hidden;-ms-filter:"alpha(opacity=0)";filter:alpha(opacity=0);opacity:0;pointer-events:none}#smush-metabox-inside-wrapper [data-tooltip]:before,.wpo-fieldgroup [data-tooltip]:before{position:absolute;bottom:150%;left:50%;margin-bottom:5px;margin-left:-140px;padding:12px;width:275px;z-index:9999;border-radius:3px;background-color:#000;background-color:hsla(0,0%,20%,0.95);color:#FFF;content:attr(data-tooltip);text-align:center;font-size:.85rem;font-weight:400;line-height:1.4}#smush-metabox-inside-wrapper [data-tooltip]:before{margin-left:-280px}#smush-metabox-inside-wrapper [data-tooltip]:after,.wpo-fieldgroup [data-tooltip]:after{position:absolute;bottom:150%;left:50%;margin-left:-5px;width:0;border-top:5px solid #000;border-top:5px solid hsla(0,0%,20%,0.9);border-right:5px solid transparent;border-left:5px solid transparent;content:" ";font-size:0;line-height:0}#smush-metabox-inside-wrapper [data-tooltip]:hover:before,#smush-metabox-inside-wrapper [data-tooltip]:hover:after,.wpo-fieldgroup [data-tooltip]:hover:before,.wpo-fieldgroup [data-tooltip]:hover:after,#smush-metabox-inside-wrapper [data-tooltip]:focus:before,#smush-metabox-inside-wrapper [data-tooltip]:focus:after,.wpo-fieldgroup [data-tooltip]:focus:before,.wpo-fieldgroup [data-tooltip]:focus:after{visibility:visible;-ms-filter:"alpha(opacity=100)";filter:alpha(opacity=100);opacity:1}@keyframes checkmark{0%{height:0;width:0;opacity:1}20%{height:0;width:12.5px;opacity:1}40%{height:25px;width:12.5px;opacity:1}100%{height:25px;width:12.5px;opacity:1}}@keyframes animate-stripes{0%{background-position:0 0}100%{background-position:60px 0}}@keyframes animate-stripes{0%{background-position:0 0}100%{background-position:60px 0}}#wpo_smush_restore_all_compressed_images_btn+span>span{line-height:28px}
2
+ /*# sourceMappingURL=smush-3-2-5.min.css.map */
css/smush-3-2-5.min.css.map ADDED
@@ -0,0 +1 @@
 
1
+ {"version":3,"sources":["css/smush.css"],"names":[],"mappings":"AAAA;;GAEG;AACH;CACC,sBAAsB;CACtB,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;;GAEG;AACH;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,qBAAqB;CACrB,cAAc;CACd,wBAAwB;CACxB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,QAAQ;CACR,mBAAmB;CACnB,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,qBAAqB;CACrB,WAAW;CACX,4BAA4B;CAC5B;;AAED;CACC,eAAe;CACf,cAAc;CACd,qBAAqB;CACrB,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,mBAAmB;CACnB,uBAAuB;CACvB,aAAa;CACb,iBAAiB;CACjB,iBAAiB;CACjB,sDAAsD;CACtD;;AAED;CACC,cAAc;CACd,uBAAuB;CACvB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,OAAO;CACP,WAAW;CACX,aAAa;CACb,gCAAgC;CAChC;;AAED;CACC,eAAe;CACf;;AAED;;CAEC,sCAAsC;CACtC;;AAED;CACC,sCAAsC;CACtC;;AAED;CACC,eAAe;CACf;;AAED;;CAEC,sBAAsB;CACtB;;AAED;;CAEC;EACC,2BAA2B;EAC3B,uBAAuB;EACvB;;CAED;EACC,oBAAoB;EACpB,gBAAgB;EAChB;;CAED;;AAED;;GAEG;AACH;CACC,cAAc;CACd,YAAY;CACZ;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,kBAAkB;CAClB,oBAAoB;CACpB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,2BAA2B;CAC3B,sBAAsB;CACtB,mBAAmB;CACnB,iBAAiB;CACjB,iCAAiC;CACjC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,aAAa;CACb,eAAe;CACf,YAAY;CACZ;;AAED;CACC,eAAe;CACf,YAAY;CACZ,iBAAiB;CACjB,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,0BAA0B;CAC1B,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,OAAO;CACP,WAAW;CACX,8CAA8C;CAC9C,gCAAgC;CAChC,8BAA8B;CAC9B,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,OAAO;CACP,YAAY;CACZ,6CAA6C;CAC7C,+BAA+B;CAC/B,iCAAiC;CACjC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;;CAEC;EACC,aAAa;EACb,YAAY;EACZ;;CAED;EACC,WAAW;EACX,YAAY;EACZ,YAAY;EACZ;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,eAAe;EACf,YAAY;EACZ;;CAED;EACC,QAAQ;EACR,+CAA+C;EAC/C;;CAED;EACC,YAAY;EACZ,WAAW;EACX,iDAAiD;EACjD;;CAED;;AAED;;GAEG;;AAEH;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,2BAA2B;CAC3B,eAAe;CACf;;AAED;CACC,eAAe;CACf,yBAAyB;CACzB,mBAAmB;CACnB,oBAAoB;CACpB,mBAAmB;CACnB,oBAAoB;CACpB,mBAAmB;CACnB,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb,uBAAuB;CACvB,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB,WAAW;CACX,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;;CAEC,wBAAwB;CACxB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,2BAA2B;CAC3B,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,QAAQ;CACR;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,SAAS;CACT,UAAU;CACV;;AAED;CACC,YAAY;CACZ,eAAe;CACf,YAAY;CACZ;;AAED;CACC,sBAAsB;CACtB,YAAY;CACZ;;AAED;CACC,sBAAsB;CACtB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,gBAAgB;CAChB,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;;GAEG;;AAEH;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,WAAW;CACX;;AAED;CACC,iBAAiB;CACjB,eAAe;CACf,aAAa;CACb,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB;;AAED;;GAEG;;AAEH;CACC,mBAAmB;CACnB,eAAe;CACf,YAAY;CACZ,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,uBAAuB;CACvB,gCAAgC;CAChC,0BAA0B;CAC1B,qCAAqC;CACrC,8BAA8B;CAC9B;;AAED;CACC,WAAW;CACX,aAAa;CACb,cAAc;CACd,2BAA2B;CAC3B,8BAA8B;CAC9B,4BAA4B;CAC5B,gCAAgC;CAChC,YAAY;CACZ,qBAAqB;CACrB,UAAU;CACV,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,eAAe;CACf,uBAAuB;CACvB;;AAED,2BAA2B;;AAE3B;CACC,cAAc;CACd;;AAED;CACC,aAAa;CACb,aAAa;CACb,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,mBAAmB;CACnB,kDAAkD;CAClD,kCAAkC;CAClC;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,sBAAsB;CACtB,oMAAoM;CACpM,8CAA8C;CAC9C;;AAED;;GAEG;;AAEH;CACC,sBAAsB;CACtB,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,eAAe;CACf;;AAED;CACC,eAAe;CACf;;AAED;CACC,eAAe;CACf;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB,kBAAkB;CAClB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,YAAY;CACZ,iBAAiB;CACjB,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,eAAe;CACf,eAAe;CACf,YAAY;CACZ;;AAED;CACC,eAAe;CACf,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB,kBAAkB;CAClB;;AAED;;CAEC,6BAA6B;CAC7B;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,cAAc;CACd,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,aAAa;CACb,YAAY;CACZ,UAAU;CACV;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB;;AAED,+CAA+C;AAC/C;CACC,aAAa;CACb;;AAED;;GAEG;AACH;CACC,2BAA2B;CAC3B,SAAS;CACT,mBAAmB;CACnB,8BAA8B;CAC9B,6BAA6B;CAC7B,eAAe;CACf,2BAA2B;CAC3B;;AAED;CACC,2BAA2B;CAC3B;;AAED;;GAEG;;AAEH,4DAA4D;AAC5D;;CAEC,mBAAmB;CACnB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED,yCAAyC;AACzC;;;;CAIC,mBAAmB;CACnB,iEAAiE;CACjE,4DAA4D;CAC5D,WAAW;CACX,qBAAqB;CACrB;;AAED,wCAAwC;AACxC;;CAEC,mBAAmB;CACnB,aAAa;CACb,UAAU;CACV,mBAAmB;CACnB,oBAAoB;CACpB,cAAc;CACd,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,uBAAuB;CACvB,yCAAyC;CACzC,YAAY;CACZ,4BAA4B;CAC5B,mBAAmB;CACnB,kBAAkB;CAClB,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,oBAAoB;CACpB;;AAED,6DAA6D;AAC7D;;CAEC,mBAAmB;CACnB,aAAa;CACb,UAAU;CACV,kBAAkB;CAClB,SAAS;CACT,2BAA2B;CAC3B,4CAA4C;CAC5C,oCAAoC;CACpC,mCAAmC;CACnC,aAAa;CACb,aAAa;CACb,eAAe;CACf;;AAED,mCAAmC;AACnC;;;;;;;;CAQC,oBAAoB;CACpB,mEAAmE;CACnE,8DAA8D;CAC9D,WAAW;CACX;;AAED;;GAEG;;AAEH;;CAEC;EACC,UAAU;EACV,SAAS;EACT,WAAW;EACX;;CAED;EACC,UAAU;EACV,cAAc;EACd,WAAW;EACX;;CAED;EACC,aAAa;EACb,cAAc;EACd,WAAW;EACX;;CAED;EACC,aAAa;EACb,cAAc;EACd,WAAW;EACX;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,4BAA4B;EAC5B;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,4BAA4B;EAC5B;;CAED;;AAED;CACC,kBAAkB;CAClB","file":"smush-3-2-5.min.css","sourcesContent":["/**\n * Autosmush\n */\n.wpo-fieldgroup .autosmush {\n\tdisplay: inline-block;\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .autosmush h3 {\n\tfont-size: 1.2em;\n\tmargin: 3px 18px;\n}\n\n/**\n * Compression Server\n */\n.wpo-fieldgroup .compression_server div {\n\tmax-width: 300px;\n}\n\n.wpo-fieldgroup .compression_server h2 {\n\tmargin: 10px 0;\n}\n\n.wpo-fieldgroup .compression_server h3 {\n\tclear: both;\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .compression_server p {\n\tmargin: 1px;\n}\n\n.wpo-fieldgroup .compression_server p:last-of-type {\n\tmargin-bottom: 10px;\n}\n\n.wpo-fieldgroup .compression_server {\n\tdisplay: -ms-flexbox;\n\tdisplay: flex;\n\t-ms-flex-flow: row wrap;\n\tflex-flow: row wrap;\n}\n\n.wpo-fieldgroup .compression_server > div {\n\t-ms-flex: 1;\n\tflex: 1;\n\tmargin-right: 10px;\n\theight: 100%;\n\tposition: relative;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] {\n\tposition: absolute;\n\tz-index: 1;\n\ttop: calc(50% + 2px);\n\tleft: 20px;\n\ttransform: translatey(-50%);\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] ~ label h4 {\n\tcolor: #23282D;\n\tmargin-top: 0;\n\tmargin-bottom: 0.9em;\n\tfont-size: 1.2em;\n}\n\n.wpo-fieldgroup .compression_server label {\n\tdisplay: block;\n\tposition: relative;\n\tbox-sizing: border-box;\n\theight: 100%;\n\tbackground: #FFF;\n\ttext-align: left;\n\tbox-shadow: 0px 3px 10px -2px hsla(150, 5%, 65%, 0.5);\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] + label {\n\tpadding: 20px;\n\tborder: 2px solid #FFF;\n\tpadding-left: 65px;\n\tposition: relative;\n\tborder-radius: 5px;\n\tcolor: #82868B;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"] + label::before {\n\tcontent: '';\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 52px;\n\theight: 100%;\n\tborder-right: 1px solid #EDEFF0;\n}\n\n.wpo-fieldgroup .save-options {\n\tmargin: 10px 0;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:focus + label,\n.wpo-fieldgroup .compression_server input[type=\"radio\"] + label:hover {\n\tborder-color: rgba(0, 134, 184, 0.38);\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:focus + label {\n\tbox-shadow: 0px 3px 10px -2px #5B9DD9;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:focus + label h4 {\n\tcolor: #0086B9;\n}\n\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:checked + label,\n.wpo-fieldgroup .compression_server input[type=\"radio\"]:checked + label:hover {\n\tborder-color: #0086B9;\n}\n\n@media only screen and (max-width: 700px) {\n\n\t.wpo-fieldgroup .compression_server {\n\t\t-ms-flex-direction: column;\n\t\tflex-direction: column;\n\t}\n\n\t.wpo-fieldgroup .compression_server > div {\n\t\tmargin-bottom: 15px;\n\t\tmax-width: 100%;\n\t}\n\n}\n\n/**\n * Compression Options\n */\n.wpo-fieldgroup h4 {\n\tmargin: 1em 0;\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .image_quality input[type=radio] {\n\tposition: absolute;\n\tvisibility: hidden;\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .image_quality label {\n\tcolor: #23282D;\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tfont-weight: bold;\n\tpadding: 5px 20px;\n\tbackground: #F9F9F9;\n\tfloat: left;\n\tmargin: 0 .5px;\n}\n\n.wpo-fieldgroup .image_quality input[type=radio]:checked + label {\n\tcolor: white;\n\tbackground: #0088B9;\n}\n\n.wpo-fieldgroup .image_quality label + .wpo-fieldgroup .image_quality input[type=radio] + label {\n\tborder-left: solid 3px #675F6B;\n}\n\n.wpo-fieldgroup .image_quality.radio-group {\n\tborder: solid .5px #C4C4C4;\n\tdisplay: inline-block;\n\tborder-radius: 5px;\n\toverflow: hidden;\n\tborder-bottom: solid 2px #C4C4C4;\n\tbackground: #C4C4C4;\n}\n\n.wpo-fieldgroup .image_options input {\n\tmin-height: 16px;\n\tmin-width: 16px;\n\tmargin: 3px 2px;\n}\n\nimg#wpo_smush_images_save_options_spinner {\n\tmax-width: 20px;\n\tmax-height: 20px;\n}\n\nspan#wpo_smush_images_save_options_fail {\n\tfont-size: inherit;\n\tcolor: red;\n}\n\nspan#wpo_smush_images_save_options_done {\n\tfont-size: inherit;\n\tcolor: green;\n}\n\n#smush-complete-summary span.clearfix {\n\theight: 10px;\n\tdisplay: block;\n\tclear: both;\n}\n\n#smush-complete-summary span.close {\n\tdisplay: block;\n\tclear: both;\n\ttext-align: left;\n\tcolor: #DF6927;\n\tborder: 2px solid;\n\tborder-radius: 50%;\n\tcursor: pointer;\n}\n\n.modal-message-text {\n\tmargin: 0 25px;\n}\n\n.smush-options.custom_compression {\n\tmargin: 10px;\n}\n\n#smush-backup-delete-days {\n\twidth: 50px;\n\tmargin: 0 8px;\n}\n\nimg#wpo_smush_delete_backup_spinner {\n\tmax-width: 20px;\n\tmax-height: 20px;\n\tposition: relative;\n\ttop: 4px;\n}\n\nspan#wpo_smush_delete_backup_done {\n\tfont-size: inherit;\n\tcolor: green;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression {\n\tdisplay: flex;\n\talign-items: center;\n\tmargin-left: 24px;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > span {\n\tdisplay: inline-block;\n\tpadding: 6px;\n\tborder: 1px solid #CFD2D4;\n\tborder-radius: 4px;\n\tfont-size: 0.9em;\n\tposition: relative;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > span.slider-start::after {\n\tcontent: '';\n\twidth: 6px;\n\theight: 6px;\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 100%;\n\ttransform: translate(-3px, 8px) rotate(45deg);\n\tborder-right: 1px solid #CFD2D4;\n\tborder-top: 1px solid #CFD2D4;\n\tbackground: #EDEFF0;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > span.slider-end::before {\n\tcontent: '';\n\twidth: 6px;\n\theight: 6px;\n\tdisplay: block;\n\tposition: absolute;\n\ttop: 0;\n\tright: 100%;\n\ttransform: translate(3px, 8px) rotate(45deg);\n\tborder-left: 1px solid #CFD2D4;\n\tborder-bottom: 1px solid #CFD2D4;\n\tbackground: #EDEFF0;\n}\n\n.wpo-fieldgroup .smush-options.custom_compression > input {\n\tmargin-left: 8px;\n\tmargin-right: 8px;\n}\n\n@media screen and (max-width: 782px) {\n\n\t.wpo-fieldgroup input[type=\"radio\"] {\n\t\theight: 16px;\n\t\twidth: 16px;\n\t}\n\n\t.wpo-fieldgroup\tinput[type=\"radio\"]:checked:before {\n\t\twidth: 6px;\n\t\theight: 6px;\n\t\tmargin: 4px;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression {\n\t\tflex-direction: column;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > input {\n\t\twidth: 100%;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > span {\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > span.slider-start::after {\n\t\tleft: 0;\n\t\ttransform: translate(7px, 22px) rotate(135deg);\n\t}\n\n\t.wpo-fieldgroup .smush-options.custom_compression > span.slider-end::before {\n\t\tright: auto;\n\t\tleft: 100%;\n\t\ttransform: translate(-14px, -5px) rotate(135deg);\n\t}\n\n}\n\n/**\n * Uncompressed images\n */\n\n#wpo_smush_settings .align-left {\n\tfloat: left;\n}\n\n#wpo_smush_settings .align-right {\n\tfloat: right;\n}\n\n.wpo-fieldgroup .wpo_smush_images_buttons_wrap {\n\twidth: 100%;\n}\n\n.wpo-fieldgroup .smush-refresh-icon,\n.wpo-fieldgroup .smush-select-actions {\n\tfont-size: 15px;\n}\n\n.wpo-fieldgroup img.wpo_smush_images_loader {\n\tdisplay: none;\n\tmin-height: 20px;\n\tmin-width: 20px;\n}\n\n.wpo-fieldgroup .dashicons.dashicons-image-rotate, {\n\tfont-size: 15px;\n}\n\n.wpo-fieldgroup .wpo-toggle-advanced-options {\n\tcursor: pointer;\n\ttext-decoration: underline;\n\tcolor: #0088BC;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options {\n\tdisplay: block;\n\twidth: calc(100% + 40px);\n\tmargin-left: -20px;\n\tmargin-right: -20px;\n\tpadding-left: 20px;\n\tpadding-right: 20px;\n\tposition: relative;\n\ttext-decoration: none;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options span.dashicons {\n\ttext-decoration: none;\n\tfont-size: 16px;\n\theight: 16px;\n\tvertical-align: middle;\n\tcolor: #444;\n\ttransition: .2s all;\n}\n\n.wpo-fieldgroup .wpo-toggle-advanced-options span.text {\n\tbackground: #F2F4F4;\n\tz-index: 1;\n\tposition: relative;\n\tpadding-right: 5px;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options:hover,\n.wpo-fieldgroup .button.wpo-toggle-advanced-options:focus {\n\tbackground: transparent;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options .wpo-toggle-advanced-options__text-show {\n\tdisplay: inline-block;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options .wpo-toggle-advanced-options__text-hide {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened .wpo-toggle-advanced-options__text-show {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened .wpo-toggle-advanced-options__text-hide {\n\tdisplay: inline-block;\n\tmargin-bottom: 20px;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened::before {\n\tcontent: '';\n\tborder-top: 1px solid #CCC;\n\twidth: 100%;\n\tposition: absolute;\n\ttop: 16px;\n\tleft: 0;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened span.dashicons {\n\ttransform: rotate(180deg);\n}\n\n.wpo-fieldgroup .wpo-advanced-options {\n\tdisplay: none;\n}\n\n.wpo-advanced-options > fieldset:first-child {\n\tmargin-top: 10px;\n}\n\n.wpo-fieldgroup .button.wpo-toggle-advanced-options.opened + .wpo-advanced-options {\n\tdisplay: block;\n}\n\n.wpo_smush_image:focus-within label {\n\tbox-shadow: 0 0 4px #0272AA;\n}\n\n.wpo_smush_image .wpo_smush_image__input:checked + label {\n\tborder-color: #0272AA;\n}\n\n.uncompressed-images input[type=\"checkbox\"] {\n\tposition: absolute;\n\topacity: 0;\n\twidth: 0;\n\theight: 0;\n}\n\n.uncompressed-images small.red {\n\tclear: both;\n\tdisplay: block;\n\tmargin: 5px;\n}\n\n.smush-actions .wpo_primary_small {\n\tdisplay: inline-block;\n\tmargin: 5px;\n}\n\n.smush-actions {\n\tdisplay: inline-block;\n\twidth: 100%;\n\tmargin: 10px 0;\n}\n\n.smush-actions .dashicons.dashicons-yes {\n\tfont-size: 15px;\n\tmargin: 0 5px;\n}\n\n.smush-actions img {\n\tmax-height: 25px;\n\tmax-width: 25px;\n}\n\n/**\n * Log and panels\n */\n\n#smush-log-modal {\n\twidth: 100%;\n\theight: 100%;\n}\n\n#log-panel {\n\theight: 80%;\n\toverflow: scroll;\n\tmargin: 2%;\n}\n\n#log-panel pre {\n\ttext-align: left;\n\toverflow: auto;\n\theight: 100%;\n\tbackground: gainsboro;\n}\n\n.smush-information {\n\tmargin-bottom: 10px;\n}\n\n/**\n * Smush modal progress box & related styling\n */\n\n#smush_stats {\n\ttext-align: center;\n\tmargin: 0 auto;\n\tpadding: 2%;\n\tmin-width: 350px;\n\tfont-size: larger;\n}\n\n#smush_stats .wpo_smush_stats_cta_btn {\n\tclear: both;\n\tdisplay: block;\n\ttext-align: center;\n}\n\n#smush_stats .smush_stats_row td:first-child {\n\ttext-align: left;\n}\n\n#smush_stats tr.smush_stats_row td:last-child {\n\ttext-align: right;\n}\n\n#smush_stats #wpo_smush_images_information_container p {\n\tpadding: 10px;\n}\n\n#smush-complete-summary .checkmark-circle {\n\twidth: 50px;\n\theight: 50px;\n\tposition: relative;\n\tdisplay: inline-block;\n\tvertical-align: top;\n}\n\n#smush-complete-summary .checkmark-circle .background {\n\twidth: 50px;\n\theight: 50px;\n\tborder-radius: 50%;\n\tbackground: #DF6927;\n\tposition: absolute;\n}\n\n#smush-complete-summary .checkmark-circle .checkmark {\n\tborder-radius: 5px;\n}\n\n#smush-complete-summary .checkmark-circle .checkmark.draw:after {\n\tanimation-delay: 100ms;\n\tanimation-duration: 1s;\n\tanimation-timing-function: ease;\n\tanimation-name: checkmark;\n\ttransform: scalex(-1) rotate(135deg);\n\tanimation-fill-mode: forwards;\n}\n\n#smush-complete-summary .checkmark-circle .checkmark:after {\n\topacity: 1;\n\theight: 25px;\n\twidth: 12.5px;\n\ttransform-origin: left top;\n\tborder-right: 5px solid white;\n\tborder-top: 5px solid white;\n\tborder-radius: 2.5px !important;\n\tcontent: '';\n\tleft: 8.3333333333px;\n\ttop: 25px;\n\tposition: absolute;\n}\n\n#smush_stats .wpo_primary_small {\n\ttext-align: center;\n}\n\n#smush-complete-summary #summary-message {\n\tmargin: 15px auto;\n}\n\nimg#wpo_smush_images_clear_stats_spinner {\n\twidth: 20px;\n\tline-height: 1;\n\tvertical-align: middle;\n}\n\n/* Animated progress bar */\n\n#wpo_smush_images_information_container {\n\tpadding: 10px;\n}\n\n#wpo_smush_images_information_wrapper .progress-bar {\n\theight: 25px;\n\tpadding: 1px;\n\twidth: 350px;\n\tmargin: 10px auto;\n\tborder-radius: 5px;\n}\n\n#wpo_smush_images_information_wrapper .progress-bar span {\n\tdisplay: inline-block;\n\theight: 100%;\n\tborder-radius: 3px;\n\tbox-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;\n\ttransition: width .4s ease-in-out;\n}\n\n#wpo_smush_images_information_wrapper .orange span {\n\tbackground-color: #DF6927;\n}\n\n#wpo_smush_images_information_wrapper .stripes span {\n\tbackground-size: 30px;\n\tbackground-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n\tanimation: animate-stripes 3s linear infinite;\n}\n\n/**\n * Smush metabox\n */\n\n#smush-metabox-inside-wrapper {\n\tdisplay: inline-table;\n\twidth: 100%;\n}\n\n#smush-metabox-inside-wrapper h4 {\n\tmargin: 2px 0;\n}\n\n#smush-metabox-inside-wrapper label {\n\tmargin-top: 5px;\n\tclear: left;\n\tdisplay: block;\n}\n\n#smush-metabox-inside-wrapper .wpo_smush_single_image {\n\tdisplay: block;\n}\n\n#smush-metabox-inside-wrapper .wpo_smush_single_image.action_button {\n\tpadding: 5px 0;\n}\n\n#smush-metabox-inside-wrapper fieldset {\n\tmargin: 10px 0;\n}\n\n#smush-metabox-inside-wrapper input[type=\"radio\"] {\n\tmargin: -4px 4px 0 0;\n}\n\n#smush-metabox-inside-wrapper .alignleft {\n\tfloat: left;\n}\n\n#smush-metabox-inside-wrapper p#smush_info {\n\tmargin: 20px auto;\n\tpadding-top: 10px;\n\tclear: both;\n}\n\n#smush-metabox-inside-wrapper .wpo-toggle-advanced-options {\n\tcursor: pointer;\n\tdisplay: block;\n\tclear: both;\n\tmargin-top: 10px;\n\tmargin-bottom: 10px;\n}\n\n#smush-metabox-inside-wrapper .wpo-toggle-advanced-options:not(.opened) ~ .wpo-advanced-options {\n\tdisplay: none;\n}\n\n#smush-metabox-inside-wrapper .wpo-toggle-advanced-options.opened ~ .wpo-advanced-options {\n\tdisplay: block !important;\n}\n\n#smush-metabox-inside-wrapper .smush-options.custom_compression span {\n\tdisplay: block;\n\tmax-width: 30%;\n\tclear: both;\n}\n\n#smush-metabox-inside-wrapper input#custom_compression_slider {\n\tdisplay: block;\n\tclear: both;\n\twidth: 100%;\n}\n\n#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignleft {\n\tfloat: left;\n}\n\n#smush-metabox-inside-wrapper .smush-options.custom_compression span.alignright {\n\tfloat: right;\n\ttext-align: right;\n}\n\n.smush-metabox-dashboard-link {\n\tclear: both;\n\tpadding-top: 15px;\n\ttext-align: right;\n}\n\n.media-frame-content .attachment-compat .compat-item,\n.compat-field-wpo_compress_image {\n\toverflow: visible !important;\n}\n\n.compat-field-wpo_compress_image {\n\tborder-top: 1px solid #DDD;\n}\n\n.compat-field-wpo_compress_image span.dashicons {\n\ttext-align: left;\n\tfloat: none;\n\tmin-height: 0;\n\tpadding-top: 2px;\n}\n\n.compat-field-wpo_compress_image td.field {\n\twidth: auto;\n\tfloat: none;\n}\n\n.compat-field-wpo_compress_image td.field [data-tooltip] {\n\tdisplay: none;\n}\n\n.compat-field-wpo_compress_image th.label {\n\ttext-align: left;\n\tmin-width: 0;\n\tfloat: none;\n\tmargin: 0;\n}\n\n.compat-field-wpo_compress_image th.label label span {\n\tfont-weight: 500;\n\ttext-align: left;\n}\n\n/* fix for elementor restore button position */\n.wpo_restore_single_image .alignright {\n\tfloat: right;\n}\n\n/**\n * Force fix the modals\n */\n.blockUI.blockMsg.blockPage {\n\tz-index: 170000 !important;\n\tright: 0;\n\tleft: 0 !important;\n\tmargin-right: auto !important;\n\tmargin-left: auto !important;\n\tmax-width: 90%;\n\tcursor: default !important;\n}\n\n.blockUI.blockOverlay {\n\tcursor: default !important;\n}\n\n/**\n * Tooltip Styles\n */\n\n/* Add this attribute to the element that needs a tooltip */\n#smush-metabox-inside-wrapper [data-tooltip],\n.wpo-fieldgroup [data-tooltip] {\n\tposition: relative;\n\tcursor: pointer;\n\tline-height: 18px;\n}\n\n/* Hide the tooltip content by default */\n#smush-metabox-inside-wrapper [data-tooltip]:before,\n#smush-metabox-inside-wrapper [data-tooltip]:after,\n.wpo-fieldgroup [data-tooltip]:before,\n.wpo-fieldgroup [data-tooltip]:after {\n\tvisibility: hidden;\n\t-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\n\tfilter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);\n\topacity: 0;\n\tpointer-events: none;\n}\n\n/* Position tooltip above the element */\n#smush-metabox-inside-wrapper [data-tooltip]:before,\n.wpo-fieldgroup [data-tooltip]:before {\n\tposition: absolute;\n\tbottom: 150%;\n\tleft: 50%;\n\tmargin-bottom: 5px;\n\tmargin-left: -140px;\n\tpadding: 12px;\n\twidth: 275px;\n\tz-index: 9999;\n\tborder-radius: 3px;\n\tbackground-color: #000;\n\tbackground-color: hsla(0, 0%, 20%, 0.95);\n\tcolor: #FFF;\n\tcontent: attr(data-tooltip);\n\ttext-align: center;\n\tfont-size: .85rem;\n\tfont-weight: 400;\n\tline-height: 1.4;\n}\n\n#smush-metabox-inside-wrapper [data-tooltip]:before {\n\tmargin-left: -280px;\n}\n\n/* Triangle hack to make tooltip look like a speech bubble */\n#smush-metabox-inside-wrapper [data-tooltip]:after,\n.wpo-fieldgroup [data-tooltip]:after {\n\tposition: absolute;\n\tbottom: 150%;\n\tleft: 50%;\n\tmargin-left: -5px;\n\twidth: 0;\n\tborder-top: 5px solid #000;\n\tborder-top: 5px solid hsla(0, 0%, 20%, 0.9);\n\tborder-right: 5px solid transparent;\n\tborder-left: 5px solid transparent;\n\tcontent: \" \";\n\tfont-size: 0;\n\tline-height: 0;\n}\n\n/* Show tooltip content on hover */\n#smush-metabox-inside-wrapper [data-tooltip]:hover:before,\n#smush-metabox-inside-wrapper [data-tooltip]:hover:after,\n.wpo-fieldgroup [data-tooltip]:hover:before,\n.wpo-fieldgroup [data-tooltip]:hover:after,\n#smush-metabox-inside-wrapper [data-tooltip]:focus:before,\n#smush-metabox-inside-wrapper [data-tooltip]:focus:after,\n.wpo-fieldgroup [data-tooltip]:focus:before,\n.wpo-fieldgroup [data-tooltip]:focus:after {\n\tvisibility: visible;\n\t-ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\";\n\tfilter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);\n\topacity: 1;\n}\n\n/**\n * Animation needed for smush\n */\n\n@keyframes checkmark {\n\n\t0% {\n\t\theight: 0;\n\t\twidth: 0;\n\t\topacity: 1;\n\t}\n\n\t20% {\n\t\theight: 0;\n\t\twidth: 12.5px;\n\t\topacity: 1;\n\t}\n\n\t40% {\n\t\theight: 25px;\n\t\twidth: 12.5px;\n\t\topacity: 1;\n\t}\n\n\t100% {\n\t\theight: 25px;\n\t\twidth: 12.5px;\n\t\topacity: 1;\n\t}\n\n}\n\n@keyframes animate-stripes {\n\n\t0% {\n\t\tbackground-position: 0 0;\n\t}\n\n\t100% {\n\t\tbackground-position: 60px 0;\n\t}\n\n}\n\n@keyframes animate-stripes {\n\n\t0% {\n\t\tbackground-position: 0 0;\n\t}\n\n\t100% {\n\t\tbackground-position: 60px 0;\n\t}\n\n}\n\n#wpo_smush_restore_all_compressed_images_btn + span > span {\n\tline-height: 28px;\n}\n"]}
css/smush.css CHANGED
@@ -408,6 +408,7 @@ span#wpo_smush_delete_backup_done {
408
 
409
  .wpo-fieldgroup .button.wpo-toggle-advanced-options.opened .wpo-toggle-advanced-options__text-hide {
410
  display: inline-block;
 
411
  }
412
 
413
  .wpo-fieldgroup .button.wpo-toggle-advanced-options.opened::before {
408
 
409
  .wpo-fieldgroup .button.wpo-toggle-advanced-options.opened .wpo-toggle-advanced-options__text-hide {
410
  display: inline-block;
411
+ margin-bottom: 20px;
412
  }
413
 
414
  .wpo-fieldgroup .button.wpo-toggle-advanced-options.opened::before {
css/{wp-optimize-admin-3-2-3.min.css → wp-optimize-admin-3-2-5.min.css} RENAMED
@@ -1,2 +1,2 @@
1
  .wpo_hidden{display:none !important}.wpo_info{background:#FFF;color:#444;font-family:-apple-system,"BlinkMacSystemFont","Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;margin:2em auto;padding:1em 2em;max-width:700px;box-shadow:0 1px 3px rgba(0,0,0,0.13)}#wp-optimize-wrap .widefat thead th,#wp-optimize-wrap .widefat thead td{border-bottom:1px solid #e1e1e1}#wp-optimize-wrap .widefat td,#wp-optimize-wrap .widefat th{padding:8px 10px}.wpo_primary_big{padding:4px 6px !important;font-size:22px !important;min-height:34px;min-width:200px}.wpo_section{clear:both;padding:0;margin:0}.wp-optimize-settings{margin-bottom:16px}.wp-optimize-settings td>label{font-weight:bold;display:block;margin-bottom:8px}.wpo_col{display:block;float:left;margin:1% 0 1% 1%}.wpo_col:first-child{margin-left:0}.wpo_group:before,.wpo_group:after{content:"";display:table}.wpo_group:after{clear:both}.wpo_half_width{width:48%}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:65.3%}.wpo_span_1_of_3{width:32.1%}#wp-optimize-wrap .nav-tab-wrapper{margin:0}@media screen and (min-width:549px){.show_on_default_sizes{display:block !important}.show_on_mobile_sizes{display:none !important}}@media screen and (max-width:548px){.show_on_default_sizes{display:none !important}.show_on_mobile_sizes{display:block !important}}@media screen and (max-width:768px){.wpo_col{margin:1% 0}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:100%}.wpo_span_1_of_3{width:100%}.wpo_half_width{width:100%}}.wp-optimize-setting-is-sensitive td>label::before{content:"\f534";font-family:'dashicons';display:inline-block;margin-right:6px;font-style:normal;line-height:1;vertical-align:middle;width:20px;font-size:18px;height:20px;text-align:center;color:#72777c}.wpo-run-optimizations__container{margin-bottom:15px}.wp-optimize-optimizations-table-placeholder{min-height:80px}td.wp-optimize-settings-optimization-checkbox{width:18px;padding-left:4px;padding-right:0}.wp-optimize-settings-optimization-checkbox input{margin:0;padding:0}#retention-period,#revisions-count{width:60px}.wp-optimize-settings-optimization-info{font-size:80%;font-style:italic}img.addons{display:block;margin-left:auto;margin-right:auto;margin-bottom:20px;max-height:44px;height:auto;max-width:100%}.wpo_spinner{width:18px;height:18px;padding-left:10px;display:none;position:relative;top:4px}.optimization_spinner{width:20px;height:20px}#wp-optimize-auto-options{margin:20px 0 0 28px}.display-none{display:none}.visibility-hidden{visibility:hidden}.margin-one-percent{margin:1%}#save_done,.save-done{color:#d94f00;font-size:220% !important}.wp-optimize-settings-optimization-info a{text-decoration:underline}.wp-optimize-settings-optimization-run-spinner{position:relative;top:2px}@media screen and (min-width:782px){td.wp-optimize-settings-optimization-run{width:180px;padding-top:16px}}#wpoptimize_table_list .tablesorter-filter-row{display:none !important}#wpoptimize_table_list .optimization_spinner{position:relative;top:2px;left:5px}#wpoptimize_table_list .optimization_spinner.visibility-hidden{display:none}#wpoptimize_table_list_filter{width:100%;margin-bottom:15px}#wpoptimize_table_list_tables_not_found{display:none;margin:20px 0}div#wpoptimize_table_list_tables_not_found+h3{margin-top:30px}#wpoptimize_table_list tr th:first-child,#wpoptimize_table_list tr td:first-child{display:none}#wpoptimize_table_list tr td.no-table{display:table-cell !important;background:#fb8787;font-weight:bold}#optimize_form .select2-container,#wp-optimize-auto-options .select2-container{width:50% !important;top:-5px;height:40px;margin-left:10px}#wpoptimize_table_list .optimization_done_icon{color:#009b24;font-size:200%;display:inline-block;position:relative}#wpo_sitelist_show_moreoptions_cron{font-size:13px;line-height:1.5;letter-spacing:1px}#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3{display:inline-block}.wpo_remove_selected_sizes_btn__container{margin-top:20px}.unused-image-sizes__label{display:block;line-height:1.6}@media(max-width:782px){.unused-image-sizes__label{margin-left:30px;margin-bottom:15px;line-height:1;word-break:break-word}.unused-image-sizes__label input[type=checkbox]{margin-left:-30px}body.rtl .unused-image-sizes__label{margin-right:30px;margin-left:0}body.rtl .unused-image-sizes__label input[type=checkbox]{margin-left:4px;margin-right:-30px}}#wp-optimize-nav-tab-contents-tables a{vertical-align:middle}#wpo_sitelist_moreoptions,#wpo_sitelist_moreoptions_cron{margin:4px 16px 6px 0;border:1px dotted;padding:6px 10px;max-height:300px;overflow-y:scroll;overflow-x:hidden}#wpo_sitelist_moreoptions{max-height:150px;margin-right:0}#wpo_settings_sites_list li,#wpo_settings_sites_list li a{font-size:13px;line-height:1.5}#wpo_sitelist_moreoptions_cron li{padding-left:20px}#wpo_import_error_message{display:none;color:#9b0000}#wpo_import_success_message{display:none;color:#46b450}#wp-optimize-logging-options{margin-top:10px}.wpo_logging_header{font-weight:bold;border-top:1px solid #333;border-bottom:1px solid #333;padding:5px 0;margin:0}.wpo_logging_row{border-bottom:1px solid #a1a2a3;padding:5px 0}.wpo_logging_logger_title,.wpo_logging_options_title,.wpo_logging_status_title,.wpo_logging_actions_title,.wpo_logging_logger_row,.wpo_logging_options_row,.wpo_logging_status_row,.wpo_logging_actions_row{display:inline-block;vertical-align:middle}.wpo_logging_logger_title,.wpo_logging_logger_row{width:38%}.wpo_logging_options_title,.wpo_logging_options_row{width:44%}.wpo_logging_status_title,.wpo_logging_status_row{width:8%}.wpo_logging_actions_title,.wpo_logging_actions_row{width:7%}.wpo_logging_actions_row{text-align:right}.wpo_logging_options_row{word-wrap:break-word}.wpo_logging_actions_row .dashicons-no-alt,.wpo_add_logger_form .dashicons-no-alt{background-color:#f06666;color:#FFF;width:20px;height:20px;border-radius:20px;display:inline-block;cursor:pointer;margin-left:5px}.wpo_add_logger_form .dashicons-no-alt{margin-top:12px;margin-right:10px;float:right}.wpo_logger_type{width:90%;margin-top:10px}.wpo_logger_addition_option{width:100%;margin-top:5px}.wpo_alert_notice{background-color:#f06666;color:#FFF;padding:1em;display:block;margin-bottom:10px;border-radius:5px}.wpo_error_field{border-color:#f06666 !important}.save_settings_reminder{display:none;color:#333;padding:15px 20px;background-color:#f0a5a4;border-radius:3px;margin:15px 0}#wpo_remove_selected_sizes{margin-top:20px}.wpo_unused_images_buttons_wrap{float:right;margin-right:20px}.wpo_unused_images_container h3{min-width:150px}#wpo_unused_images,#wpo_smush_images_grid{max-height:500px;overflow-y:auto}#wpo_unused_images a{outline:0}#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup{margin-left:1%}.run-single-table-delete{margin-top:3px}.wpo-confirm h4 span.table-name{font-style:italic;display:inline-block;background:#efefef;padding:3px 7px;border-radius:4px}#wpo_browser_cache_output,#wpo_gzip_compression_output,#wpo_advanced_cache_output{background:#f0f0f0;padding:10px;border:1px solid #CCC;white-space:pre-wrap}#wpo_gzip_compression_error_message,.wpo-error{color:#9b0000}.notice.wpo-error__enabling-cache{white-space:pre-wrap;margin-bottom:15px}.notice.wpo-warnings__enabling-cache{margin-bottom:15px}.notice.wpo-warnings__enabling-cache ul,.notice.wpo-warnings__enabling-cache ul li{list-style:inside disc}a.loading.wpo-refresh-gzip-status{color:rgba(68,68,68,0.5);text-decoration:none}a.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none{display:inline-block}#wpo_browser_cache_expire_days,#wpo_browser_cache_expire_hours{width:50px}.wpo-enabled .wpo-disabled{display:none}.wpo-disabled .wpo-enabled{display:none}.wpo-button-wrap{margin-top:10px}body[class*="toplevel_page_WP-Optimize"] #wpbody,body[class*="wp-optimize_page_"] #wpbody{padding-right:15px}@media screen and (max-width:768px){body[class*="toplevel_page_WP-Optimize"] #wpbody,body[class*="wp-optimize_page_"] #wpbody{padding-right:0}}body.toplevel_page_WP-Optimize.rtl #wpbody{padding-left:15px;padding-right:0}@media screen and (max-width:768px){body.toplevel_page_WP-Optimize.rtl #wpbody{padding-left:10px}}body[class*="toplevel_page_WP-Optimize"] #wpbody-content,body[class*="wp-optimize_page_"] #wpbody-content{padding-top:80px}@media(max-width:600px){body[class*="toplevel_page_WP-Optimize"] #wpbody-content,body[class*="wp-optimize_page_"] #wpbody-content{padding-top:0}}@media(min-width:820px){body[class*="toplevel_page_WP-Optimize"] #wpbody-content,body[class*="wp-optimize_page_"] #wpbody-content{padding-top:100px}}#wp-optimize-wrap{position:relative;padding-top:20px}@media(max-width:600px){#wp-optimize-wrap{padding-top:110px}}@media(max-width:782px){#wp-optimize-wrap{margin-right:0}}.wpo-main-header{height:77px;position:fixed;top:32px;left:160px;background:#FFF;right:0;z-index:9980}@media(min-width:820px){.wpo-main-header{height:105px}}.wpo-main-header .wpo-logo__container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;position:relative;height:100%;line-height:1;font-size:1rem;padding-left:50px;margin-left:10px}.wpo-main-header .wpo-logo{position:absolute;left:0;top:50%;transform:translateY(-50%);width:50px}.wpo-main-header .wpo-subheader{margin:0;font-weight:300;color:#72777c;line-height:1.3}@media(max-width:1080px){.wpo-main-header .wpo-subheader{display:none}}.wpo-main-header p.wpo-header-links{margin:0;font-size:.7rem;position:absolute;right:0;padding:6px 15px;background:#edeeef;border-bottom-left-radius:5px;z-index:1}.wpo-main-header p.wpo-header-links a{text-decoration:none}.wpo-main-header p.wpo-header-links .wpo-header-links__label{color:#82868b;position:absolute;right:100%;width:110px;text-align:right;padding-right:10px}@media(max-width:820px){.wpo-main-header p.wpo-header-links{display:none}}.wpo-main-header p.wpo-header-links__mobile{padding:10px;background:#edeeef;margin-bottom:0}@media(min-width:820px){.wpo-main-header p.wpo-header-links__mobile{display:none}}.wpo-main-header p.wpo-header-links__mobile a{display:inline-block;padding:4px;font-size:.8rem}.wpo-main-header p.wpo-header-links__mobile .wpo-header-links__label{color:#82868b}@media(max-width:600px){.wpo-main-header .wpo-logo__container strong{width:140px;display:inline-block}}@media(max-width:960px){body.auto-fold .wpo-main-header{left:36px}}@media(max-width:782px){body.auto-fold .wpo-main-header{left:0;top:-70px;position:absolute}}@media(max-width:600px){body.auto-fold .wpo-main-header{position:absolute;left:-10px;right:-10px;top:10px}}@media(max-width:600px){body.auto-fold #screen-meta+#wp-optimize-wrap .wpo-main-header{top:0}}@media(min-width:782px){body.folded .wpo-main-header{left:36px}}body.is-scrolled .wpo-main-header{box-shadow:0 5px 25px rgba(0,0,0,0.17)}body.rtl .wpo-main-header{right:160px;left:0}body.rtl .wpo-main-header .wpo-logo__container{padding-left:10px;padding-right:50px;margin-left:0;margin-right:10px}body.rtl .wpo-main-header .wpo-logo{position:absolute;left:auto;right:0}body.rtl .wpo-main-header p.wpo-header-links{right:auto;left:0;border-bottom-right-radius:5px;border-bottom-left-radius:0}body.rtl .wpo-main-header p.wpo-header-links .wpo-header-links__label{position:absolute;left:100%;right:auto;width:110px;text-align:left;padding-left:10px}@media(max-width:960px){body.rtl.auto-fold .wpo-main-header{right:36px}}@media(max-width:782px){body.rtl.auto-fold .wpo-main-header{right:0;top:46px}}@media(max-width:600px){body.rtl.auto-fold .wpo-main-header{position:absolute;left:-10px;right:-10px;top:10px}}@media(min-width:782px){body.rtl.folded .wpo-main-header{right:36px;left:0}}body.rtl .wpo-page{padding-right:0}@media(min-width:769px){}.wpo-page:not(.active){display:none}.wpo-introduction-notice{padding:15px 20px;margin-top:30px;margin-bottom:30px;background:#FFF url('../images/notices/logo-bg-notice.png') no-repeat 100% 100%}.wpo-introduction-notice h3{font-size:2em}.wpo-introduction-notice p:not(.font-size__normal){font-size:1.2em}.wpo-introduction-notice .wpo-introduction-notice__footer-links{padding-top:20px}.wpo-introduction-notice .wpo-introduction-notice__footer-links>a,.wpo-introduction-notice .wpo-introduction-notice__footer-links>span{display:inline-block;margin-left:5px;margin-right:5px}@media(min-width:1200px){.wpo-tab-postbox.right-col{width:350px;float:right;box-sizing:border-box;margin-top:3.1rem}.right-col+.wpo-main{float:left;box-sizing:border-box;width:calc(100% - 380px)}}@keyframes rotate{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@media(max-width:782px){#wp-optimize-wrap .button-large{display:block;width:100%}}#wp-optimize-wrap .red{color:#e07575}#wp-optimize-wrap div[id*="_notice"] div.updated,#wp-optimize-wrap>.notice{margin-left:0;margin-right:0}#wp-optimize-wrap textarea{width:100%;border-radius:5px;height:100px;min-height:100px;margin-top:10px;margin-bottom:10px}.notice.notice-error.wpo-warning,.notice.notice-warning.wpo-warning{margin-bottom:18px}.notice.notice-warning.wpo-warning p{padding-left:36px;position:relative}.notice.notice-warning.wpo-warning p>.dashicons{position:absolute;left:0;font-size:26px;top:50%;transform:translateY(-50%);height:26px;color:#ffb900}.button.button-block{display:block;width:100%;text-align:center}.wpo-refresh-button{float:right}.wpo-refresh-button:hover{cursor:pointer}.wpo-refresh-button .dashicons{text-decoration:none;line-height:inherit;font-size:inherit}*[class*="wpo-badge"]{display:inline-block;font-size:.8em;text-transform:uppercase;background:#f2f4f5;padding:3px 5px;line-height:1;border-radius:3px}.wpo-badge__new{background:#dbe3e6;color:#00689a}.wpo-first-child{margin-top:0}#save_done,.save-done{color:#009b24;font-size:250%}p.wpo-take-a-backup{display:inline-block;margin:0;line-height:1;padding-top:8px}@media(min-width:782px){.button ~ p.wpo-take-a-backup{margin-left:20px}}#wp-optimize-wrap .nav-tab-wrapper ~ .wp-optimize-nav-tab-contents>.postbox{border:0}#wp-optimize-wrap .nav-tab-wrapper ~ .wp-optimize-nav-tab-contents>.postbox>h3:first-child{margin-top:0}.wpo-p25,.postbox.wpo-tab-postbox{padding:25px}.wpo-tab-postbox>h3:first-child{margin-top:0}.wpo-fieldgroup{background:#f2f4f5;border-radius:8px;padding:20px}.wpo-fieldgroup:not(:last-child){margin-bottom:2em}.wpo-fieldgroup>*:first-child{margin-top:0}.wpo-fieldgroup>*:last-child{margin-bottom:0}.wpo-fieldgroup.premium-only{position:relative}.wpo-fieldgroup .switch+label{font-weight:600}.wpo-fieldgroup code,.wpo-fieldgroup pre.code{font-size:inherit;background:#d8dbdc;border-radius:3px}.wpo-fieldgroup pre.code{padding:10px}.wpo-fieldgroup fieldset label{display:block;margin-bottom:6px;line-height:20px}.wpo-fieldgroup__subgroup:not(:last-of-type){margin-bottom:20px}#wp-optimize-wrap .switch{position:relative;display:inline-block;width:38px;height:18px;margin-right:6px;box-sizing:border-box}#wp-optimize-wrap .switch input{opacity:0;width:0;height:0}#wp-optimize-wrap .switch .slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#f2f4f5;transition:.2s}#wp-optimize-wrap .switch .slider::before{position:absolute;content:"";height:8px;width:8px;left:2px;bottom:2px;background-color:#555d66;border:1px solid #555d66;transition:all .2s}#wp-optimize-wrap .switch .slider::after{content:'';display:block;position:absolute;height:4px;width:3px;right:4px;top:4px;border-radius:50%;border:1px solid #72777c;box-sizing:content-box}#wp-optimize-wrap .switch .slider.round{border-radius:23px;border:2px solid #555d66}#wp-optimize-wrap .switch .slider.round::before{border-radius:50%}#wp-optimize-wrap .switch input:checked+.slider{background:#0272aa;border-color:#0272aa}#wp-optimize-wrap .switch input:checked+.slider::before{background:#FFF;border-color:#FFF;transform:translateX(20px)}#wp-optimize-wrap .switch input:checked+.slider::after{content:'';display:block;position:absolute;height:6px;width:2px;left:7px;top:4px;background:#FFF;border:0}#wp-optimize-wrap .switch input:disabled+.slider,#wp-optimize-wrap .switch input:disabled:checked+.slider{background:transparentize(#555d66,0.5);border-color:#555d66;opacity:.3}#wp-optimize-wrap .switch input:focus+.slider{box-shadow:0 0 0 2px #f2f4f5,0 0 0 3px #555d66}#wp-optimize-wrap .switch-container{display:block;clear:both}#wp-optimize-wrap .switch-container label{line-height:1;vertical-align:middle}#wp-optimize-wrap .switch-container+small{margin-left:49px}#wp-optimize-wrap .switch-container [data-tooltip] .dashicons{transform:translateY(-3px)}#wp-optimize-wrap .wpo-fieldgroup>.switch-container:first-child{padding-top:0}label.wpo-label__bold{font-weight:600}.wpo-info{position:relative;display:inline-block}@media(max-width:480px){.wpo-info{display:block}}.wpo-info__content{opacity:0;visibility:hidden;position:absolute;top:100%;left:-25px;background:#FFF;padding:20px;width:380px;max-width:380px;z-index:5;box-shadow:0 11px 25px 0 rgba(0,0,0,0),0 11px 25px 3000px rgba(0,0,0,0);transition:.2s all}@media(max-width:480px){.wpo-info__content{width:auto}}span.wpo-info__close{display:none;margin-left:20px;color:#444}.wpo-info.opened span.wpo-info__close{display:inline-block}.wpo-info.opened .wpo-info__content{opacity:1;visibility:visible;box-shadow:0 11px 25px 0 rgba(0,0,0,0.3),0 11px 25px 3000px rgba(0,0,0,0.3)}.wpo-info.opened a.wpo-info__trigger{z-index:6}.wpo-info__content img,.wpo-info__content iframe{max-width:100%}a.wpo-info__trigger{display:inline-block;text-decoration:none;padding:10px;position:relative;background:#FFF;margin-left:-10px}a.wpo-info__trigger span.dashicons{text-decoration:none;vertical-align:middle}.wpo_section.wpo_group.wpo-feature-is-disabled .wpo-fieldgroup:not(.wpo-show){opacity:.5}.wpo_shade{display:block;position:absolute;left:0;right:0;top:0;bottom:0;width:100%;height:100%;z-index:9979;opacity:1;background-color:rgba(255,255,255,0.88)}.wpo_shade.hidden{display:none}.wpo_shade_inner{text-align:center;padding-top:80px}.wpo_shade_inner h4{font-size:2em}.wpo_shade_inner .dashicons.dashicons-update-alt{font-size:50px;height:50px;width:50px}.wpo-rotate{animation:rotate 1s linear infinite;transform-origin:50% 50%}.wpo-info.highlight-dashicons span.dashicons{color:green;font-weight:bold}#wp-optimize-wrap h2.nav-tab-wrapper{margin-bottom:0;border-bottom:0;position:relative}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active{border:0;background:transparent;margin:0;border-top:3px solid transparent;padding:7px 15px;color:#0272aa}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active .dashicons{display:block;margin:0 auto;color:#72777c;font-size:30px;width:30px;height:30px}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab span.menu-pill,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover span.menu-pill,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus span.menu-pill,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active span.menu-pill{display:inline-block;margin-left:6px;padding:4px;font-size:10px;line-height:1;border-radius:3px;font-weight:300;text-transform:uppercase;letter-spacing:.06em}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab span.menu-pill.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover span.menu-pill.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus span.menu-pill.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active span.menu-pill.premium-only{background:#0272aa;color:#FFF}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab span.menu-pill.disabled,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover span.menu-pill.disabled,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus span.menu-pill.disabled,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active span.menu-pill.disabled{background:#777;color:#FFF}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab span.menu-pill.hidden,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover span.menu-pill.hidden,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus span.menu-pill.hidden,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active span.menu-pill.hidden{display:none}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:hover,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus:active{background:#FFF;box-shadow:0 0 1px rgba(0,0,0,0.04);border-top-color:#0272aa}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:hover .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus:active .dashicons{color:#0272aa}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback{display:block;float:right;position:relative}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:hover,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus:active{position:relative}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:hover .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus:active .dashicons{display:inline-block;font-size:20px;height:18px;transform:translateY(4px)}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>div{display:none}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback:hover a.nav-tab::after{content:'';display:block;position:absolute;bottom:0;right:0;height:2px;width:100%;background-color:#0172aa}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback:hover>div{position:absolute;display:block;background:#FFF;padding:15px;right:0;top:100%;z-index:4;box-shadow:0 11px 25px 0 rgba(0,0,0,0.1);width:350px}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback:hover>div a{display:block;font-size:14px;font-weight:normal;padding:6px 3px;text-align:center}@media(max-width:782px){#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback{display:none}#wp-optimize-wrap h2.nav-tab-wrapper a:not(.nav-tab-active){display:none}}#wp-optimize-wrap h2.nav-tab-wrapper a[role="toggle-menu"]{display:block;float:right}@media(min-width:782px){#wp-optimize-wrap h2.nav-tab-wrapper a[role="toggle-menu"]{display:none}}#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active{text-align:right}#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active .dashicons{color:#b5b9be;font-size:18px;display:inline-block;height:auto;line-height:inherit;width:20px}@media(min-width:782px){#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active{position:absolute;bottom:14px;right:0;font-size:12px;font-weight:400;text-decoration:none;padding:0}#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active .dashicons{color:#b5b9be;font-size:18px;display:inline-block;height:auto;line-height:inherit;width:20px}}@media(max-width:782px){.wpo-mobile-menu-opened .wpo-main .wpo-tab-postbox{// display:none}.wpo-mobile-menu-opened h2.nav-tab-wrapper a{display:block;float:none}.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab{display:block !important}.wpo-mobile-menu-opened h2.nav-tab-wrapper a:not(.nav-tab-active){background:#f9f9f9 !important}.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active,.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active:focus{border-top:0;border-left:3px solid}.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active:focus .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a:focus .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a:hover .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a .dashicons{display:inline-block;line-height:inherit}.wpo-mobile-menu-opened h2.nav-tab-wrapper a[role="toggle-menu"]{display:none}}.wpo-pages-menu{position:absolute;bottom:0;right:0;display:none}@media(max-width:820px){.opened+.wpo-pages-menu{display:block;box-shadow:0 5px 25px rgba(0,0,0,0.17)}}@media(min-width:821px){.wpo-pages-menu{display:-ms-flexbox;display:flex;height:77px}}.wpo-pages-menu>a{text-decoration:none;position:relative;color:inherit;text-align:center;box-sizing:border-box;display:block;color:#555d66}@media(min-width:821px){.wpo-pages-menu>a{padding:0 8px;height:77px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center}.wpo-pages-menu>a>span{display:block;margin:0 auto}}@media(max-width:820px){.wpo-pages-menu>a{padding:15px;font-size:1.2em}}.wpo-pages-menu>a.active::after{content:'';display:block;position:absolute;bottom:0;left:0;width:100%;height:3px;background:#e46b1f;color:#191e23}@media(max-width:820px){.wpo-pages-menu>a.active::after{width:3px;height:100%}}@media(max-width:820px){.wpo-pages-menu>a.active{color:#e46b1f}}.wpo-pages-menu>a:hover{background:#f9f9f9;color:#191e23}.wpo-pages-menu span.separator{display:block;width:2px;background:#efefef;margin-top:18px;margin-bottom:18px;margin-right:5px;margin-left:5px}@media(max-width:820px){.wpo-pages-menu span.separator{width:80%;height:2px;margin:10px 10%}}@media(max-width:820px){.wpo-pages-menu{text-align:center;top:100%;width:100%;bottom:auto;background:#FFF}}body.rtl .wpo-pages-menu{left:0;right:auto}#wp-optimize-nav-page-menu{position:absolute;right:0;bottom:0;display:-ms-flexbox;display:flex;height:77px;-ms-flex-direction:column;flex-direction:column;padding:0 20px;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;text-decoration:none}#wp-optimize-nav-page-menu:not(.opened) .dashicons-no-alt{display:none}#wp-optimize-nav-page-menu.opened .dashicons-menu{display:none}@media(min-width:821px){#wp-optimize-nav-page-menu{display:none}}body.rtl #wp-optimize-nav-page-menu{right:auto;left:0}.wpo-dashboard-pages-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.wpo-dashboard-pages-menu[data-itemscount="1"] .wpo-dashboard-pages-menu__item,.wpo-dashboard-pages-menu[data-itemscount="2"] .wpo-dashboard-pages-menu__item,.wpo-dashboard-pages-menu[data-itemscount="3"] .wpo-dashboard-pages-menu__item{width:calc(33.333% - 13.33333px)}.wpo-dashboard-pages-menu[data-itemscount="4"] .wpo-dashboard-pages-menu__item{width:calc(25% - 15px)}.wpo-dashboard-pages-menu[data-itemscount="5"] .wpo-dashboard-pages-menu__item{width:calc(20% - 16px)}.wpo-dashboard-pages-menu[data-itemscount="6"] .wpo-dashboard-pages-menu__item{width:calc(16.66667% - 16.66667px)}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item{padding:20px;margin-right:20px;box-sizing:border-box;padding-bottom:60px;min-width:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item:last-child{margin-right:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item h3{margin-top:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item h3 .dashicons{color:#72777c;line-height:1;height:18px;margin-top:-2px;margin-right:10px}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item a{position:absolute;bottom:20px;left:20px;width:calc(100% - 40px) !important}@media(max-width:782px){.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item{width:100%;margin-right:0;padding-bottom:20px}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item a.button.button-large{width:auto !important;left:auto;bottom:auto;top:50%;transform:translateY(-50%);right:20px}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item h3{margin:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item p{display:none}}.updraft-ad-container.updated,.updraft-ad-container{margin-left:0;margin-right:0;position:relative;padding-right:80px}body[class*=WP-Optimize] .notice,body[class*=WP-Optimize] .error,body[class*=wp-optimize] .notice,body[class*=wp-optimize] .error{margin-left:0;margin-right:0}body.wp-core-ui.is-scrolled .wpo-main-error-notice{position:fixed;top:132px;left:160px;right:0;z-index:20;transition:.2s all}div#wpbody-content>.notice:not(.wpo-notice),div#wpbody-content>.warning:not(.wpo-notice),div#wpbody-content>.updated:not(.wpo-notice),div#wpbody-content>.error:not(.wpo-notice){display:none}.toplevel_page_WP-Optimize.rtl .notice,.toplevel_page_WP-Optimize.rtl div.updated,.toplevel_page_WP-Optimize.rtl div.error,.toplevel_page_WP-Optimize .notice,.toplevel_page_WP-Optimize div.updated,.toplevel_page_WP-Optimize div.error{margin-right:0}body.rtl .updraft-ad-container.updated,body.rtl .updraft-ad-container{padding-right:10px;padding-left:80px}.updraft_notice_container{padding:7px;display:-ms-flexbox;display:flex;-ms-flex-align:left;align-items:left;-ms-flex-direction:column;flex-direction:column;height:auto;overflow:hidden}.updraft_review_notice_container{padding:12px;display:-ms-flexbox;display:flex}.updraft_advert_content_left{float:none;width:65px}.updraft_advert_content_left_extra{float:none;width:100px;padding-right:15px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.updraft_advert_content_right{float:none;width:auto;overflow:hidden}.updraft_advert_bottom{margin:10px 0;padding:10px;font-size:140%;background-color:#FFF;border-color:#e6db55;border:1px solid;border-radius:4px}.updraft_advert_button_container{margin-bottom:10px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.updraft_advert_button_container .dashicons{margin-left:10px}.updraft-advert-dismiss{position:absolute;font-size:13px;top:5px;right:10px}body.rtl .updraft-advert-dismiss{left:10px;right:auto}h3.updraft_advert_heading{margin-top:5px !important;margin-bottom:5px !important}h4.updraft_advert_heading{margin-top:2px !important;margin-bottom:3px !important}.updraft_center_content{text-align:center;margin-bottom:5px}.updraft_notice_link{padding-left:5px}.updraft_text_center{text-align:center}.wpo-main-header+.updraft-ad-container,.wpo-main-header+.updated{margin-bottom:20px}.processed .updated{margin:0}@media screen and (min-width:560px){.updraft_notice_container{-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center}.updraft_advert_content_left,.updraft_advert_content_left_extra{float:left}}@media screen and (max-width:560px){body.rtl .updraft-ad-container.updated,body.rtl .updraft-ad-container{padding-right:10px;padding-left:10px}}@media screen and (max-width:768px){.wpo-main-header+.updraft-ad-container,.wpo-main-header+.updated{margin-right:0}}.wpo_unused_image,.wpo_smush_image{position:relative;margin:4px;width:calc(50% - 8px);text-align:center}@media(min-width:500px){.wpo_unused_image,.wpo_smush_image{width:calc(25% - 8px)}}@media(min-width:782px){.wpo_unused_image,.wpo_smush_image{width:calc(16.6666% - 8px)}}@media(min-width:1100px){.wpo_unused_image,.wpo_smush_image{width:calc(12.5% - 8px)}}.wpo_unused_image .wpo_unused_image__input,.wpo_smush_image .wpo_unused_image__input{position:absolute;top:10px;opacity:0;width:0;height:0}.wpo_unused_image label,.wpo_smush_image label{display:block;width:100%;position:relative;padding:1px;border:3px solid #f2f4f5;box-sizing:border-box}.wpo_unused_image label::before,.wpo_smush_image label::before{content:"";display:block;padding-top:100%}.wpo_unused_image label .thumbnail,.wpo_smush_image label .thumbnail{position:absolute;top:1px;left:1px;width:calc(100% - 2px);height:calc(100% - 2px);background-repeat:no-repeat;background-size:cover;background-position:50% 50%;overflow:hidden;background:rgba(220,220,220,0.2)}.wpo_unused_image label .thumbnail img,.wpo_smush_image label .thumbnail img{display:block;margin:0;max-height:100%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-webkit-user-select:none;-ms-user-select:none;user-select:none}.wpo_unused_image label span.dashicons,.wpo_smush_image label span.dashicons{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:25px;width:25px;opacity:.2}.wpo_unused_image .wpo_unused_image__input:checked+label,.wpo_unused_image.selected label,.wpo_smush_image .wpo_unused_image__input:checked+label,.wpo_smush_image.selected label{border-color:#0272aa}.wpo_unused_image:focus-within label,.wpo_smush_image:focus-within label{box-shadow:0 0 4px #0272aa}.wpo_unused_image a,.wpo_unused_image a.button,.wpo_unused_image a.button:active,.wpo_smush_image a,.wpo_smush_image a.button,.wpo_smush_image a.button:active{position:absolute;z-index:2;bottom:13px;left:50%;transform:translateX(-50%);display:none}.wpo_unused_image:hover a,.wpo_unused_image:hover a.button,.wpo_unused_image:hover a.button:active,.wpo_smush_image:hover a,.wpo_smush_image:hover a.button,.wpo_smush_image:hover a.button:active{display:inline-block}#wpo_unused_images,#wpo_unused_images_trash,#wpo_smush_images_grid{width:calc(100% + 8px);margin-left:-4px;margin-right:-4px;max-height:500px;overflow-y:auto;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative}#wpo_unused_images .wpo-fieldgroup,#wpo_unused_images_trash .wpo-fieldgroup,#wpo_smush_images_grid .wpo-fieldgroup{width:100%;margin:4px}#wpo_unused_images a,#wpo_unused_images_trash a{outline:0}.wpo-unused-images__premium-mask,.wpo-unused-image-sizes__premium-mask{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;background:linear-gradient(to bottom,rgba(255,255,255,0),rgba(255,255,255,0.85));display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.wpo-unused-image-sizes__premium-mask{background:linear-gradient(to bottom,rgba(255,255,255,0.3),rgba(255,255,255,0.85))}a.wpo-unused-images__premium-link{background:#FFF;display:inline-block;padding:10px;border-radius:3px;box-shadow:0 2px 8px rgba(0,0,0,0.3)}p.wpo-plugin-installed{color:#009b24}.wpo-repeater__add{display:inline-block;cursor:pointer;font-weight:bold;text-decoration:none}.wpo-repeater__add .dashicons{transform:translateY(-2px)}.wpo-plugin-family__premium h2{margin:0;padding:25px}.wpo-plugin-family__plugins{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:1px;padding-bottom:1px}.wpo-plugin-family__plugin{-ms-flex:auto;flex:auto;width:100%;padding:30px;box-sizing:border-box;border:1px solid #e3e4e7;margin-left:-1px;margin-bottom:-1px}@media(min-width:782px){.wpo-plugin-family__plugin{width:50%}.wpo-plugin-family__free .wpo-plugin-family__plugin{width:100%}}@media(max-width:1080px){.wpo-plugin-family__free .wpo-plugin-family__plugin{width:50%}}@media(max-width:782px){.wpo-plugin-family__free .wpo-plugin-family__plugin{width:100%}}div#wp-optimize-nav-tab-wpo_mayalso-may_also-contents .wpo-tab-postbox{padding:0}.wpo_feature_cont{width:64.5%}.wpo_plugin_family_cont{width:34.5%}@media(max-width:1080px){.wpo_feature_cont,.wpo_plugin_family_cont{width:100%;float:none;margin:0}}.wpo_feature_cont header,.wpo_plugin_family_cont header{padding:20px}@media(max-width:1080px){.wpo_feature_cont header,.wpo_plugin_family_cont header{padding:40px}}.wpo_feature_cont header h2,.wpo_plugin_family_cont header h2{margin:0}.wpo_feature_cont header p,.wpo_plugin_family_cont header p{margin-bottom:0}.wpo_feat_table,.wpo_feat_th,.wpo_feat_table td{border:0;border-collapse:collapse;background-color:white;font-size:120%;text-align:center}.wpo_feat_table td{border:1px solid #f1f1f1;border-bottom-width:4px;padding:15px}.wpo_feat_table td:nth-child(2),.wpo_feat_table td:nth-child(3){background:rgba(241,241,241,0.38)}.wpo_feat_table p{padding:0 10px;margin:5px 0;font-size:13px}.wpo_feat_table h4{margin:5px 0}.wpo_feat_table .dashicons{width:25px;height:25px;font-size:25px;line-height:1}.wpo_feat_table .dashicons-yes,.wpo_feat_table .updraft-yes{color:green}.wpo_feat_table .dashicons-no-alt,.wpo_feat_table .updraft-no{color:red}.wpo_feat_table tr.wpo-main-feature-row td{background:#f1f1f1;border-bottom-color:#fafafa}.wpo_feat_table tr.wpo-main-feature-row td img.wpo-premium-image{width:64px}.wpo-premium-image{display:none}@media screen and (min-width:720px){#wpoptimize_table_list_filter{width:40%}.wpo-premium-image{display:block;float:left;padding:16px 18px;width:30px;height:auto}}@media screen and (min-width:1220px){.wpo_feat_table td:nth-child(2),.wpo_feat_table td:nth-child(3){width:110px}}.other-plugin-title{text-decoration:none}@media screen and (max-width:782px){table.wpo_feat_table{display:block}table.wpo_feat_table tr{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}table.wpo_feat_table td{display:block}table.wpo_feat_table td:first-child{width:100%;border-bottom:0}table.wpo_feat_table td:not(:first-child){width:50%;box-sizing:border-box}table.wpo_feat_table td:first-child:empty{display:none}table.wpo_feat_table td[data-colname]::before{content:attr(data-colname);font-size:.8rem;color:#CCC;line-height:1}}.wpo-cache-feature-image{width:40px;padding:16px 14px}#wp-optimize-wrap .wp-list-table td{word-break:break-all}@media screen and (max-width:782px){#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody tr,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody th,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td{display:block}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td{padding:3px 8px 3px 35%;word-break:break-word;box-sizing:border-box}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td::before{color:#b5b9be}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead tr{display:block}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead th.column-primary{display:block;box-sizing:border-box}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead th:not(.column-primary){display:none !important}}body.rtl #wp-optimize-wrap .wpo-table-list-filter{text-align:left}@media screen and (max-width:782px){body.rtl #wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td{padding:3px 35% 3px 8px}}.tablesorter-headerRow th{vertical-align:top}th:not(.sorter-false) .tablesorter-header-inner{color:#0074ab}th:not(.sorter-false) .tablesorter-header-inner::after{content:'';font-family:'dashicons';font-size:20px;line-height:20px;height:20px;width:20px;display:none;vertical-align:bottom}th.tablesorter-header.tablesorter-headerAsc,th.tablesorter-header.tablesorter-headerDesc{font-weight:500;border-bottom-color:#0272aa}th.tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner::after,th.tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner::after{display:inline-block}th.tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner::after{content:"\f140"}th.tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner::after{content:"\f142"}th.tablesorter-header:focus{outline:0;box-shadow:0 0 3px rgba(0,116,171,0.78)}th.tablesorter-header:focus:not(.tablesorter-headerAsc):not(.tablesorter-headerDesc) .tablesorter-header-inner::after{content:"\f142";opacity:.5}.tablesorter.hasFilters tr.filtered{display:none}.wpo-text__dim .dashicons-info{margin-top:2px;margin-right:5px;border-radius:30px;background:#fff;color:#e07575}#page_cache_length_value{height:28px;position:relative;top:2px}#wp_optimize_preload_cache_status{margin-left:10px;display:inline-block;color:#82868b;font-size:smaller}.align-left{margin:10px 10px 0 0;float:left}textarea.cache-settings{display:block;clear:both;min-height:225px;overflow:scroll;min-width:75%;margin:10px 0}#wp-optimize-purge-cache,#wp-optimize-purge-cache ~ span,#wp-optimize-purge-cache ~ img{vertical-align:middle;top:auto}#wp-optimize-nav-tab-wpo_cache-cache-contents .wpo-error{font-size:12px}#wpo_browser_cache_error_message{padding-top:10px;padding-bottom:10px;margin-left:0;margin-bottom:10px}#wpo_browser_cache_error_message:empty{display:none}#wp-optimize-nav-tab-wpo_cache-advanced-contents label,#wp-optimize-nav-tab-wpo_cache-preload-contents label,#wp-optimize-nav-tab-wpo_cache-cache-contents label{font-weight:600}#wp-optimize-nav-tab-wpo_cache-advanced-contents label em,#wp-optimize-nav-tab-wpo_cache-preload-contents label em,#wp-optimize-nav-tab-wpo_cache-cache-contents label em{font-weight:normal}.wpo-gzip-already-enabled span.dashicons.dashicons-yes,.wpo-enabled>span.dashicons.dashicons-yes{font-size:40px;width:40px;height:40px;line-height:40px;vertical-align:middle;color:green}#wp-optimize-wrap .filename{display:inline-block;padding:6px 0}#wp-optimize-wrap .no-files-yet .filename{font-style:italic}#wp-optimize-wrap .processed{margin:0}#wp-optimize-wrap .processed .wpo_min_log{padding:8px;background:white;border:1px solid #cdcdcd;border-radius:4px;line-height:1.5em}#wp-optimize-wrap .processed .wpo_min_log ul{overflow-x:auto}#wp-optimize-wrap .processed .wpo_min_log ul li{white-space:nowrap}#wp-optimize-wrap .processed .wpo_min_log ul li.failed .wpo_min_file_url{color:#dc3232}#wp-optimize-wrap .processed .wpo_min_log ul li.disable-list-item{opacity:.5}#wp-optimize-wrap .processed .wpo_min_log h5{margin-top:0;margin-bottom:8px;border-bottom:1px solid #cdcdcd;padding-bottom:6px}#wp-optimize-wrap .processed .wpo_min_log .wpo_min_file_debug{color:#9c9c9c;display:inline-block}#wp-optimize-wrap .processed .wpo_min_log .wpo_min_file_debug::before{content:'—';display:inline-block;margin:0 10px}#wp-optimize-wrap .show-if-enabled{display:none}#wp-optimize-wrap .is-enabled .show-if-enabled{display:block}#wp-optimize-wrap .wpo-page:not(.is-enabled) .wpo-minify-features{display:none}#wp-optimize-wrap .wpo-page[data-whichpage="wpo_minify"]:not(.is-enabled) .nav-tab-wrapper>a:not([data-tab="status"]):not([role="toggle-menu"]){display:none}#wp-optimize-wrap .wpo-minify-features{padding-top:1em;margin-top:1em;border-top:1px solid #bbb}#wp-optimize-wrap .wpo-minify-features .wpo-fieldgroup__subgroup{margin-bottom:1em}#wp-optimize-wrap .wpo-fieldgroup__subgroup.wpo_min_enable_minify+.wpo-fieldgroup__subgroup{display:none}#wp-optimize-wrap .wpo-fieldgroup__subgroup.wpo_min_enable_minify.enabled+.wpo-fieldgroup__subgroup{display:block}#wp-optimize-wrap .wpo-fieldgroup__subgroup.wpo_min_enable_minify:not(.enabled){margin-bottom:0}#wp-optimize-wrap .defer-js-settings{padding-left:1em;border-left:2px solid #e2e2e2;margin-left:.5em}#wp-optimize-wrap .asset-preload-list{margin-bottom:1em}#wp-optimize-wrap .asset-preload-list td.asset-href{width:55%}#wp-optimize-wrap .asset-preload-list td.asset-crossorigin{width:10%}#wp-optimize-wrap .asset-preload-list tr.editing{display:none}#wp-optimize-wrap .asset-preload-list tr.form{box-shadow:0 2px 4px rgba(0,0,0,0.12941)}#wp-optimize-wrap .asset-preload-list tr.form td{background:#FFF;border:0;padding:10px}#wp-optimize-wrap .asset-preload-list tr.editing+tr.form td:last-child{border-radius:0 5px 5px 0}#wp-optimize-wrap .asset-preload-list tr.editing+tr.form td:first-child{position:relative}#wp-optimize-wrap .asset-preload-list tr.editing+tr.form td:first-child::before{content:'';width:10px;height:10px;background:#FFF;display:block;position:absolute;top:0;left:0;transform:translate(10px,-5px) rotate(45deg)}#wp-optimize-wrap .asset-preload-list tbody+tr.form td{padding-top:37px;position:relative}#wp-optimize-wrap .asset-preload-list tbody+tr.form td[data-label]::before{content:attr(data-label);position:absolute;top:1em;left:10px;text-transform:uppercase;color:#d0d2d4}#wp-optimize-wrap .asset-preload-list input#preload_href{width:100%}#wp-optimize-wrap .asset-preload-list select#preload_type{width:100%}#wp-optimize-wrap .asset-preload-list td.asset-preload-form--actions,#wp-optimize-wrap .asset-preload-list td.asset-edit{text-align:right}#wp-optimize-wrap .asset-preload-list td.asset-preload-form--actions button,#wp-optimize-wrap .asset-preload-list td.asset-edit button{display:inline-block}#wp-optimize-wrap .asset-preload-list td.asset-preload-form--actions button.wpo-asset--edit::after,#wp-optimize-wrap .asset-preload-list td.asset-edit button.wpo-asset--edit::after{content:'|';padding-left:6px;padding-right:4px}body.wpo-modal-is-opened{overflow:hidden}.wpo-modal--container{position:fixed;top:0;left:0;padding:3em;width:100%;height:100%;box-sizing:border-box;z-index:9999;overflow:auto}.wpo-modal{position:relative;background:#FFF;width:calc(100% - 6em);top:50%;transform:translateY(-50%);margin:0 auto;padding:2em;box-sizing:border-box;z-index:2}.wpo-modal>.wpo-modal--close{border:0;background:0;position:absolute;top:10px;right:10px;width:20px;height:20px;line-height:1;padding:0}.wpo-modal--bg{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.74);z-index:1}.wpo-confirm .wpo-modal--content>h3{font-size:2em}.wpo-confirm .wpo-modal--content>h3 .dashicons{font-size:30px;width:30px;height:30px;transform:translateY(-5px)}.wpo-confirm .wpo-modal--content>h3 .dashicons.dashicons-warning{color:#feb901}@media(min-width:780px){.power-tweaks--list{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}}.power-tweaks--list .wpo-power-tweak{width:100%}@media(min-width:780px){.power-tweaks--list .wpo-power-tweak{width:calc(25% - 1em);margin-right:1em}}@media(min-width:1080px){.power-tweaks--list .wpo-power-tweak{width:calc(33.33333% - 1em);margin-right:1em}}.power-tweaks--list .wpo-power-tweak{background:#f2f4f5;border-radius:1em;padding:1.5em;margin-bottom:1em;box-sizing:border-box}.power-tweaks--list .wpo-power-tweak h4{margin-top:0}.power-tweaks--list .wpo-power-tweak .description{margin-bottom:1em}.power-tweaks--list .wpo-power-tweak .details{padding:1em;background:#FFF;box-shadow:0 2px 3px rgba(0,0,0,0.1);margin-top:1em;margin-bottom:1em}.power-tweaks--list .wpo-power-tweak .actions{margin-top:1em;margin-bottom:1em}.power-tweaks--list .wpo-power-tweak .last-run,.power-tweaks--list .wpo-power-tweak .last-updated{margin-top:1em;font-size:.8em;color:#a9a9a9}.power-tweaks--list .wpo-power-tweak .tweak-is-running{display:none}.power-tweaks--list .wpo-power-tweak.running{position:relative}.power-tweaks--list .wpo-power-tweak.running .tweak-is-running{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;position:absolute;top:0;bottom:0;left:0;right:0;background:rgb(242,244,245,0.9);z-index:1;border-radius:1em;font-size:1.7em}.power-tweaks--list .wpo-power-tweak.running .tweak-is-running .spinner{visibility:visible}.power-tweaks--list a.show-faqs span.dashicons{font-size:inherit;height:auto;width:auto;line-height:inherit;text-decoration:none;margin-left:4px}
2
- /*# sourceMappingURL=wp-optimize-admin-3-2-3.min.css.map */
1
  .wpo_hidden{display:none !important}.wpo_info{background:#FFF;color:#444;font-family:-apple-system,"BlinkMacSystemFont","Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;margin:2em auto;padding:1em 2em;max-width:700px;box-shadow:0 1px 3px rgba(0,0,0,0.13)}#wp-optimize-wrap .widefat thead th,#wp-optimize-wrap .widefat thead td{border-bottom:1px solid #e1e1e1}#wp-optimize-wrap .widefat td,#wp-optimize-wrap .widefat th{padding:8px 10px}.wpo_primary_big{padding:4px 6px !important;font-size:22px !important;min-height:34px;min-width:200px}.wpo_section{clear:both;padding:0;margin:0}.wp-optimize-settings{margin-bottom:16px}.wp-optimize-settings td>label{font-weight:bold;display:block;margin-bottom:8px}.wpo_col{display:block;float:left;margin:1% 0 1% 1%}.wpo_col:first-child{margin-left:0}.wpo_group:before,.wpo_group:after{content:"";display:table}.wpo_group:after{clear:both}.wpo_half_width{width:48%}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:65.3%}.wpo_span_1_of_3{width:32.1%}#wp-optimize-wrap .nav-tab-wrapper{margin:0}@media screen and (min-width:549px){.show_on_default_sizes{display:block !important}.show_on_mobile_sizes{display:none !important}}@media screen and (max-width:548px){.show_on_default_sizes{display:none !important}.show_on_mobile_sizes{display:block !important}}@media screen and (max-width:768px){.wpo_col{margin:1% 0}.wpo_span_3_of_3{width:100%}.wpo_span_2_of_3{width:100%}.wpo_span_1_of_3{width:100%}.wpo_half_width{width:100%}}.wp-optimize-setting-is-sensitive td>label::before{content:"\f534";font-family:'dashicons';display:inline-block;margin-right:6px;font-style:normal;line-height:1;vertical-align:middle;width:20px;font-size:18px;height:20px;text-align:center;color:#72777c}.wpo-run-optimizations__container{margin-bottom:15px}.wp-optimize-optimizations-table-placeholder{min-height:80px}td.wp-optimize-settings-optimization-checkbox{width:18px;padding-left:4px;padding-right:0}.wp-optimize-settings-optimization-checkbox input{margin:0;padding:0}#retention-period,#revisions-count{width:60px}.wp-optimize-settings-optimization-info{font-size:80%;font-style:italic}img.addons{display:block;margin-left:auto;margin-right:auto;margin-bottom:20px;max-height:44px;height:auto;max-width:100%}.wpo_spinner{width:18px;height:18px;padding-left:10px;display:none;position:relative;top:4px}.optimization_spinner{width:20px;height:20px}#wp-optimize-auto-options{margin:20px 0 0 28px}.display-none{display:none}.visibility-hidden{visibility:hidden}.margin-one-percent{margin:1%}#save_done,.save-done{color:#d94f00;font-size:220% !important}.wp-optimize-settings-optimization-info a{text-decoration:underline}.wp-optimize-settings-optimization-run-spinner{position:relative;top:2px}@media screen and (min-width:782px){td.wp-optimize-settings-optimization-run{width:180px;padding-top:16px}}#wpoptimize_table_list .tablesorter-filter-row{display:none !important}#wpoptimize_table_list .optimization_spinner{position:relative;top:2px;left:5px}#wpoptimize_table_list .optimization_spinner.visibility-hidden{display:none}#wpoptimize_table_list_filter{width:100%;margin-bottom:15px}#wpoptimize_table_list_tables_not_found{display:none;margin:20px 0}div#wpoptimize_table_list_tables_not_found+h3{margin-top:30px}#wpoptimize_table_list tr th:first-child,#wpoptimize_table_list tr td:first-child{display:none}#wpoptimize_table_list tr td.no-table{display:table-cell !important;background:#fb8787;font-weight:bold}#optimize_form .select2-container,#wp-optimize-auto-options .select2-container{width:50% !important;top:-5px;height:40px;margin-left:10px}#wpoptimize_table_list .optimization_done_icon{color:#009b24;font-size:200%;display:inline-block;position:relative}#wpo_sitelist_show_moreoptions_cron{font-size:13px;line-height:1.5;letter-spacing:1px}#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3{display:inline-block}.wpo_remove_selected_sizes_btn__container{margin-top:20px}.unused-image-sizes__label{display:block;line-height:1.6}@media(max-width:782px){.unused-image-sizes__label{margin-left:30px;margin-bottom:15px;line-height:1;word-break:break-word}.unused-image-sizes__label input[type=checkbox]{margin-left:-30px}body.rtl .unused-image-sizes__label{margin-right:30px;margin-left:0}body.rtl .unused-image-sizes__label input[type=checkbox]{margin-left:4px;margin-right:-30px}}#wp-optimize-nav-tab-contents-tables a{vertical-align:middle}#wpo_sitelist_moreoptions,#wpo_sitelist_moreoptions_cron{margin:4px 16px 6px 0;border:1px dotted;padding:6px 10px;max-height:300px;overflow-y:scroll;overflow-x:hidden}#wpo_sitelist_moreoptions{max-height:150px;margin-right:0}#wpo_settings_sites_list li,#wpo_settings_sites_list li a{font-size:13px;line-height:1.5}#wpo_sitelist_moreoptions_cron li{padding-left:20px}#wpo_import_error_message{display:none;color:#9b0000}#wpo_import_success_message{display:none;color:#46b450}#wp-optimize-logging-options{margin-top:10px}.wpo_logging_header{font-weight:bold;border-top:1px solid #333;border-bottom:1px solid #333;padding:5px 0;margin:0}.wpo_logging_row{border-bottom:1px solid #a1a2a3;padding:5px 0}.wpo_logging_logger_title,.wpo_logging_options_title,.wpo_logging_status_title,.wpo_logging_actions_title,.wpo_logging_logger_row,.wpo_logging_options_row,.wpo_logging_status_row,.wpo_logging_actions_row{display:inline-block;vertical-align:middle}.wpo_logging_logger_title,.wpo_logging_logger_row{width:38%}.wpo_logging_options_title,.wpo_logging_options_row{width:44%}.wpo_logging_status_title,.wpo_logging_status_row{width:8%}.wpo_logging_actions_title,.wpo_logging_actions_row{width:7%}.wpo_logging_actions_row{text-align:right}.wpo_logging_options_row{word-wrap:break-word}.wpo_logging_actions_row .dashicons-no-alt,.wpo_add_logger_form .dashicons-no-alt{background-color:#f06666;color:#FFF;width:20px;height:20px;border-radius:20px;display:inline-block;cursor:pointer;margin-left:5px}.wpo_add_logger_form .dashicons-no-alt{margin-top:12px;margin-right:10px;float:right}.wpo_logger_type{width:90%;margin-top:10px}.wpo_logger_addition_option{width:100%;margin-top:5px}.wpo_alert_notice{background-color:#f06666;color:#FFF;padding:1em;display:block;margin-bottom:10px;border-radius:5px}.wpo_error_field{border-color:#f06666 !important}.save_settings_reminder{display:none;color:#333;padding:15px 20px;background-color:#f0a5a4;border-radius:3px;margin:15px 0}#wpo_remove_selected_sizes{margin-top:20px}.wpo_unused_images_buttons_wrap{float:right;margin-right:20px}.wpo_unused_images_container h3{min-width:150px}#wpo_unused_images,#wpo_smush_images_grid{max-height:500px;overflow-y:auto}#wpo_unused_images a{outline:0}#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup{margin-left:1%}.run-single-table-delete{margin-top:3px}.wpo-confirm h4 span.table-name{font-style:italic;display:inline-block;background:#efefef;padding:3px 7px;border-radius:4px}#wpo_browser_cache_output,#wpo_gzip_compression_output,#wpo_advanced_cache_output{background:#f0f0f0;padding:10px;border:1px solid #CCC;white-space:pre-wrap}#wpo_gzip_compression_error_message,.wpo-error{color:#9b0000}.notice.wpo-error__enabling-cache{white-space:pre-wrap;margin-bottom:15px}.notice.wpo-warnings__enabling-cache{margin-bottom:15px}.notice.wpo-warnings__enabling-cache ul,.notice.wpo-warnings__enabling-cache ul li{list-style:inside disc}a.loading.wpo-refresh-gzip-status{color:rgba(68,68,68,0.5);text-decoration:none}a.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none{display:inline-block}#wpo_browser_cache_expire_days,#wpo_browser_cache_expire_hours{width:50px}.wpo-enabled .wpo-disabled{display:none}.wpo-disabled .wpo-enabled{display:none}.wpo-button-wrap{margin-top:10px}body[class*="toplevel_page_WP-Optimize"] #wpbody,body[class*="wp-optimize_page_"] #wpbody{padding-right:15px}@media screen and (max-width:768px){body[class*="toplevel_page_WP-Optimize"] #wpbody,body[class*="wp-optimize_page_"] #wpbody{padding-right:0}}body.toplevel_page_WP-Optimize.rtl #wpbody{padding-left:15px;padding-right:0}@media screen and (max-width:768px){body.toplevel_page_WP-Optimize.rtl #wpbody{padding-left:10px}}body[class*="toplevel_page_WP-Optimize"] #wpbody-content,body[class*="wp-optimize_page_"] #wpbody-content{padding-top:80px}@media(max-width:600px){body[class*="toplevel_page_WP-Optimize"] #wpbody-content,body[class*="wp-optimize_page_"] #wpbody-content{padding-top:0}}@media(min-width:820px){body[class*="toplevel_page_WP-Optimize"] #wpbody-content,body[class*="wp-optimize_page_"] #wpbody-content{padding-top:100px}}#wp-optimize-wrap{position:relative;padding-top:20px}@media(max-width:600px){#wp-optimize-wrap{padding-top:110px}}@media(max-width:782px){#wp-optimize-wrap{margin-right:0}}.wpo-main-header{height:77px;position:fixed;top:32px;left:160px;background:#FFF;right:0;z-index:9980}@media(min-width:820px){.wpo-main-header{height:105px}}.wpo-main-header .wpo-logo__container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;position:relative;height:100%;line-height:1;font-size:1rem;padding-left:50px;margin-left:10px}.wpo-main-header .wpo-logo{position:absolute;left:0;top:50%;transform:translateY(-50%);width:50px}.wpo-main-header .wpo-subheader{margin:0;font-weight:300;color:#72777c;line-height:1.3}@media(max-width:1080px){.wpo-main-header .wpo-subheader{display:none}}.wpo-main-header p.wpo-header-links{margin:0;font-size:.7rem;position:absolute;right:0;padding:6px 15px;background:#edeeef;border-bottom-left-radius:5px;z-index:1}.wpo-main-header p.wpo-header-links a{text-decoration:none}.wpo-main-header p.wpo-header-links .wpo-header-links__label{color:#82868b;position:absolute;right:100%;width:110px;text-align:right;padding-right:10px}@media(max-width:820px){.wpo-main-header p.wpo-header-links{display:none}}.wpo-main-header p.wpo-header-links__mobile{padding:10px;background:#edeeef;margin-bottom:0}@media(min-width:820px){.wpo-main-header p.wpo-header-links__mobile{display:none}}.wpo-main-header p.wpo-header-links__mobile a{display:inline-block;padding:4px;font-size:.8rem}.wpo-main-header p.wpo-header-links__mobile .wpo-header-links__label{color:#82868b}@media(max-width:600px){.wpo-main-header .wpo-logo__container strong{width:140px;display:inline-block}}@media(max-width:960px){body.auto-fold .wpo-main-header{left:36px}}@media(max-width:782px){body.auto-fold .wpo-main-header{left:0;top:-70px;position:absolute}}@media(max-width:600px){body.auto-fold .wpo-main-header{position:absolute;left:-10px;right:-10px;top:10px}}@media(max-width:600px){body.auto-fold #screen-meta+#wp-optimize-wrap .wpo-main-header{top:0}}@media(min-width:782px){body.folded .wpo-main-header{left:36px}}body.is-scrolled .wpo-main-header{box-shadow:0 5px 25px rgba(0,0,0,0.17)}body.rtl .wpo-main-header{right:160px;left:0}body.rtl .wpo-main-header .wpo-logo__container{padding-left:10px;padding-right:50px;margin-left:0;margin-right:10px}body.rtl .wpo-main-header .wpo-logo{position:absolute;left:auto;right:0}body.rtl .wpo-main-header p.wpo-header-links{right:auto;left:0;border-bottom-right-radius:5px;border-bottom-left-radius:0}body.rtl .wpo-main-header p.wpo-header-links .wpo-header-links__label{position:absolute;left:100%;right:auto;width:110px;text-align:left;padding-left:10px}@media(max-width:960px){body.rtl.auto-fold .wpo-main-header{right:36px}}@media(max-width:782px){body.rtl.auto-fold .wpo-main-header{right:0;top:46px}}@media(max-width:600px){body.rtl.auto-fold .wpo-main-header{position:absolute;left:-10px;right:-10px;top:10px}}@media(min-width:782px){body.rtl.folded .wpo-main-header{right:36px;left:0}}body.rtl .wpo-page{padding-right:0}@media(min-width:769px){}.wpo-page:not(.active){display:none}.wpo-introduction-notice{padding:15px 20px;margin-top:30px;margin-bottom:30px;background:#FFF url('../images/notices/logo-bg-notice.png') no-repeat 100% 100%}.wpo-introduction-notice h3{font-size:2em}.wpo-introduction-notice p:not(.font-size__normal){font-size:1.2em}.wpo-introduction-notice .wpo-introduction-notice__footer-links{padding-top:20px}.wpo-introduction-notice .wpo-introduction-notice__footer-links>a,.wpo-introduction-notice .wpo-introduction-notice__footer-links>span{display:inline-block;margin-left:5px;margin-right:5px}@media(min-width:1200px){.wpo-tab-postbox.right-col{width:350px;float:right;box-sizing:border-box;margin-top:3.1rem}.right-col+.wpo-main{float:left;box-sizing:border-box;width:calc(100% - 380px)}}@keyframes rotate{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@media(max-width:782px){#wp-optimize-wrap .button-large{display:block;width:100%}}#wp-optimize-wrap .red{color:#e07575}#wp-optimize-wrap div[id*="_notice"] div.updated,#wp-optimize-wrap>.notice{margin-left:0;margin-right:0}#wp-optimize-wrap textarea{width:100%;border-radius:5px;height:100px;min-height:100px;margin-top:10px;margin-bottom:10px}.notice.notice-error.wpo-warning,.notice.notice-warning.wpo-warning{margin-bottom:18px}.notice.notice-warning.wpo-warning p{padding-left:36px;position:relative}.notice.notice-warning.wpo-warning p>.dashicons{position:absolute;left:0;font-size:26px;top:50%;transform:translateY(-50%);height:26px;color:#ffb900}.button.button-block{display:block;width:100%;text-align:center}.wpo-refresh-button{float:right}.wpo-refresh-button:hover{cursor:pointer}.wpo-refresh-button .dashicons{text-decoration:none;line-height:inherit;font-size:inherit}*[class*="wpo-badge"]{display:inline-block;font-size:.8em;text-transform:uppercase;background:#f2f4f5;padding:3px 5px;line-height:1;border-radius:3px}.wpo-badge__new{background:#dbe3e6;color:#00689a}.wpo-first-child{margin-top:0}#save_done,.save-done{color:#009b24;font-size:250%}p.wpo-take-a-backup{display:inline-block;margin:0;line-height:1;padding-top:8px}@media(min-width:782px){.button ~ p.wpo-take-a-backup{margin-left:20px}}#wp-optimize-wrap .nav-tab-wrapper ~ .wp-optimize-nav-tab-contents>.postbox{border:0}#wp-optimize-wrap .nav-tab-wrapper ~ .wp-optimize-nav-tab-contents>.postbox>h3:first-child{margin-top:0}.wpo-p25,.postbox.wpo-tab-postbox{padding:25px}.wpo-tab-postbox>h3:first-child{margin-top:0}.wpo-fieldgroup{background:#f2f4f5;border-radius:8px;padding:20px}.wpo-fieldgroup:not(:last-child){margin-bottom:2em}.wpo-fieldgroup>*:first-child{margin-top:0}.wpo-fieldgroup>*:last-child{margin-bottom:0}.wpo-fieldgroup.premium-only{position:relative}.wpo-fieldgroup .switch+label{font-weight:600}.wpo-fieldgroup code,.wpo-fieldgroup pre.code{font-size:inherit;background:#d8dbdc;border-radius:3px}.wpo-fieldgroup pre.code{padding:10px}.wpo-fieldgroup fieldset label{display:block;margin-bottom:6px;line-height:20px}.wpo-fieldgroup__subgroup:not(:last-of-type){margin-bottom:20px}#wp-optimize-wrap .switch{position:relative;display:inline-block;width:38px;height:18px;margin-right:6px;box-sizing:border-box}#wp-optimize-wrap .switch input{opacity:0;width:0;height:0}#wp-optimize-wrap .switch .slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#f2f4f5;transition:.2s}#wp-optimize-wrap .switch .slider::before{position:absolute;content:"";height:8px;width:8px;left:2px;bottom:2px;background-color:#555d66;border:1px solid #555d66;transition:all .2s}#wp-optimize-wrap .switch .slider::after{content:'';display:block;position:absolute;height:4px;width:3px;right:4px;top:4px;border-radius:50%;border:1px solid #72777c;box-sizing:content-box}#wp-optimize-wrap .switch .slider.round{border-radius:23px;border:2px solid #555d66}#wp-optimize-wrap .switch .slider.round::before{border-radius:50%}#wp-optimize-wrap .switch input:checked+.slider{background:#0272aa;border-color:#0272aa}#wp-optimize-wrap .switch input:checked+.slider::before{background:#FFF;border-color:#FFF;transform:translateX(20px)}#wp-optimize-wrap .switch input:checked+.slider::after{content:'';display:block;position:absolute;height:6px;width:2px;left:7px;top:4px;background:#FFF;border:0}#wp-optimize-wrap .switch input:disabled+.slider,#wp-optimize-wrap .switch input:disabled:checked+.slider{background:transparentize(#555d66,0.5);border-color:#555d66;opacity:.3}#wp-optimize-wrap .switch input:focus+.slider{box-shadow:0 0 0 2px #f2f4f5,0 0 0 3px #555d66}#wp-optimize-wrap .switch-container{display:block;clear:both}#wp-optimize-wrap .switch-container label{line-height:1;vertical-align:middle}#wp-optimize-wrap .switch-container+small{margin-left:49px}#wp-optimize-wrap .switch-container [data-tooltip] .dashicons{transform:translateY(-3px)}#wp-optimize-wrap .wpo-fieldgroup>.switch-container:first-child{padding-top:0}label.wpo-label__bold{font-weight:600}.wpo-info{position:relative;display:inline-block}@media(max-width:480px){.wpo-info{display:block}}.wpo-info__content{opacity:0;visibility:hidden;position:absolute;top:100%;left:-25px;background:#FFF;padding:20px;width:380px;max-width:380px;z-index:5;box-shadow:0 11px 25px 0 rgba(0,0,0,0),0 11px 25px 3000px rgba(0,0,0,0);transition:.2s all}@media(max-width:480px){.wpo-info__content{width:auto}}span.wpo-info__close{display:none;margin-left:20px;color:#444}.wpo-info.opened span.wpo-info__close{display:inline-block}.wpo-info.opened .wpo-info__content{opacity:1;visibility:visible;box-shadow:0 11px 25px 0 rgba(0,0,0,0.3),0 11px 25px 3000px rgba(0,0,0,0.3)}.wpo-info.opened a.wpo-info__trigger{z-index:6}.wpo-info__content img,.wpo-info__content iframe{max-width:100%}a.wpo-info__trigger{display:inline-block;text-decoration:none;padding:10px;position:relative;background:#FFF;margin-left:-10px}a.wpo-info__trigger span.dashicons{text-decoration:none;vertical-align:middle}.wpo_section.wpo_group.wpo-feature-is-disabled .wpo-fieldgroup:not(.wpo-show){opacity:.5}.wpo_shade{display:block;position:absolute;left:0;right:0;top:0;bottom:0;width:100%;height:100%;z-index:9979;opacity:1;background-color:rgba(255,255,255,0.88)}.wpo_shade.hidden{display:none}.wpo_shade_inner{text-align:center;padding-top:80px}.wpo_shade_inner h4{font-size:2em}.wpo_shade_inner .dashicons.dashicons-update-alt{font-size:50px;height:50px;width:50px}.wpo-rotate{animation:rotate 1s linear infinite;transform-origin:50% 50%}.wpo-info.highlight-dashicons span.dashicons{color:green;font-weight:bold}#wp-optimize-wrap h2.nav-tab-wrapper{margin-bottom:0;border-bottom:0;position:relative}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active{border:0;background:transparent;margin:0;border-top:3px solid transparent;padding:7px 15px;color:#0272aa}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active .dashicons{display:block;margin:0 auto;color:#72777c;font-size:30px;width:30px;height:30px}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab span.menu-pill,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover span.menu-pill,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus span.menu-pill,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active span.menu-pill{display:inline-block;margin-left:6px;padding:4px;font-size:10px;line-height:1;border-radius:3px;font-weight:300;text-transform:uppercase;letter-spacing:.06em}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab span.menu-pill.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover span.menu-pill.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus span.menu-pill.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active span.menu-pill.premium-only{background:#0272aa;color:#FFF}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab span.menu-pill.disabled,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover span.menu-pill.disabled,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus span.menu-pill.disabled,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active span.menu-pill.disabled{background:#777;color:#FFF}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab span.menu-pill.hidden,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover span.menu-pill.hidden,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus span.menu-pill.hidden,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active span.menu-pill.hidden{display:none}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:hover,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus:active{background:#FFF;box-shadow:0 0 1px rgba(0,0,0,0.04);border-top-color:#0272aa}#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:hover .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab-active:focus:active .dashicons{color:#0272aa}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback{display:block;float:right;position:relative}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:hover,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus:active{position:relative}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:hover .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>.nav-tab:focus:active .dashicons{display:inline-block;font-size:20px;height:18px;transform:translateY(4px)}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback>div{display:none}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback:hover a.nav-tab::after{content:'';display:block;position:absolute;bottom:0;right:0;height:2px;width:100%;background-color:#0172aa}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback:hover>div{position:absolute;display:block;background:#FFF;padding:15px;right:0;top:100%;z-index:4;box-shadow:0 11px 25px 0 rgba(0,0,0,0.1);width:350px}#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback:hover>div a{display:block;font-size:14px;font-weight:normal;padding:6px 3px;text-align:center}@media(max-width:782px){#wp-optimize-wrap h2.nav-tab-wrapper .wpo-feedback{display:none}#wp-optimize-wrap h2.nav-tab-wrapper a:not(.nav-tab-active){display:none}}#wp-optimize-wrap h2.nav-tab-wrapper a[role="toggle-menu"]{display:block;float:right}@media(min-width:782px){#wp-optimize-wrap h2.nav-tab-wrapper a[role="toggle-menu"]{display:none}}#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active{text-align:right}#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active .dashicons{color:#b5b9be;font-size:18px;display:inline-block;height:auto;line-height:inherit;width:20px}@media(min-width:782px){#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active{position:absolute;bottom:14px;right:0;font-size:12px;font-weight:400;text-decoration:none;padding:0}#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back .dashicons,#wp-optimize-wrap h2.nav-tab-wrapper a.nav-tab.wp-optimize-nav-tab__back:focus:active .dashicons{color:#b5b9be;font-size:18px;display:inline-block;height:auto;line-height:inherit;width:20px}}@media(max-width:782px){.wpo-mobile-menu-opened .wpo-main .wpo-tab-postbox{// display:none}.wpo-mobile-menu-opened h2.nav-tab-wrapper a{display:block;float:none}.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab{display:block !important}.wpo-mobile-menu-opened h2.nav-tab-wrapper a:not(.nav-tab-active){background:#f9f9f9 !important}.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active,.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active:focus{border-top:0;border-left:3px solid}.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a.nav-tab-active:focus .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a:focus .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a:hover .dashicons,.wpo-mobile-menu-opened h2.nav-tab-wrapper a .dashicons{display:inline-block;line-height:inherit}.wpo-mobile-menu-opened h2.nav-tab-wrapper a[role="toggle-menu"]{display:none}}.wpo-pages-menu{position:absolute;bottom:0;right:0;display:none}@media(max-width:820px){.opened+.wpo-pages-menu{display:block;box-shadow:0 5px 25px rgba(0,0,0,0.17)}}@media(min-width:821px){.wpo-pages-menu{display:-ms-flexbox;display:flex;height:77px}}.wpo-pages-menu>a{text-decoration:none;position:relative;color:inherit;text-align:center;box-sizing:border-box;display:block;color:#555d66}@media(min-width:821px){.wpo-pages-menu>a{padding:0 8px;height:77px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center}.wpo-pages-menu>a>span{display:block;margin:0 auto}}@media(max-width:820px){.wpo-pages-menu>a{padding:15px;font-size:1.2em}}.wpo-pages-menu>a.active::after{content:'';display:block;position:absolute;bottom:0;left:0;width:100%;height:3px;background:#e46b1f;color:#191e23}@media(max-width:820px){.wpo-pages-menu>a.active::after{width:3px;height:100%}}@media(max-width:820px){.wpo-pages-menu>a.active{color:#e46b1f}}.wpo-pages-menu>a:hover{background:#f9f9f9;color:#191e23}.wpo-pages-menu span.separator{display:block;width:2px;background:#efefef;margin-top:18px;margin-bottom:18px;margin-right:5px;margin-left:5px}@media(max-width:820px){.wpo-pages-menu span.separator{width:80%;height:2px;margin:10px 10%}}@media(max-width:820px){.wpo-pages-menu{text-align:center;top:100%;width:100%;bottom:auto;background:#FFF}}body.rtl .wpo-pages-menu{left:0;right:auto}#wp-optimize-nav-page-menu{position:absolute;right:0;bottom:0;display:-ms-flexbox;display:flex;height:77px;-ms-flex-direction:column;flex-direction:column;padding:0 20px;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;text-decoration:none}#wp-optimize-nav-page-menu:not(.opened) .dashicons-no-alt{display:none}#wp-optimize-nav-page-menu.opened .dashicons-menu{display:none}@media(min-width:821px){#wp-optimize-nav-page-menu{display:none}}body.rtl #wp-optimize-nav-page-menu{right:auto;left:0}.wpo-dashboard-pages-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.wpo-dashboard-pages-menu[data-itemscount="1"] .wpo-dashboard-pages-menu__item,.wpo-dashboard-pages-menu[data-itemscount="2"] .wpo-dashboard-pages-menu__item,.wpo-dashboard-pages-menu[data-itemscount="3"] .wpo-dashboard-pages-menu__item{width:calc(33.333% - 13.33333px)}.wpo-dashboard-pages-menu[data-itemscount="4"] .wpo-dashboard-pages-menu__item{width:calc(25% - 15px)}.wpo-dashboard-pages-menu[data-itemscount="5"] .wpo-dashboard-pages-menu__item{width:calc(20% - 16px)}.wpo-dashboard-pages-menu[data-itemscount="6"] .wpo-dashboard-pages-menu__item{width:calc(16.66667% - 16.66667px)}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item{padding:20px;margin-right:20px;box-sizing:border-box;padding-bottom:60px;min-width:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item:last-child{margin-right:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item h3{margin-top:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item h3 .dashicons{color:#72777c;line-height:1;height:18px;margin-top:-2px;margin-right:10px}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item a{position:absolute;bottom:20px;left:20px;width:calc(100% - 40px) !important}@media(max-width:782px){.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item{width:100%;margin-right:0;padding-bottom:20px}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item a.button.button-large{width:auto !important;left:auto;bottom:auto;top:50%;transform:translateY(-50%);right:20px}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item h3{margin:0}.wpo-dashboard-pages-menu .postbox.wpo-dashboard-pages-menu__item p{display:none}}.updraft-ad-container.updated,.updraft-ad-container{margin-left:0;margin-right:0;position:relative;padding-right:80px}body[class*=WP-Optimize] .notice,body[class*=WP-Optimize] .error,body[class*=wp-optimize] .notice,body[class*=wp-optimize] .error{margin-left:0;margin-right:0}body.wp-core-ui.is-scrolled .wpo-main-error-notice{position:fixed;top:132px;left:160px;right:0;z-index:20;transition:.2s all}div#wpbody-content>.notice:not(.wpo-notice),div#wpbody-content>.warning:not(.wpo-notice),div#wpbody-content>.updated:not(.wpo-notice),div#wpbody-content>.error:not(.wpo-notice){display:none}.toplevel_page_WP-Optimize.rtl .notice,.toplevel_page_WP-Optimize.rtl div.updated,.toplevel_page_WP-Optimize.rtl div.error,.toplevel_page_WP-Optimize .notice,.toplevel_page_WP-Optimize div.updated,.toplevel_page_WP-Optimize div.error{margin-right:0}body.rtl .updraft-ad-container.updated,body.rtl .updraft-ad-container{padding-right:10px;padding-left:80px}.updraft_notice_container{padding:7px;display:-ms-flexbox;display:flex;-ms-flex-align:left;align-items:left;-ms-flex-direction:column;flex-direction:column;height:auto;overflow:hidden}.updraft_review_notice_container{padding:12px;display:-ms-flexbox;display:flex}.updraft_advert_content_left{float:none;width:65px}.updraft_advert_content_left_extra{float:none;width:100px;padding-right:15px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.updraft_advert_content_right{float:none;width:auto;overflow:hidden}.updraft_advert_bottom{margin:10px 0;padding:10px;font-size:140%;background-color:#FFF;border-color:#e6db55;border:1px solid;border-radius:4px}.updraft_advert_button_container{margin-bottom:10px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.updraft_advert_button_container .dashicons{margin-left:10px}.updraft-advert-dismiss{position:absolute;font-size:13px;top:5px;right:10px}body.rtl .updraft-advert-dismiss{left:10px;right:auto}h3.updraft_advert_heading{margin-top:5px !important;margin-bottom:5px !important}h4.updraft_advert_heading{margin-top:2px !important;margin-bottom:3px !important}.updraft_center_content{text-align:center;margin-bottom:5px}.updraft_notice_link{padding-left:5px}.updraft_text_center{text-align:center}.wpo-main-header+.updraft-ad-container,.wpo-main-header+.updated{margin-bottom:20px}.processed .updated{margin:0}@media screen and (min-width:560px){.updraft_notice_container{-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center}.updraft_advert_content_left,.updraft_advert_content_left_extra{float:left}}@media screen and (max-width:560px){body.rtl .updraft-ad-container.updated,body.rtl .updraft-ad-container{padding-right:10px;padding-left:10px}}@media screen and (max-width:768px){.wpo-main-header+.updraft-ad-container,.wpo-main-header+.updated{margin-right:0}}.wpo_unused_image,.wpo_smush_image{position:relative;margin:4px;width:calc(50% - 8px);text-align:center}@media(min-width:500px){.wpo_unused_image,.wpo_smush_image{width:calc(25% - 8px)}}@media(min-width:782px){.wpo_unused_image,.wpo_smush_image{width:calc(16.6666% - 8px)}}@media(min-width:1100px){.wpo_unused_image,.wpo_smush_image{width:calc(12.5% - 8px)}}.wpo_unused_image .wpo_unused_image__input,.wpo_smush_image .wpo_unused_image__input{position:absolute;top:10px;opacity:0;width:0;height:0}.wpo_unused_image label,.wpo_smush_image label{display:block;width:100%;position:relative;padding:1px;border:3px solid #f2f4f5;box-sizing:border-box}.wpo_unused_image label::before,.wpo_smush_image label::before{content:"";display:block;padding-top:100%}.wpo_unused_image label .thumbnail,.wpo_smush_image label .thumbnail{position:absolute;top:1px;left:1px;width:calc(100% - 2px);height:calc(100% - 2px);background-repeat:no-repeat;background-size:cover;background-position:50% 50%;overflow:hidden;background:rgba(220,220,220,0.2)}.wpo_unused_image label .thumbnail img,.wpo_smush_image label .thumbnail img{display:block;margin:0;max-height:100%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-webkit-user-select:none;-ms-user-select:none;user-select:none}.wpo_unused_image label span.dashicons,.wpo_smush_image label span.dashicons{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:25px;width:25px;opacity:.2}.wpo_unused_image .wpo_unused_image__input:checked+label,.wpo_unused_image.selected label,.wpo_smush_image .wpo_unused_image__input:checked+label,.wpo_smush_image.selected label{border-color:#0272aa}.wpo_unused_image:focus-within label,.wpo_smush_image:focus-within label{box-shadow:0 0 4px #0272aa}.wpo_unused_image a,.wpo_unused_image a.button,.wpo_unused_image a.button:active,.wpo_smush_image a,.wpo_smush_image a.button,.wpo_smush_image a.button:active{position:absolute;z-index:2;bottom:13px;left:50%;transform:translateX(-50%);display:none}.wpo_unused_image:hover a,.wpo_unused_image:hover a.button,.wpo_unused_image:hover a.button:active,.wpo_smush_image:hover a,.wpo_smush_image:hover a.button,.wpo_smush_image:hover a.button:active{display:inline-block}#wpo_unused_images,#wpo_unused_images_trash,#wpo_smush_images_grid{width:calc(100% + 8px);margin-left:-4px;margin-right:-4px;max-height:500px;overflow-y:auto;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative}#wpo_unused_images .wpo-fieldgroup,#wpo_unused_images_trash .wpo-fieldgroup,#wpo_smush_images_grid .wpo-fieldgroup{width:100%;margin:4px}#wpo_unused_images a,#wpo_unused_images_trash a{outline:0}.wpo-unused-images__premium-mask,.wpo-unused-image-sizes__premium-mask{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;background:linear-gradient(to bottom,rgba(255,255,255,0),rgba(255,255,255,0.85));display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.wpo-unused-image-sizes__premium-mask{background:linear-gradient(to bottom,rgba(255,255,255,0.3),rgba(255,255,255,0.85))}a.wpo-unused-images__premium-link{background:#FFF;display:inline-block;padding:10px;border-radius:3px;box-shadow:0 2px 8px rgba(0,0,0,0.3)}p.wpo-plugin-installed{color:#009b24}.wpo-repeater__add{display:inline-block;cursor:pointer;font-weight:bold;text-decoration:none}.wpo-repeater__add .dashicons{transform:translateY(-2px)}.wpo-plugin-family__premium h2{margin:0;padding:25px}.wpo-plugin-family__plugins{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:1px;padding-bottom:1px}.wpo-plugin-family__plugin{-ms-flex:auto;flex:auto;width:100%;padding:30px;box-sizing:border-box;border:1px solid #e3e4e7;margin-left:-1px;margin-bottom:-1px}@media(min-width:782px){.wpo-plugin-family__plugin{width:50%}.wpo-plugin-family__free .wpo-plugin-family__plugin{width:100%}}@media(max-width:1080px){.wpo-plugin-family__free .wpo-plugin-family__plugin{width:50%}}@media(max-width:782px){.wpo-plugin-family__free .wpo-plugin-family__plugin{width:100%}}div#wp-optimize-nav-tab-wpo_mayalso-may_also-contents .wpo-tab-postbox{padding:0}.wpo_feature_cont{width:64.5%}.wpo_plugin_family_cont{width:34.5%}@media(max-width:1080px){.wpo_feature_cont,.wpo_plugin_family_cont{width:100%;float:none;margin:0}}.wpo_feature_cont header,.wpo_plugin_family_cont header{padding:20px}@media(max-width:1080px){.wpo_feature_cont header,.wpo_plugin_family_cont header{padding:40px}}.wpo_feature_cont header h2,.wpo_plugin_family_cont header h2{margin:0}.wpo_feature_cont header p,.wpo_plugin_family_cont header p{margin-bottom:0}.wpo_feat_table,.wpo_feat_th,.wpo_feat_table td{border:0;border-collapse:collapse;background-color:white;font-size:120%;text-align:center}.wpo_feat_table td{border:1px solid #f1f1f1;border-bottom-width:4px;padding:15px}.wpo_feat_table td:nth-child(2),.wpo_feat_table td:nth-child(3){background:rgba(241,241,241,0.38)}.wpo_feat_table p{padding:0 10px;margin:5px 0;font-size:13px}.wpo_feat_table h4{margin:5px 0}.wpo_feat_table .dashicons{width:25px;height:25px;font-size:25px;line-height:1}.wpo_feat_table .dashicons-yes,.wpo_feat_table .updraft-yes{color:green}.wpo_feat_table .dashicons-no-alt,.wpo_feat_table .updraft-no{color:red}.wpo_feat_table tr.wpo-main-feature-row td{background:#f1f1f1;border-bottom-color:#fafafa}.wpo_feat_table tr.wpo-main-feature-row td img.wpo-premium-image{width:64px}.wpo-premium-image{display:none}@media screen and (min-width:720px){#wpoptimize_table_list_filter{width:40%}.wpo-premium-image{display:block;float:left;padding:16px 18px;width:30px;height:auto}}@media screen and (min-width:1220px){.wpo_feat_table td:nth-child(2),.wpo_feat_table td:nth-child(3){width:110px}}.other-plugin-title{text-decoration:none}@media screen and (max-width:782px){table.wpo_feat_table{display:block}table.wpo_feat_table tr{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}table.wpo_feat_table td{display:block}table.wpo_feat_table td:first-child{width:100%;border-bottom:0}table.wpo_feat_table td:not(:first-child){width:50%;box-sizing:border-box}table.wpo_feat_table td:first-child:empty{display:none}table.wpo_feat_table td[data-colname]::before{content:attr(data-colname);font-size:.8rem;color:#CCC;line-height:1}}.wpo-cache-feature-image{width:40px;padding:16px 14px}#wp-optimize-wrap .wp-list-table td{word-break:break-all}@media screen and (max-width:782px){#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody tr,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody th,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td{display:block}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td{padding:3px 8px 3px 35%;word-break:break-word;box-sizing:border-box}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td::before{color:#b5b9be}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead,#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead tr{display:block}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead th.column-primary{display:block;box-sizing:border-box}#wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels thead th:not(.column-primary){display:none !important}}body.rtl #wp-optimize-wrap .wpo-table-list-filter{text-align:left}@media screen and (max-width:782px){body.rtl #wp-optimize-wrap .wp-list-table.wp-list-table-mobile-labels tbody td{padding:3px 35% 3px 8px}}.tablesorter-headerRow th{vertical-align:top}th:not(.sorter-false) .tablesorter-header-inner{color:#0074ab}th:not(.sorter-false) .tablesorter-header-inner::after{content:'';font-family:'dashicons';font-size:20px;line-height:20px;height:20px;width:20px;display:none;vertical-align:bottom}th.tablesorter-header.tablesorter-headerAsc,th.tablesorter-header.tablesorter-headerDesc{font-weight:500;border-bottom-color:#0272aa}th.tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner::after,th.tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner::after{display:inline-block}th.tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner::after{content:"\f140"}th.tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner::after{content:"\f142"}th.tablesorter-header:focus{outline:0;box-shadow:0 0 3px rgba(0,116,171,0.78)}th.tablesorter-header:focus:not(.tablesorter-headerAsc):not(.tablesorter-headerDesc) .tablesorter-header-inner::after{content:"\f142";opacity:.5}.tablesorter.hasFilters tr.filtered{display:none}.wpo-text__dim .dashicons-info{margin-top:2px;margin-right:5px;border-radius:30px;background:#fff;color:#e07575}#page_cache_length_value{height:28px;position:relative;top:2px}#wp_optimize_preload_cache_status{margin-left:10px;display:inline-block;color:#82868b;font-size:smaller}.align-left{margin:10px 10px 0 0;float:left}textarea.cache-settings{display:block;clear:both;min-height:225px;overflow:scroll;min-width:75%;margin:10px 0}#wp-optimize-purge-cache,#wp-optimize-purge-cache ~ span,#wp-optimize-purge-cache ~ img{vertical-align:middle;top:auto}#wp-optimize-nav-tab-wpo_cache-cache-contents .wpo-error{font-size:12px}#wpo_browser_cache_error_message{padding-top:10px;padding-bottom:10px;margin-left:0;margin-bottom:10px}#wpo_browser_cache_error_message:empty{display:none}#wp-optimize-nav-tab-wpo_cache-advanced-contents label,#wp-optimize-nav-tab-wpo_cache-preload-contents label,#wp-optimize-nav-tab-wpo_cache-cache-contents label{font-weight:600}#wp-optimize-nav-tab-wpo_cache-advanced-contents label em,#wp-optimize-nav-tab-wpo_cache-preload-contents label em,#wp-optimize-nav-tab-wpo_cache-cache-contents label em{font-weight:normal}.wpo-gzip-already-enabled span.dashicons.dashicons-yes,.wpo-enabled>span.dashicons.dashicons-yes{font-size:40px;width:40px;height:40px;line-height:40px;vertical-align:middle;color:green}#wp-optimize-wrap .filename{display:inline-block;padding:6px 0}#wp-optimize-wrap .no-files-yet .filename{font-style:italic}#wp-optimize-wrap .processed{margin:0}#wp-optimize-wrap .processed .wpo_min_log{padding:8px;background:white;border:1px solid #cdcdcd;border-radius:4px;line-height:1.5em}#wp-optimize-wrap .processed .wpo_min_log ul{overflow-x:auto}#wp-optimize-wrap .processed .wpo_min_log ul li{white-space:nowrap}#wp-optimize-wrap .processed .wpo_min_log ul li.failed .wpo_min_file_url{color:#dc3232}#wp-optimize-wrap .processed .wpo_min_log ul li.disable-list-item{opacity:.5}#wp-optimize-wrap .processed .wpo_min_log h5{margin-top:0;margin-bottom:8px;border-bottom:1px solid #cdcdcd;padding-bottom:6px}#wp-optimize-wrap .processed .wpo_min_log .wpo_min_file_debug{color:#9c9c9c;display:inline-block}#wp-optimize-wrap .processed .wpo_min_log .wpo_min_file_debug::before{content:'—';display:inline-block;margin:0 10px}#wp-optimize-wrap .show-if-enabled{display:none}#wp-optimize-wrap .is-enabled .show-if-enabled{display:block}#wp-optimize-wrap .wpo-page:not(.is-enabled) .wpo-minify-features{display:none}#wp-optimize-wrap .wpo-page[data-whichpage="wpo_minify"]:not(.is-enabled) .nav-tab-wrapper>a:not([data-tab="status"]):not([role="toggle-menu"]){display:none}#wp-optimize-wrap .wpo-minify-features{padding-top:1em;margin-top:1em;border-top:1px solid #bbb}#wp-optimize-wrap .wpo-minify-features .wpo-fieldgroup__subgroup{margin-bottom:1em}#wp-optimize-wrap .wpo-fieldgroup__subgroup.wpo_min_enable_minify+.wpo-fieldgroup__subgroup{display:none}#wp-optimize-wrap .wpo-fieldgroup__subgroup.wpo_min_enable_minify.enabled+.wpo-fieldgroup__subgroup{display:block}#wp-optimize-wrap .wpo-fieldgroup__subgroup.wpo_min_enable_minify:not(.enabled){margin-bottom:0}#wp-optimize-wrap .defer-js-settings{padding-left:1em;border-left:2px solid #e2e2e2;margin-left:.5em}#wp-optimize-wrap .asset-preload-list{margin-bottom:1em}#wp-optimize-wrap .asset-preload-list td.asset-href{width:55%}#wp-optimize-wrap .asset-preload-list td.asset-crossorigin{width:10%}#wp-optimize-wrap .asset-preload-list tr.editing{display:none}#wp-optimize-wrap .asset-preload-list tr.form{box-shadow:0 2px 4px rgba(0,0,0,0.12941)}#wp-optimize-wrap .asset-preload-list tr.form td{background:#FFF;border:0;padding:10px}#wp-optimize-wrap .asset-preload-list tr.editing+tr.form td:last-child{border-radius:0 5px 5px 0}#wp-optimize-wrap .asset-preload-list tr.editing+tr.form td:first-child{position:relative}#wp-optimize-wrap .asset-preload-list tr.editing+tr.form td:first-child::before{content:'';width:10px;height:10px;background:#FFF;display:block;position:absolute;top:0;left:0;transform:translate(10px,-5px) rotate(45deg)}#wp-optimize-wrap .asset-preload-list tbody+tr.form td{padding-top:37px;position:relative}#wp-optimize-wrap .asset-preload-list tbody+tr.form td[data-label]::before{content:attr(data-label);position:absolute;top:1em;left:10px;text-transform:uppercase;color:#d0d2d4}#wp-optimize-wrap .asset-preload-list input#preload_href{width:100%}#wp-optimize-wrap .asset-preload-list select#preload_type{width:100%}#wp-optimize-wrap .asset-preload-list td.asset-preload-form--actions,#wp-optimize-wrap .asset-preload-list td.asset-edit{text-align:right}#wp-optimize-wrap .asset-preload-list td.asset-preload-form--actions button,#wp-optimize-wrap .asset-preload-list td.asset-edit button{display:inline-block}#wp-optimize-wrap .asset-preload-list td.asset-preload-form--actions button.wpo-asset--edit::after,#wp-optimize-wrap .asset-preload-list td.asset-edit button.wpo-asset--edit::after{content:'|';padding-left:6px;padding-right:4px}body.wpo-modal-is-opened{overflow:hidden}.wpo-modal--container{position:fixed;top:0;left:0;padding:3em;width:100%;height:100%;box-sizing:border-box;z-index:9999;overflow:auto}.wpo-modal{position:relative;background:#FFF;width:calc(100% - 6em);top:50%;transform:translateY(-50%);margin:0 auto;padding:2em;box-sizing:border-box;z-index:2}.wpo-modal>.wpo-modal--close{border:0;background:0;position:absolute;top:10px;right:10px;width:20px;height:20px;line-height:1;padding:0}.wpo-modal--bg{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.74);z-index:1}.wpo-confirm .wpo-modal--content>h3{font-size:2em}.wpo-confirm .wpo-modal--content>h3 .dashicons{font-size:30px;width:30px;height:30px;transform:translateY(-5px)}.wpo-confirm .wpo-modal--content>h3 .dashicons.dashicons-warning{color:#feb901}@media(min-width:780px){.power-tweaks--list{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}}.power-tweaks--list .wpo-power-tweak{width:100%}@media(min-width:780px){.power-tweaks--list .wpo-power-tweak{width:calc(25% - 1em);margin-right:1em}}@media(min-width:1080px){.power-tweaks--list .wpo-power-tweak{width:calc(33.33333% - 1em);margin-right:1em}}.power-tweaks--list .wpo-power-tweak{background:#f2f4f5;border-radius:1em;padding:1.5em;margin-bottom:1em;box-sizing:border-box}.power-tweaks--list .wpo-power-tweak h4{margin-top:0}.power-tweaks--list .wpo-power-tweak .description{margin-bottom:1em}.power-tweaks--list .wpo-power-tweak .details{padding:1em;background:#FFF;box-shadow:0 2px 3px rgba(0,0,0,0.1);margin-top:1em;margin-bottom:1em}.power-tweaks--list .wpo-power-tweak .actions{margin-top:1em;margin-bottom:1em}.power-tweaks--list .wpo-power-tweak .last-run,.power-tweaks--list .wpo-power-tweak .last-updated{margin-top:1em;font-size:.8em;color:#a9a9a9}.power-tweaks--list .wpo-power-tweak .tweak-is-running{display:none}.power-tweaks--list .wpo-power-tweak.running{position:relative}.power-tweaks--list .wpo-power-tweak.running .tweak-is-running{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;position:absolute;top:0;bottom:0;left:0;right:0;background:rgb(242,244,245,0.9);z-index:1;border-radius:1em;font-size:1.7em}.power-tweaks--list .wpo-power-tweak.running .tweak-is-running .spinner{visibility:visible}.power-tweaks--list a.show-faqs span.dashicons{font-size:inherit;height:auto;width:auto;line-height:inherit;text-decoration:none;margin-left:4px}
2
+ /*# sourceMappingURL=wp-optimize-admin-3-2-5.min.css.map */
css/{wp-optimize-admin-3-2-3.min.css.map → wp-optimize-admin-3-2-5.min.css.map} RENAMED
@@ -1 +1 @@
1
- {"version":3,"sources":["css/wp-optimize-admin.scss","css/admin.css","css/scss/_layout.scss","css/scss/_common.scss","css/scss/_menu-and-tabs.scss","css/scss/_notices.scss","css/scss/_image-list.scss","css/scss/_plugin-family-tab.scss","css/scss/_table-sorter.scss","css/scss/_cache.scss","css/scss/_minify.scss","css/scss/_modal.scss","css/scss/_power-tweaks.scss"],"names":[],"mappings":"AAAA,YAAY;;AAcZ,gBAAgB;;ACdhB;CACC,yBAAyB;CACzB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,2IAA2I;CAC3I,iBAAiB;CACjB,iBAAiB;CACjB,iBAAiB;CAEjB,uCAAuC;CACvC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kBAAkB;CAClB;;AAED,gBAAgB;;AAChB;CACC,4BAA4B;CAC5B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED,gBAAgB;;AAChB;CACC,YAAY;CACZ,WAAW;CACX,UAAU;CACV;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,mBAAmB;CACnB;;AAED,oBAAoB;;AACpB;CACC,eAAe;CACf,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf;;AAED,gBAAgB;;AAChB;;CAEC,YAAY;CACZ,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,WAAW;CACX;;AAED,qBAAqB;;AACrB;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV;;AAED;;CAEC;EACC,0BAA0B;EAC1B;;CAED;EACC,yBAAyB;EACzB;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED;;CAEC;EACC,aAAa;EACb;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;;AAED,qRAAqR;;AAErR,uBAAuB;;AAEvB;CACC,iBAAiB;CACjB,yBAAyB;CACzB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB,eAAe;CACf,uBAAuB;CACvB,YAAY;CACZ,gBAAgB;CAChB,aAAa;CACb,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED,sCAAsC;;AACtC;CACC,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB,iBAAiB;CACjB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,cAAc;CACd,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,WAAW;CACX;;AAED;CACC,eAAe;CACf,2BAA2B;CAC3B;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT;;AAED;;CAEC;EACC,aAAa;EACb,kBAAkB;EAClB;;CAED;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT,UAAU;CACV;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,uBAAuB;;AACvB;;CAEC,cAAc;CACd;;AAED;CACC,+BAA+B;CAC/B,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;;CAEC,sBAAsB;CACtB,UAAU;CACV,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,sBAAsB;CACtB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB;;AAED;;CAEC;EACC,kBAAkB;EAClB,oBAAoB;EACpB,eAAe;EACf,uBAAuB;EACvB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,mBAAmB;EACnB,eAAe;EACf;;CAED;EACC,iBAAiB;EACjB,oBAAoB;EACpB;;CAED;;AAED;CACC,uBAAuB;CACvB;;AAED;;CAEC,uBAAuB;CACvB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;;CAEC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,oBAAoB;;AACpB;CACC,kBAAkB;CAClB,2BAA2B;CAC3B,8BAA8B;CAC9B,eAAe;CACf,UAAU;CACV;;AAED;CACC,iCAAiC;CACjC,eAAe;CACf;;AAED;;;;;;;;CAQC,sBAAsB;CACtB,uBAAuB;CACvB;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,UAAU;CACV;;AAED;;CAEC,UAAU;CACV;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,0BAA0B;CAC1B,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ,aAAa;CACb,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,cAAc;CACd,YAAY;CACZ,mBAAmB;CACnB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB,sBAAsB;CACtB,oBAAoB;CACpB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;;;CAGC,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,6BAA6B;CAC7B,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AC7kBD;;CAEC,oBAAoB;CAIpB;;AAHA;;CAHD;;EAIE,iBAAiB;EAElB;CADC;;AAGF;CACC,mBAAmB;CACnB,iBAAiB;CAIjB;;AAHA;;CAHD;EAIE,mBAAmB;EAEpB;CADC;;AAGF;;CAEC,kBAAkB;CASlB;;AAPA;;CAJD;;EAKE,eAAe;EAMhB;CALC;;AAED;;CARD;;EASE,mBAAmB;EAEpB;CADC;;AAGF;CACC,mBAAmB;CACnB,kBAAkB;CASlB;;AAPA;;CAJD;EAKE,mBAAmB;EAMpB;CALC;;AAED;;CARD;EASE,gBAAgB;EAEjB;CADC;;AAGF,eAAe;;AAEf;;CAEC,aAAa;CACb,gBAAgB;CAChB,UAAU;CACV,YAAY;CACZ,iBAAiB;CACjB,SAAS;CACT,cAAc;;CAuLd;;AArLA;;CAVD;EAWE,cAAc;EAoLf;CAnLC;;AAED;EACC,qBAAc;EAAd,cAAc;EACd,2BAAuB;MAAvB,uBAAuB;EACvB,sBAAwB;MAAxB,wBAAwB;EACxB,mBAAmB;EACnB,aAAa;EACb,eAAe;EACf,gBAAgB;EAChB,mBAAmB;EACnB,kBAAkB;CAClB;;AAED;EACC,mBAAmB;EACnB,QAAQ;EACR,SAAS;EACT,4BAA4B;EAC5B,YAAY;CACZ;;AAED;EACC,UAAU;EACV,iBAAiB;EACjB,eAA0B;EAC1B,iBAAiB;CAKjB;;AAHA;;CAND;EAOE,cAAc;EAEf;CADC;;AAGF;EACC,UAAU;EACV,kBAAkB;EAClB,mBAAmB;EACnB,SAAS;EACT,kBAAkB;EAClB,oBAAoB;EACpB,+BAA+B;EAC/B,WAAW;CAkBX;;AAhBA;GACC,sBAAsB;GACtB;;AAED;GACC,eAAgC;GAChC,mBAAmB;GACnB,YAAY;GACZ,aAAa;GACb,kBAAkB;GAClB,oBAAoB;GACpB;;AAED;;CAvBD;EAwBE,cAAc;EAEf;CADC;;AAGF;EACC,cAAc;EACd,oBAAoB;EACpB,iBAAiB;CAcjB;;AAbA;;CAJD;EAKE,cAAc;EAYf;CAXC;;AAED;GACC,sBAAsB;GACtB,aAAa;GACb,iBAAiB;CACjB;;AACD;GACC,eAAgC;CAChC;;AAIF;;CAEC;GACC,aAAa;GACb,sBAAsB;EACtB;CAED;;AAGA;;CADD;EAEE,WAAW;EAaZ;CAZC;;AACD;;CAJD;EAKE,QAAQ;EACR,WAAW;EACX,mBAAmB;EAQpB;CAPC;;AACD;;CATD;EAUE,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb,UAAU;EAEX;CADC;;AAID;;CADD;EAEE,OAAO;EAER;CADC;;AAID;;CADD;EAEE,WAAW;EAEZ;CADC;;AAEF;EACC,2CAA2C;CAC3C;;AAED,SAAS;;AACT;EACC,aAAa;EACb,QAAQ;CA8BR;;AA5BA;GACC,mBAAmB;GACnB,oBAAoB;GACpB,eAAe;GACf,mBAAmB;GACnB;;AAED;GACC,mBAAmB;GACnB,WAAW;GACX,SAAS;GACT;;AAED;GACC,YAAY;GACZ,QAAQ;GACR,gCAAgC;GAChC,6BAA6B;GAU7B;;AARA;IACC,mBAAmB;IACnB,WAAW;IACX,YAAY;IACZ,aAAa;IACb,iBAAiB;IACjB,mBAAmB;IACnB;;AAKF;;CADD;EAEE,YAAY;EAYb;CAXC;;AACD;;CAJD;EAKE,SAAS;EACT,UAAU;EAQX;CAPC;;AACD;;CARD;EASE,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb,UAAU;EAEX;CADC;;AAID;;CADD;EAEE,YAAY;EACZ,QAAQ;EAET;CADC;;AAMF;EACC,iBAAiB;EACjB;;AACD;;CAJD,YAUC;CALC;;AAED;CACC,cAAc;CACd;;AAGF;CACC,mBAAmB;CACnB,iBAAiB;CACjB,oBAAoB;CACpB,iFAAiF;CAkBjF;;AAhBA;EACC,eAAe;EACf;;AAED;EACC,iBAAiB;EACjB;;AAED;EACC,kBAAkB;EAMlB;;AALA;GACC,sBAAsB;GACtB,iBAAiB;GACjB,kBAAkB;GAClB;;AAIH,aAAa;;AACb;;CAEC;EACC,aAAa;EACb,aAAa;EACb,uBAAuB;EACvB,mBAAmB;EACnB;;CAED;EACC,YAAY;EACZ,uBAAuB;EACvB,0BAA0B;EAC1B;;CAED;;ACjSD;;CAEC;EACC,qBAAqB;EACrB;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED,mBAAmB;;AAGnB,aAAa;;AAKX;;CADD;EAEE,eAAe;EACf,YAAY;EAEb;CADC;;AAGF;EACC,eAAY;CACZ;;AAED;;EAEC,eAAe;EACf,gBAAgB;CAChB;;AAED;EACC,YAAY;EACZ,mBAAmB;EACnB,cAAc;EACd,kBAAkB;EAClB,iBAAiB;EACjB,oBAAoB;CACpB;;AAIF;;CAEC,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,QAAQ;CACR,gBAAgB;CAChB,SAAS;CACT,4BAA4B;CAC5B,aAAa;CACb,eAAe;CACf;;AAED;CACC,eAAe;CACf,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,qBAAqB;CACrB,mBAAmB;CACnB;;AAED,oBAAoB;;AAEpB;CACC,sBAAsB;CACtB,gBAAgB;CAChB,0BAA0B;CAC1B,oBAA6B;CAC7B,iBAAiB;CACjB,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,UAAU;CACV,eAAe;CACf,iBAAiB;CACjB;;AAED;CACC;EACC,kBAAkB;EAClB;CACD;;AAED,aAAa;;AAEb;CACC,aAAa;;CAMb;;AAJA;EACC,cAAc;EACd;;AAIF;;CAEC,cAAc;CACd;;AAIA;EACC,cAAc;EACd;;AAGF,iBAAiB;;AAEjB;CACC,oBAA6B;CAC7B,mBAAmB;CACnB,aAAc;;CA0Cd;;AAxCA;CACC,mBAAmB;CACnB;;AAED;EACC,cAAc;CACd;;AAED;EACC,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;EACC,iBAAiB;CACjB;;AAED;EACC,mBAAmB;EACnB,oBAAoB;EACpB,mBAAmB;CACnB;;AAED;EACC,cAAc;CACd;;AAIA;GACC,eAAe;GACf,mBAAmB;GACnB,kBAAkB;GAClB;;AAOF;CACC,oBAAoB;CACpB;;AAGF,kBAAkB;;AAGjB;EACC,mBAAmB;EACnB,sBAAsB;EACtB,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,uBAAuB;;EAyFvB;;AAvFA,gCAAgC;;AAChC;GACC,WAAW;GACX,SAAS;GACT,UAAU;GACV;;AAED,gBAAgB;;AAChB;GACC,mBAAmB;GACnB,gBAAgB;GAChB,OAAO;GACP,QAAQ;GACR,SAAS;GACT,UAAU;GACV,0BAAmC;GACnC,eAAgB;;GAoChB;;AAlCA;CACC,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,WAAW;CACX,UAAU;CACV,YAAY;CACZ,0BAAgC;CAChC,0BAAgC;CAChC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,YAAY;CACZ,WAAW;CACX,WAAW;CACX,SAAS;CACT,mBAAmB;CACnB,0BAAqC;CACrC,wBAAuB;CACvB;;AAjCF,mCAmCC,qBAAqB;CASrB;;AARA;CACC,oBAAoB;CACpB,0BAAgC;CAIhC;;AAHA;CACA,mBAAmB;CAClB;;AAKH;GACC,oBAAqB;GACrB,qBAAuB;;GAmBvB;;AAlBA;CACC,iBAAiB;CACjB,mBAAmB;CACnB,4BAA4B;CAC5B;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,YAAY;CACZ,WAAW;CACX,UAAU;CACV,SAAS;CACT,iBAAiB;CACjB,aAAa;CACb;;AAGF;;GAEC,yCAA+C;GAC/C,sBAA4B;GAC5B,aAAa;GACb;;AAED;GACC,iDAAgE;GAChE;;AAIF;EACC,eAAe;EACf,YAAY;EAWZ;;AAVA;GACC,eAAe;GACf,uBAAuB;GACvB;;AACD;CACC,kBAAkB;CAClB;;AACD;GACC,4BAA4B;CAC5B;;AAGF;EACC,eAAe;EACf;;AAIF;CACC,iBAAiB;CACjB;;AAED,gBAAgB;;AAEhB;CACC,mBAAmB;CACnB,sBAAsB;CAItB;;AAHA;;CAHD;EAIE,eAAe;EAEhB;CADC;;AAGF;CACC,WAAW;CACX,mBAAmB;CACnB,mBAAmB;CACnB,UAAU;CACV,YAAY;CACZ,iBAAiB;CACjB,cAAc;CACd,aAAa;CACb,iBAAiB;CACjB,WAAW;CACX,sFAAsF;CACtF,qBAAqB;CAKrB;;AAHA;;CAdD;EAeE,YAAY;EAEb;CADC;;AAGF;CACC,cAAc;CACd,kBAAkB;CAClB,YAAY;CACZ;;AAIA;EACC,sBAAsB;EACtB;;AAED;EACC,WAAW;EACX,oBAAoB;EACpB,0FAA0F;EAC1F;;AAED;EACC,WAAW;EACX;;AAIF;;CAEC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,sBAAsB;CACtB,cAAc;CACd,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,uBAAuB;CACvB;;AAED;IACI,aAAa;CAChB;;AAED,qBAAqB;;AAErB;CACC,eAAe;CACf,mBAAmB;CACnB,QAAQ;CACR,SAAS;CACT,OAAO;CACP,UAAU;CACV,YAAY;CACZ,aAAa;CACb,cAAc;CACd,WAAW;CACX,4CAA4C;CAC5C;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,YAAY;CACZ;;AAED;CACC,qCAAqC;CACrC,0BAA0B;CAC1B;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AChcD,UAAU;;AAEV;IACI,iBAAiB;CACpB,oBAAoB;CACpB,mBAAmB;CAuKnB;;AArKA;;;;EAIC,aAAa;EACb,wBAAwB;EACxB,UAAU;EACV,kCAAkC;EAClC,kBAAkB;EAClB,eAAgB;EAiChB;;AA/BA;GACC,eAAe;GACf,eAAe;GACf,eAA0B;GAC1B,gBAAgB;GAChB,YAAY;GACZ,aAAa;GACb;;AAED;GACC,sBAAsB;GACtB,iBAAiB;GACjB,aAAa;GACb,gBAAgB;GAChB,eAAe;GACf,mBAAmB;GACnB,iBAAiB;GACjB,0BAA0B;GAC1B,qBAAsB;GAYtB;;AAXA;CACC,oBAAqB;CACrB,YAAY;CACZ;;AACD;CACC,iBAAiB;CACjB,YAAY;CACZ;;AACD;CACC,cAAc;CACd;;AAIH;;;;EAIC,iBAAiB;EACjB,wCAAwC;EACxC,0BAA2B;EAK3B;;AAHA;GACC,eAAgB;GAChB;;AAGF;EACC,eAAe;EACf,aAAa;EACb,mBAAmB;EAiDnB;;AA/CA;;;;GAIC,mBAAmB;GAOnB;;AANA;IACC,sBAAsB;IACtB,gBAAgB;IAChB,aAAa;IACb,2BAA2B;IAC3B;;AAGF;GACC,cAAc;GACd;;AAEA;IACC,YAAY;IACZ,eAAe;IACf,mBAAmB;IACnB,UAAU;IACV,SAAS;IACT,YAAY;IACZ,YAAY;IACZ,0BAA0B;CAC1B;;AACD;IACC,mBAAmB;IACnB,eAAe;IACf,iBAAiB;IACjB,cAAc;IACd,SAAS;IACT,UAAU;IACV,WAAW;IACX,iDAAiD;IACjD,aAAa;CASb;;AAPA;KACC,eAAe;KACf,gBAAgB;KAChB,oBAAoB;KACpB,iBAAiB;KACjB,mBAAmB;KACnB;;AAKJ;;CACC;GACC,cAAc;EACd;;CACD;GACC,cAAc;EACd;CACD;;AAED;EACC,eAAe;EACf,aAAa;CAIb;;AAHA;;CAHD;EAIE,cAAc;EAEf;CADC;;AAKD;CAEC,kBAAkB;CA8BlB;;AA5BA;IACC,eAAsB;IACtB,gBAAgB;IAChB,sBAAsB;IACtB,aAAa;IACb,qBAAqB;IACrB,YAAY;CACZ;;AAED;;CAbD;EAcE,mBAAmB;EACnB,aAAa;EACb,SAAS;EACT,gBAAgB;EAChB,iBAAiB;EACjB,sBAAsB;EACtB,WAAW;EAYZ;;CAVC;KACC,eAAsB;KACtB,gBAAgB;KAChB,sBAAsB;KACtB,aAAa;KACb,qBAAqB;KACrB,YAAY;EACZ;CACD;;AAOJ;;EAIE;EACA,iBAAiB;GAChB;;EAED;GACC,eAAe;GACf,WAAY;GA8BZ;;EA5BA;EACC,0BAA0B;EAC1B;;EAED;EACC,+BAA+B;EAC/B;;EAED;;EAEC,iBAAiB;EACjB,uBAAuB;EACvB;;EAOA;KACC,sBAAsB;KACtB,qBAAqB;EACrB;;EAGF;EACC,cAAc;EACd;;CAKH;;AAGD,gBAAgB;;AAEhB;CACC,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,cAAc;CAkGd;;AAhGA;;CACC;GACC,eAAe;GACf,2CAA2C;EAC3C;CACD;;AAED;;CAbD;EAcE,qBAAc;EAAd,cAAc;EACd,aAAa;EAuFd;CAtFC;;AAED;EACC,sBAAsB;EACtB,mBAAmB;EACnB,eAAe;EACf,mBAAmB;EACnB,uBAAuB;EACvB,eAAe;EACf,eAAqB;CA+CrB;;AA7CA;;CATD;EAUE,eAAe;EACf,aAAa;EACb,qBAAc;EAAd,cAAc;EACd,2BAAuB;MAAvB,uBAAuB;EACvB,sBAAwB;MAAxB,wBAAwB;EAwCzB;;CAtCC;IACC,eAAe;IACf,eAAe;EACf;CACD;;AAED;;CAtBD;EAuBE,cAAc;EACd,iBAAiB;EA8BlB;CA7BC;;AAGA;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,UAAU;CACV,QAAQ;CACR,YAAY;CACZ,YAAY;CACZ,oBAAmB;CACnB,eAAuB;CAOvB;;AALA;;CAXD;EAYE,WAAW;EACX,aAAa;EAGd;CAFC;;AAGF;;CAlBD;EAmBE,eAAc;EAEf;CADC;;AAGF;CACC,oBAAoB;CACpB,eAAuB;CACvB;;AAGF;EACC,eAAe;EACf,WAAW;EACX,oBAAoB;EACpB,iBAAiB;EACjB,oBAAoB;EACpB,kBAAkB;EAClB,iBAAiB;CAMjB;;AALA;;CARD;EASE,WAAW;EACX,YAAY;EACZ,iBAAiB;EAElB;CADC;;AAGF;;CAzFD;EA0FE,mBAAmB;EACnB,UAAU;EACV,YAAY;EACZ,aAAa;EACb,iBAAiB;EAQlB;CANC;;AAED;EACC,QAAQ;EACR,YAAY;CACZ;;AAGF;CACC,mBAAmB;CACnB,SAAS;CACT,UAAU;CACV,qBAAc;CAAd,cAAc;CACd,aAAa;IACV,2BAAuB;QAAvB,uBAAuB;IACvB,gBAAgB;IAChB,uBAAoB;QAApB,oBAAoB;IACpB,sBAAwB;QAAxB,wBAAwB;CAC3B,qBAAsB;CAkBtB;;AAhBA;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;;CApBD;EAqBE,cAAc;EAOf;CANC;;AAED;EACC,YAAY;EACZ,QAAQ;CACR;;AAGF,oBAAoB;;AAEpB,mDAAmD;;AACnD;CACC,qBAAc;CAAd,cAAc;CACd,oBAAgB;KAAhB,eAAgB;;CAEhB,gCAAgC;;CA2EhC;;AAvEC;GACC,kCAAgC;CAChC;;AAVH,2BAaC,iCAAiC;CAkEjC;;AA/DE;IACC,wBAA8D;CAC9D;;AAFD;IACC,wBAA8D;CAC9D;;AAFD;IACC,oCAA8D;CAC9D;;AAIH;EACC,cAAkB;EAClB,mBAAuB;EACvB,uBAAuB;EACvB,qBAAqB;EACrB,aAAa;CAkDb;;AAhDA;CACC,gBAAgB;CAChB;;AAED;GACC,cAAc;CAUd;;AARA;IACC,eAA0B;IAC1B,eAAe;IACf,aAAa;IACb,iBAAiB;IACjB,kBAAkB;IAClB;;AAIF;GACC,mBAAmB;GACnB,aAAiB;GACjB,WAAe;GACf,oCAA4C;CAC5C;;AAED;;CA/BD;EAgCE,YAAY;EACZ,gBAAgB;EAChB,qBAAqB;EAqBtB;;CAnBC;IACC,uBAAuB;IACvB,WAAW;IACX,aAAa;IACb,SAAS;IACT,4BAA4B;IAC5B,YAAgB;EAChB;;CAED;IACC,UAAU;EACV;;CAED;IACC,cAAc;EACd;CAED;;ACnbH,qBAAqB;;AAErB;;CAEC,iBAAiB;CACjB,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED,+CAA+C;;AAI9C;EACC,eAAe;EACf,gBAAgB;EAChB;;AAGF;;EAEE;;AAEF;IACI,eAAe;IACf,WAAW;IACX,YAAY;IACZ,SAAS;IACT,YAAY;IACZ,oBAAoB;CACvB;;AAED,0BAA0B;;AAGzB;;;;EAIC,cAAc;EACd;;AAGF;;;;;;CAMC,gBAAgB;CAChB;;AAED;;CAEC,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,aAAa;CAEb,qBAAqB;CACrB,cAAc;CAEd,qBAAqB;CACrB,kBAAkB;CAClB,2BAAuB;KAAvB,uBAAuB;CACvB,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd,qBAAc;CAAd,cAAc;CACd;;AAED;CACC,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,oBAAoB;CACpB,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,cAAc;CACd,gBAAgB;CAChB,uBAAuB;CACvB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB,SAAS;CACT,YAAY;CACZ;;AAED;CACC,WAAW;CACX,YAAY;CACZ;;AAED;CACC,2BAA2B;CAC3B,8BAA8B;CAC9B;;AAED;CACC,2BAA2B;CAC3B,8BAA8B;CAC9B;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,oBAAoB;CACpB;;AAED;CACC,UAAU;CACV;;AAED;;CAEC;EACC,wBAAoB;MAApB,oBAAoB;EAEpB,uBAAuB;EACvB,oBAAoB;EACpB;;CAED;EACC,YAAY;EACZ;;CAED;;AAED;;CAEC;;EAEC,oBAAoB;EACpB,mBAAmB;EACnB;;CAED;;AAED;;CAEC;;EAEC,gBAAgB;EAChB;;CAED;;AChMD,iDAAiD;;AAEjD;CACC,mBAAmB;CACnB,YAAY;CACZ,uBAAuB;CACvB,mBAAmB;;CAkGnB;;AAhGA;;CAND;EAOE,uBAAuB;EA+FxB;CA9FC;;AAED;;CAVD;EAWE,4BAA4B;EA2F7B;CA1FC;;AAED;;CAdD;EAeE,yBAAyB;EAuF1B;CAtFC;;AAED;EACC,mBAAmB;EACnB,UAAU;EACV,WAAW;EACX,SAAS;EACT,UAAU;CACV;;AAED;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB,aAAa;EACb,0BAAmC;EACnC,uBAAuB;CA0CvB;;AAxCA;CACC,YAAY;CACZ,eAAe;CACf,kBAAkB;CAClB;;AAED;GACC,mBAAmB;GACnB,SAAS;GACT,UAAU;GACV,wBAAwB;GACxB,yBAAyB;GACzB,6BAA6B;GAC7B,uBAAuB;GACvB,6BAA6B;GAC7B,iBAAiB;GACjB,qCAAqC;CAarC;;AAXA;IACC,eAAe;IACf,UAAU;IACV,iBAAiB;IACjB,mBAAmB;IACnB,SAAS;IACT,UAAU;IACV,gCAAgC;IAChC,0BAAkB;QAAlB,sBAAkB;YAAlB,kBAAkB;IAClB;;AAIF;GACC,mBAAmB;GACnB,SAAS;GACT,UAAU;GACV,iCAAiC;GACjC,gBAAgB;GAChB,YAAY;GACZ,YAAY;CACZ;;AAGF;;;;EAEC,sBAAuB;CACvB;;AAED;CACC,4BAA6B;CAC7B;;AAED;EACC,mBAAmB;EACnB,WAAW;EACX,aAAa;EACb,UAAU;EACV,4BAA4B;EAC5B,cAAc;CACd;;AAIA;GACC,sBAAsB;CACtB;;AAMH;CACC,wBAAwB;IACrB,kBAAkB;IAClB,mBAAmB;CACtB,kBAAkB;CAClB,iBAAiB;IACd,qBAAc;IAAd,cAAc;CACjB,oBAAgB;KAAhB,gBAAgB;CAChB,mBAAmB;;CAOnB;;AALA;EACC,YAAY;EACZ,YAAY;EACZ;;AAIF;CACC,cAAc;CACd;;AAED;;CAEC,mBAAmB;CACnB,OAAO;CACP,QAAQ;CACR,YAAY;CACZ,aAAa;CACb,WAAW;CACX,0FAA0F;CAC1F,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB,sBAAwB;KAAxB,wBAAwB;CACxB;;AAED;CACC,4FAA4F;CAC5F;;AAED;CACC,iBAAiB;CACjB,sBAAsB;CACtB,cAAc;CACd,mBAAmB;CACnB,yCAAyC;CACzC;;ACvJD,uBAAuB;;AAEvB,8BAA8B;;AAE9B;IACI,eAAgB;CACnB;;AAED,uBAAuB;;AAEvB;CACC,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,sBAAsB;CAItB;;AAHA;EACC,4BAA4B;EAC5B;;AAIF,wBAAwB;;AAExB;IACI,UAAU;IACV,cAAc;CACjB;;AAED;IACI,qBAAc;IAAd,cAAc;IACd,oBAAgB;QAAhB,gBAAgB;CACnB,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;IACI,eAAW;QAAX,WAAW;IACX,YAAY;IACZ,cAAc;IACd,uBAAuB;IACvB,0BAA0B;CAC7B,kBAAkB;CAClB,oBAAoB;;CAsBpB;;AApBA;;CATD;EAUE,WAAW;EAmBZ;;CAjBC;GACC,YAAY;EACZ;CACD;;AAED;;CACC;GACC,WAAW;EACX;CACD;;AAED;;CACC;GACC,YAAY;EACZ;CACD;;AAIF;IACI,WAAW;CACd;;AAED,wCAAwC;;AACxC;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;;CAEC;;EAEC,YAAY;EACZ,YAAY;EACZ,UAAU;EACV;;CAED;;AAKA;EACC,cAAc;;EAcd;;AAZA;;CAHD;EAIE,cAAc;EAWf;CAVC;;AAED;GACC,UAAU;CACV;;AAED;GACC,iBAAiB;CACjB;;AAMH;CACC,aAAa;CACb,0BAA0B;CAC1B,wBAAwB;CACxB,gBAAgB;CAChB,mBAAmB;CACnB;;AAGA;EACC,0BAA0B;EAC1B,yBAAyB;EACzB,cAAc;EACd;;AAED;EACC,sCAAsC;EACtC;;AAED;EACC,kBAAkB;EAClB,gBAAgB;EAChB,gBAAgB;EAChB;;AAED;EACC,gBAAgB;EAChB;;AAED;EACC,YAAY;EACZ,aAAa;EACb,gBAAgB;EAChB,eAAe;EACf;;AAED;EACC,aAAa;EACb;;AAED;EACC,WAAW;EACX;;AAED;EACC,oBAAoB;EACpB,6BAA6B;EAK7B;;AAHA;GACC,YAAY;GACZ;;AAMH;CACC,cAAc;CACd;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb;;CAED;;AAED;;CAEC;EACC,aAAa;EACb;;CAED;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC;;EAEC,eAAe;EA+Bf;;EA7BA;GACC,qBAAc;GAAd,cAAc;GACd,oBAAgB;OAAhB,gBAAgB;GAChB;;EAED;GACC,cAAe;GAsBf;;EApBA;EACC,YAAY;EACZ,oBAAoB;EACpB;;EAED;EACC,WAAW;EACX,uBAAuB;EACvB;;EAED;EACC,cAAc;EACd;;EAED;EACC,4BAA4B;EAC5B,kBAAkB;EAClB,YAAY;EACZ,eAAe;EACf;;CAIH;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB;;ACjPD,iBAAiB;;AAMf;GACC,sBAAsB;GACtB;;AAIF;;GAIE;IACC,eAAe;IACf;;GAED;IACC,yBAAyB;IACzB,uBAAuB;IACvB,sBAAuB;;IAMvB;;GAJA;EACC,eAAsB;EACtB;;GAQF;IACC,eAAe;IACf;;GAED;IACC,eAAe;IACf,uBAAuB;IACvB;;GAED;IACC,yBAAyB;IACzB;CAIF;;AAGA;GACC,iBAAiB;GACjB;;AACD;IAEE;KACC,yBAAyB;KACzB;CAEF;;AAIH;CACC,oBAAoB;CACpB;;AAED;;CAEC,cAAe;;CAaf;;AAXA;CACC,YAAY;CACZ,yBAAyB;CACzB,gBAAgB;CAChB,kBAAkB;CAClB,aAAa;CACb,YAAY;CACZ,cAAc;CACd,uBAAuB;CACvB;;AAIF;;IAEI,iBAAiB;IACjB,6BAA8B;CAIjC;;AAHA;EACC,sBAAsB;EACtB;;AAGF;IACI,iBAAiB;CACpB;;AAED;IACI,iBAAiB;CACpB;;AAED;IACI,cAAc;CACjB,2CAA4C;;CAO5C;;AALA;CACC,iBAAiB;CACjB,aAAa;CACb;;AAIF;IACI,cAAc;CACjB;;ACrHC;IACE,gBAAgB;IAChB,kBAAkB;IAClB,oBAAoB;IACpB,iBAAiB;IACjB,eAAY;GACb;;AAGH;EACE,aAAa;EACb,mBAAmB;EACnB,SAAS;CACV;;AAED;EACE,kBAAkB;EAClB,sBAAsB;EACtB,eAAe;EACf,mBAAmB;CACpB;;AAED;IACI,0BAA0B;IAC1B,YAAY;CACf;;AAED;IACI,eAAe;IACf,YAAY;IACZ,kBAAkB;IAClB,iBAAiB;IACjB,eAAe;IACf,iBAAiB;CACpB;;AAED;;;EAGE,uBAAuB;EACvB,UAAU;CACX;;AAED;EACE,gBAAgB;CACjB;;AAGD;EACE,kBAAkB;EAClB,qBAAqB;EACrB,eAAe;EACf,mBAAoB;CAKrB;;AAHC;CACE,cAAc;CACf;;AAMD;IACE,iBAAiB;GAIlB;;AAHC;MACE,oBAAoB;KACrB;;AAIL;;EAEE,gBAAgB;EAChB,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,uBAAuB;EACvB,aAAa;CACd;;AC7EA;EACC,sBAAsB;EACtB,eAAe;EACf;;AAED;EACC,mBAAmB;EACnB;;AAED;EACC,UAAU;EACV;;AAED;EACC,aAAa;EACb,kBAAkB;EAClB,0BAA0B;EAC1B,mBAAmB;EACnB,mBAAmB;EA4BnB;;AA3BA;GACC,iBAAiB;GAUjB;;AATA;IACC,mBAAoB;IAOpB;;AANA;CACC,eAAe;CACf;;AACD;CACC,aAAa;CACb;;AAGH;GACC,cAAc;GACd,mBAAmB;GACnB,iCAAiC;GACjC,oBAAoB;GACpB;;AACD;GACC,eAAe;GACf,qBAAsB;GAMtB;;AALA;CACC,aAAa;CACb,sBAAsB;CACtB,eAAe;CACf;;AAIH;EACC,cAAc;EACd;;AAED;EACC,eAAe;EACf;;AAED;EACC,cAAc;EACd;;AAED;EACC,cAAc;EACd;;AAED;EACC,iBAAiB;EACjB,gBAAgB;EAChB,2BAA2B;EAC3B;;AAED;EACC,mBAAmB;EACnB;;AAED;EACC,cAAc;EACd;;AAED;EACC,eAAe;EACf;;AAED;EACC,iBAAiB;EACjB;;AAED;EACC,kBAAkB;EAClB,+BAA+B;EAC/B,mBAAmB;EACnB;;AAED;;GAEE;;AACF;EACC,mBAAmB;EA8EnB;;AA7EA;GACC,WAAW;GACX;;AAED;GACC,WAAW;GACX;;AAED;GACC,cAAc;GACd;;AAED;GACC,6CAAgC;GAChC;;AAED;GACC,iBAAiB;GACjB,aAAa;GACb,cAAc;GACd;;AAED;GACC,2BAA2B;GAC3B;;AAED;GACC,kBAAmB;GAYnB;;AAXA;CACC,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,iBAAiB;CACjB,eAAe;CACf,mBAAmB;CACnB,OAAO;CACP,QAAQ;CACR,+CAA+C;CAC/C;;AAGD;IACC,kBAAkB;IAClB,kBAAmB;IASnB;;AARA;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,SAAS;CACT,WAAW;CACX,0BAA0B;CAC1B,eAAe;CACf;;AAIH;GACC,YAAY;GACZ;;AAED;GACC,YAAY;GACZ;;AAED;;GAEC,kBAAkB;GAWlB;;AAVA;IACC,qBAAsB;IAQtB;;AANC;CACC,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB;;AC5KN,kBAAkB;;AAClB;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;IACb,OAAO;CACV,QAAQ;CACR,aAAa;IACV,YAAY;CACf,aAAa;CACb,uBAAuB;CACvB,cAAc;CACd,eAAe;CACf;;AAED;CACC,mBAAmB;IAChB,iBAAiB;CACpB,wBAAwB;CACxB,SAAS;CACT,4BAA4B;CAC5B,eAAe;IACZ,aAAa;IACb,uBAAuB;CAC1B,WAAW;CAYX;;AAXA;EACC,aAAa;EACb,iBAAiB;EACjB,mBAAmB;EACnB,UAAU;EACV,YAAY;EACZ,YAAY;EACZ,aAAa;EACb,eAAe;EACf,WAAW;EACX;;AAGF;CACC,gBAAgB;IACb,OAAO;IACP,QAAQ;IACR,YAAY;IACZ,aAAa;CAChB,gCAAgC;CAChC,WAAW;CACX;;AAED;IACI,eAAe;CAClB;;AAED;IACI,gBAAgB;IAChB,YAAY;IACZ,aAAa;IACb,4BAA4B;CAC/B;;AACD;CACC,eAAe;CACf;;AC7DA;;CADD;EAEE,qBAAc;EAAd,cAAc;EACX,wBAAoB;MAApB,oBAAoB;EACvB,oBAAgB;MAAhB,gBAAgB;EAiFjB;CAhFC;;AAED;EACC,YAAY;CAkEZ;;AAjEA;;CAFD;EAGE,uBAA2B;EAC3B,kBAAkB;EA+DnB;CA9DC;;AACD;;CAND;EAOE,6BAA4B;EAC5B,kBAAkB;EA2DnB;CA1DC;;AATF;CAUC,oBAAoB;CACpB,mBAAmB;CACnB,eAAe;CACf,mBAAmB;CACnB,uBAAuB;CAqDvB;;AAnDA;GACC,cAAc;CACd;;AAED;GACC,mBAAmB;CACnB;;AAED;GACC,aAAa;GACb,iBAAiB;GACjB,sCAAsC;GACtC,gBAAgB;GAChB,mBAAmB;CACnB;;AAED;GACC,gBAAgB;GAChB,mBAAmB;CACnB;;AAED;GACC,gBAAgB;GAChB,iBAAiB;GACjB,eAAe;CACf;;AAED;GACC,cAAc;CACd;;AAED;CACC,mBAAmB;CAkBnB;;AAjBA;IACC,qBAAc;IAAd,cAAc;IACd,uBAAoB;QAApB,oBAAoB;IACpB,sBAAwB;QAAxB,wBAAwB;IACxB,mBAAmB;IACnB,OAAO;IACP,UAAU;IACV,QAAQ;IACR,SAAS;IACT,oCAAoC;IACpC,WAAW;IACX,mBAAmB;IACnB,iBAAiB;CAIjB;;AAHA;KACC,oBAAoB;KACpB;;AAKJ;EACC,mBAAmB;EACnB,aAAa;EACb,YAAY;EACZ,qBAAqB;EACrB,sBAAsB;EACtB,iBAAiB;CACjB","file":"wp-optimize-admin-3-2-3.min.css","sourcesContent":["/* COLORS */\n$wp-blue: #0272AA;\n$wp-gray-dark: #555d66;\n$wp-gray-darker: #191e23;\n$wp-secondary-gray: #72777C;\n$wp-secondary-gray-light: #82868B;\n$wp-light-gray: #B5B9BE;\n$wp-lighter-gray: #F2F4F5;\n$success: #009B24;\n$error: #9B3600;\n$red: #E07575;\n$brand: #E46B1F;\n$spacing: 20px; \n\n/* OTHER VARS */\n$breakpoint-small: 782px;\n\n@import \"admin.css\";\n\n@import \"scss/layout\";\n\n@import \"scss/common\";\n\n@import \"scss/menu-and-tabs\";\n\n@import \"scss/notices\";\n\n@import \"scss/image-list\";\n\n@import \"scss/plugin-family-tab\";\n\n@import \"scss/table-sorter\";\n\n@import \"scss/cache\";\n\n@import \"scss/minify\";\n\n@import \"scss/modal\";\n\n@import \"scss/power-tweaks\";\n",".wpo_hidden {\n\tdisplay: none !important;\n}\n\n.wpo_info {\n\tbackground: #FFF;\n\tcolor: #444;\n\tfont-family: -apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen-Sans\", \"Ubuntu\", \"Cantarell\", \"Helvetica Neue\", sans-serif;\n\tmargin: 2em auto;\n\tpadding: 1em 2em;\n\tmax-width: 700px;\n\t-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);\n\tbox-shadow: 0 1px 3px rgba(0,0,0,0.13);\n}\n\n#wp-optimize-wrap .widefat thead th, #wp-optimize-wrap .widefat thead td {\n\tborder-bottom: 1px solid #E1E1E1;\n}\n\n#wp-optimize-wrap .widefat td, #wp-optimize-wrap .widefat th {\n\tpadding: 8px 10px;\n}\n\n/* big button */\n.wpo_primary_big {\n\tpadding: 4px 6px !important;\n\tfont-size: 22px !important;\n\tmin-height: 34px;\n\tmin-width: 200px;\n}\n\n/* SECTIONS */\n.wpo_section {\n\tclear: both;\n\tpadding: 0;\n\tmargin: 0;\n}\n\n.wp-optimize-settings {\n\tmargin-bottom: 16px;\n}\n\n.wp-optimize-settings td > label {\n\tfont-weight: bold;\n\tdisplay: block;\n\tmargin-bottom: 8px;\n}\n\n/* COLUMN SETUP */\n.wpo_col {\n\tdisplay: block;\n\tfloat: left;\n\tmargin: 1% 0 1% 1%;\n}\n\n.wpo_col:first-child {\n\tmargin-left: 0;\n}\n\n/* GROUPING */\n.wpo_group:before,\n.wpo_group:after {\n\tcontent: \"\";\n\tdisplay: table;\n}\n\n.wpo_group:after {\n\tclear: both;\n}\n\n.wpo_half_width {\n\twidth: 48%;\n}\n\n/* GRID OF THREE */\n.wpo_span_3_of_3 {\n\twidth: 100%;\n}\n\n.wpo_span_2_of_3 {\n\twidth: 65.3%;\n}\n\n.wpo_span_1_of_3 {\n\twidth: 32.1%;\n}\n\n#wp-optimize-wrap .nav-tab-wrapper {\n\tmargin: 0;\n}\n\n@media screen and (min-width: 549px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: block !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: none !important;\n\t}\n\n}\n\n@media screen and (max-width: 548px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: none !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: block !important;\n\t}\n\n}\n\n@media screen and (max-width: 768px) {\n\n\t.wpo_col {\n\t\tmargin: 1% 0;\n\t}\n\n\t.wpo_span_3_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_2_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_1_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_half_width {\n\t\twidth: 100%;\n\t}\n\n}\n\n/* .wp-optimize-settings-clean-transient label, .wp-optimize-settings-clean-pingbacks label, .wp-optimize-settings-clean-trackbacks label, .wp-optimize-settings-clean-postmeta label, .wp-optimize-settings-clean-orphandata label, .wp-optimize-settings-clean-commentmeta label */\n\n/* Optimizations tab */\n\n.wp-optimize-setting-is-sensitive td > label::before {\n\tcontent: \"\\f534\";\n\tfont-family: 'dashicons';\n\tdisplay: inline-block;\n\tmargin-right: 6px;\n\tfont-style: normal;\n\tline-height: 1;\n\tvertical-align: middle;\n\twidth: 20px;\n\tfont-size: 18px;\n\theight: 20px;\n\ttext-align: center;\n\tcolor: #72777C;\n}\n\n.wpo-run-optimizations__container {\n\tmargin-bottom: 15px;\n}\n\n.wp-optimize-optimizations-table-placeholder {\n\tmin-height: 80px;\n}\n\ntd.wp-optimize-settings-optimization-checkbox {\n\twidth: 18px;\n\tpadding-left: 4px;\n\tpadding-right: 0px;\n}\n\n.wp-optimize-settings-optimization-checkbox input {\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n#retention-period, #revisions-count {\n\twidth: 60px;\n}\n\n.wp-optimize-settings-optimization-info {\n\tfont-size: 80%;\n\tfont-style: italic;\n}\n\n.wp-optimize-settings input[type=\"checkbox\"] {\n\t/* width: 18px; */\n}\n\n/* Added for the Image on Addons tab*/\nimg.addons {\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tmargin-bottom: 20px;\n\tmax-height: 44px;\n\theight: auto;\n\tmax-width: 100%;\n}\n\n.wpo_spinner {\n\twidth: 18px;\n\theight: 18px;\n\tpadding-left: 10px;\n\tdisplay: none;\n\tposition: relative;\n\ttop: 4px;\n}\n\n.optimization_spinner {\n\twidth: 20px;\n\theight: 20px;\n}\n\n#wp-optimize-auto-options {\n\tmargin: 20px 0 0 28px;\n}\n\n.display-none {\n\tdisplay: none;\n}\n\n.visibility-hidden {\n\tvisibility: hidden;\n}\n\n.margin-one-percent {\n\tmargin: 1%;\n}\n\n#save_done, .save-done {\n\tcolor: #D94F00;\n\tfont-size: 220% !important;\n}\n\n.wp-optimize-settings-optimization-info a {\n\ttext-decoration: underline;\n}\n\n.wp-optimize-settings-optimization-run-spinner {\n\tposition: relative;\n\ttop: 2px;\n}\n\n@media screen and (min-width: 782px) {\n\n\ttd.wp-optimize-settings-optimization-run {\n\t\twidth: 180px;\n\t\tpadding-top: 16px;\n\t}\n\n}\n\n#wpoptimize_table_list .tablesorter-filter-row {\n\tdisplay: none !important;\n}\n\n#wpoptimize_table_list .optimization_spinner {\n\tposition: relative;\n\ttop: 2px;\n\tleft: 5px;\n}\n\n#wpoptimize_table_list .optimization_spinner.visibility-hidden {\n\tdisplay: none;\n}\n\n#wpoptimize_table_list_filter {\n\twidth: 100%;\n\tmargin-bottom: 15px;\n}\n\n#wpoptimize_table_list_tables_not_found {\n\tdisplay: none;\n\tmargin: 20px 0;\n}\n\ndiv#wpoptimize_table_list_tables_not_found + h3 {\n\tmargin-top: 30px;\n}\n\n/* Hide First column */\n#wpoptimize_table_list tr th:first-child,\n#wpoptimize_table_list tr td:first-child {\n\tdisplay: none;\n}\n\n#wpoptimize_table_list tr td.no-table {\n\tdisplay: table-cell !important;\n\tbackground: #FB8787;\n\tfont-weight: bold;\n}\n\n#optimize_form .select2-container,\n#wp-optimize-auto-options .select2-container {\n\twidth: 50% !important;\n\ttop: -5px;\n\theight: 40px;\n\tmargin-left: 10px;\n}\n\n#wpoptimize_table_list .optimization_done_icon {\n\tcolor: #009B24;\n\tfont-size: 200%;\n\tdisplay: inline-block;\n\tposition: relative;\n}\n\n#wpo_sitelist_show_moreoptions_cron {\n\tfont-size: 13px;\n\tline-height: 1.5;\n\tletter-spacing: 1px;\n}\n\n#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3 {\n\tdisplay: inline-block;\n}\n\n.wpo_remove_selected_sizes_btn__container {\n\tmargin-top: 20px;\n}\n\n.unused-image-sizes__label {\n\tdisplay: block;\n\tline-height: 1.6;\n}\n\n@media (max-width: 782px) {\n\n\t.unused-image-sizes__label {\n\t\tmargin-left: 30px;\n\t\tmargin-bottom: 15px;\n\t\tline-height: 1;\n\t\tword-break: break-word;\n\t}\n\n\t.unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: -30px;\n\t}\n\n\tbody.rtl .unused-image-sizes__label {\n\t\tmargin-right: 30px;\n\t\tmargin-left: 0;\n\t}\n\n\tbody.rtl .unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: 4px;\n\t\tmargin-right: -30px;\n\t}\n\n}\n\n#wp-optimize-nav-tab-contents-tables a {\n\tvertical-align: middle;\n}\n\n#wpo_sitelist_moreoptions,\n#wpo_sitelist_moreoptions_cron {\n\tmargin: 4px 16px 6px 0;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n\tmax-height: 300px;\n\toverflow-y: scroll;\n\toverflow-x: hidden;\n}\n\n#wpo_sitelist_moreoptions {\n\tmax-height: 150px;\n\tmargin-right: 0;\n}\n\n#wpo_settings_sites_list li,\n#wpo_settings_sites_list li a {\n\tfont-size: 13px;\n\tline-height: 1.5;\n}\n\n#wpo_sitelist_moreoptions_cron li {\n\tpadding-left: 20px;\n}\n\n#wpo_import_error_message {\n\tdisplay: none;\n\tcolor: #9B0000;\n}\n\n#wpo_import_success_message {\n\tdisplay: none;\n\tcolor: #46B450;\n}\n\n#wp-optimize-logging-options {\n\tmargin-top: 10px;\n}\n\n/* Logger settings*/\n.wpo_logging_header {\n\tfont-weight: bold;\n\tborder-top: 1px solid #333;\n\tborder-bottom: 1px solid #333;\n\tpadding: 5px 0;\n\tmargin: 0;\n}\n\n.wpo_logging_row {\n\tborder-bottom: 1px solid #A1A2A3;\n\tpadding: 5px 0;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_options_title,\n.wpo_logging_status_title,\n.wpo_logging_actions_title,\n.wpo_logging_logger_row,\n.wpo_logging_options_row,\n.wpo_logging_status_row,\n.wpo_logging_actions_row {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_logger_row {\n\twidth: 38%;\n}\n\n.wpo_logging_options_title,\n.wpo_logging_options_row {\n\twidth: 44%;\n}\n\n.wpo_logging_status_title,\n.wpo_logging_status_row {\n\twidth: 8%;\n}\n\n.wpo_logging_actions_title,\n.wpo_logging_actions_row {\n\twidth: 7%;\n}\n\n.wpo_logging_actions_row {\n\ttext-align: right;\n}\n\n.wpo_logging_options_row {\n\tword-wrap: break-word;\n}\n\n.wpo_logging_actions_row .dashicons-no-alt,\n.wpo_add_logger_form .dashicons-no-alt {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\twidth: 20px;\n\theight: 20px;\n\tborder-radius: 20px;\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tmargin-left: 5px;\n}\n\n.wpo_add_logger_form .dashicons-no-alt {\n\tmargin-top: 12px;\n\tmargin-right: 10px;\n\tfloat: right;\n}\n\n.wpo_logger_type {\n\twidth: 90%;\n\tmargin-top: 10px;\n}\n\n.wpo_logger_addition_option {\n\twidth: 100%;\n\tmargin-top: 5px;\n}\n\n.wpo_alert_notice {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\tpadding: 1em;\n\tdisplay: block;\n\tmargin-bottom: 10px;\n\tborder-radius: 5px;\n}\n\n.wpo_error_field {\n\tborder-color: #F06666 !important;\n}\n\n.save_settings_reminder {\n\tdisplay: none;\n\tcolor: #333;\n\tpadding: 15px 20px;\n\tbackground-color: #F0A5A4;\n\tborder-radius: 3px;\n\tmargin: 15px 0;\n}\n\n#wpo_remove_selected_sizes {\n\tmargin-top: 20px;\n}\n\n.wpo_unused_images_buttons_wrap {\n\tfloat: right;\n\tmargin-right: 20px;\n}\n\n.wpo_unused_images_container h3 {\n\tmin-width: 150px;\n}\n\n#wpo_unused_images, #wpo_smush_images_grid {\n\tmax-height: 500px;\n\toverflow-y: auto;\n}\n\n#wpo_unused_images a {\n\toutline: none;\n}\n\n#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup {\n\tmargin-left: 1%;\n}\n\n.run-single-table-delete {\n\tmargin-top: 3px;\n}\n\n.wpo-confirm h4 span.table-name {\n\tfont-style: italic;\n\tdisplay: inline-block;\n\tbackground: #EFEFEF;\n\tpadding: 3px 7px;\n\tborder-radius: 4px;\n}\n\n#wpo_browser_cache_output,\n#wpo_gzip_compression_output,\n#wpo_advanced_cache_output {\n\tbackground: #F0F0F0;\n\tpadding: 10px;\n\tborder: 1px solid #CCC;\n\twhite-space: pre-wrap;\n}\n\n#wpo_gzip_compression_error_message,\n.wpo-error {\n\tcolor: #9B0000;\n}\n\n.notice.wpo-error__enabling-cache {\n\twhite-space: pre-wrap;\n\tmargin-bottom: 15px;\n}\n\n.notice.wpo-warnings__enabling-cache {\n\tmargin-bottom: 15px;\n}\n\n.notice.wpo-warnings__enabling-cache ul, .notice.wpo-warnings__enabling-cache ul li {\n\tlist-style: inside disc;\n}\n\na.loading.wpo-refresh-gzip-status {\n\tcolor: rgba(68, 68, 68, 0.5);\n\ttext-decoration: none;\n}\n\na.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none {\n\tdisplay: inline-block;\n}\n\n#wpo_browser_cache_expire_days,\n#wpo_browser_cache_expire_hours {\n\twidth: 50px;\n}\n\n.wpo-enabled .wpo-disabled {\n\tdisplay: none;\n}\n\n.wpo-disabled .wpo-enabled {\n\tdisplay: none;\n}\n\n.wpo-button-wrap {\n\tmargin-top: 10px;\n}\n","body[class*=\"toplevel_page_WP-Optimize\"] #wpbody,\nbody[class*=\"wp-optimize_page_\"] #wpbody {\n\tpadding-right: 15px;\n\t@media screen and (max-width: 768px) {\n\t\tpadding-right: 0;\n\t}\n}\n\nbody.toplevel_page_WP-Optimize.rtl #wpbody {\n\tpadding-left: 15px;\n\tpadding-right: 0;\n\t@media screen and (max-width: 768px) {\n\t\tpadding-left: 10px;\n\t}\n}\n\nbody[class*=\"toplevel_page_WP-Optimize\"] #wpbody-content,\nbody[class*=\"wp-optimize_page_\"] #wpbody-content {\n\tpadding-top: 80px;\n\n\t@media (max-width: 600px) {\n\t\tpadding-top: 0;\n\t}\t\n\n\t@media (min-width: 820px) {\n\t\tpadding-top: 100px;\n\t}\t\n}\n\n#wp-optimize-wrap {\n\tposition: relative;\n\tpadding-top: 20px;\n\n\t@media (max-width: 600px) {\n\t\tpadding-top: 110px;\n\t}\t\n\n\t@media(max-width: $breakpoint-small) {\n\t\tmargin-right: 0;\n\t}\n}\n\n/* DASHBOARD */\n\n.wpo-main-header {\n\n\theight: 77px;\n\tposition: fixed;\n\ttop: 32px;\n\tleft: 160px;\n\tbackground: #FFF;\n\tright: 0;\n\tz-index: 9980;\n\n\t@media (min-width: 820px) {\n\t\theight: 105px;\n\t}\t\n\n\t.wpo-logo__container {\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\tjustify-content: center;\n\t\tposition: relative;\n\t\theight: 100%;\n\t\tline-height: 1;\n\t\tfont-size: 1rem;\n\t\tpadding-left: 50px;\n\t\tmargin-left: 10px;\n\t}\n\n\t.wpo-logo {\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 50%;\n\t\ttransform: translateY(-50%);\n\t\twidth: 50px;\n\t}\n\n\t.wpo-subheader {\n\t\tmargin: 0;\n\t\tfont-weight: 300;\n\t\tcolor: $wp-secondary-gray;\n\t\tline-height: 1.3;\n\n\t\t@media (max-width: 1080px) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\tp.wpo-header-links {\n\t\tmargin: 0;\n\t\tfont-size: 0.7rem;\n\t\tposition: absolute;\n\t\tright: 0;\n\t\tpadding: 6px 15px;\n\t\tbackground: #EDEEEF;\n\t\tborder-bottom-left-radius: 5px;\n\t\tz-index: 1;\n\n\t\ta {\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t\t.wpo-header-links__label {\n\t\t\tcolor: $wp-secondary-gray-light;\n\t\t\tposition: absolute;\n\t\t\tright: 100%;\n\t\t\twidth: 110px;\n\t\t\ttext-align: right;\n\t\t\tpadding-right: 10px;\n\t\t}\n\n\t\t@media (max-width: 820px) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\tp.wpo-header-links__mobile {\n\t\tpadding: 10px;\n\t\tbackground: #EDEEEF;\n\t\tmargin-bottom: 0;\n\t\t@media (min-width: 820px) {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\ta {\n\t\t\tdisplay: inline-block;\n\t\t\tpadding: 4px;\n\t\t\tfont-size: .8rem;\n\t\t}\n\t\t.wpo-header-links__label {\n\t\t\tcolor: $wp-secondary-gray-light;\n\t\t}\n\n\t}\n\n\t@media (max-width: 600px) {\n\t\t\n\t\t.wpo-logo__container strong {\n\t\t\twidth: 140px;\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t}\n\n\tbody.auto-fold & {\n\t\t@media (max-width: 960px) {\n\t\t\tleft: 36px;\n\t\t}\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\tleft: 0;\n\t\t\ttop: -70px;\n\t\t\tposition: absolute;\n\t\t}\n\t\t@media (max-width: 600px) {\n\t\t\tposition: absolute;\n\t\t\tleft: -10px;\n\t\t\tright: -10px;\n\t\t\ttop: 10px;\n\t\t}\n\t}\n\n\tbody.auto-fold #screen-meta + #wp-optimize-wrap & {\n\t\t@media (max-width: 600px) {\n\t\t\ttop: 0;\n\t\t}\n\t}\n\n\tbody.folded & {\n\t\t@media (min-width: $breakpoint-small) {\n\t\t\tleft: 36px;\n\t\t}\n\t}\n\tbody.is-scrolled & {\n\t\tbox-shadow: 0 5px 25px rgba(0, 0, 0, 0.17);\n\t}\n\n\t/* RTL */\n\tbody.rtl & {\n\t\tright: 160px;\n\t\tleft: 0;\n\n\t\t.wpo-logo__container {\n\t\t\tpadding-left: 10px;\n\t\t\tpadding-right: 50px;\n\t\t\tmargin-left: 0;\n\t\t\tmargin-right: 10px;\n\t\t}\n\t\n\t\t.wpo-logo {\n\t\t\tposition: absolute;\n\t\t\tleft: auto;\n\t\t\tright: 0;\n\t\t}\t\n\n\t\tp.wpo-header-links {\n\t\t\tright: auto;\n\t\t\tleft: 0;\n\t\t\tborder-bottom-right-radius: 5px;\n\t\t\tborder-bottom-left-radius: 0;\n\t\t\n\t\t\t.wpo-header-links__label {\n\t\t\t\tposition: absolute;\n\t\t\t\tleft: 100%;\n\t\t\t\tright: auto;\n\t\t\t\twidth: 110px;\n\t\t\t\ttext-align: left;\n\t\t\t\tpadding-left: 10px;\n\t\t\t}\n\t\t}\n\t}\n\n\tbody.rtl.auto-fold & {\n\t\t@media (max-width: 960px) {\n\t\t\tright: 36px;\n\t\t}\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\tright: 0;\n\t\t\ttop: 46px;\n\t\t}\n\t\t@media (max-width: 600px) {\n\t\t\tposition: absolute;\n\t\t\tleft: -10px;\n\t\t\tright: -10px;\n\t\t\ttop: 10px;\n\t\t}\n\t}\n\n\tbody.rtl.folded & {\n\t\t@media (min-width: $breakpoint-small) {\n\t\t\tright: 36px;\n\t\t\tleft: 0;\n\t\t}\n\t}\n\n}\n\n.wpo-page {\n\tbody.rtl & {\n\t\tpadding-right: 0;\n\t}\n\t@media (min-width: 769px) {\n\t}\n\n\t&:not(.active) {\n\t\tdisplay: none;\n\t}\n}\n\n.wpo-introduction-notice {\n\tpadding: 15px 20px;\n\tmargin-top: 30px;\n\tmargin-bottom: 30px;\n\tbackground: #FFF url('../images/notices/logo-bg-notice.png') no-repeat 100% 100%;\n\n\th3 {\n\t\tfont-size: 2em;\n\t}\n\n\tp:not(.font-size__normal) {\n\t\tfont-size: 1.2em;\n\t}\n\n\t.wpo-introduction-notice__footer-links {\n\t\tpadding-top: 20px;\n\t\t> a, > span {\n\t\t\tdisplay: inline-block;\n\t\t\tmargin-left: 5px;\n\t\t\tmargin-right: 5px;\n\t\t}\n\t}\n}\n\n/* Columns */\n@media (min-width: 1200px) {\n\n\t.wpo-tab-postbox.right-col {\n\t\twidth: 350px;\n\t\tfloat: right;\n\t\tbox-sizing: border-box;\n\t\tmargin-top: 3.1rem;\n\t}\n\n\t.right-col + .wpo-main {\n\t\tfloat: left;\n\t\tbox-sizing: border-box;\n\t\twidth: calc(100% - 380px);\n\t}\n\n}\n","@keyframes rotate {\n\n\t0% {\n\t\ttransform: rotate(0);\n\t}\n\n\t100% {\n\t\ttransform: rotate(360deg);\n\t}\n\n}\n\n/* Common BLOCKS */\n\n\n/* Buttons */\n\n#wp-optimize-wrap {\n\n\t.button-large {\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\tdisplay: block;\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n\t.red {\n\t\tcolor: $red;\n\t}\n\n\tdiv[id*=\"_notice\"] div.updated,\n\t> .notice {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t}\n\n\ttextarea {\n\t\twidth: 100%;\n\t\tborder-radius: 5px;\n\t\theight: 100px;\n\t\tmin-height: 100px;\n\t\tmargin-top: 10px;\n\t\tmargin-bottom: 10px;\n\t}\n\t\n}\n\n.notice.notice-error.wpo-warning,\n.notice.notice-warning.wpo-warning {\n\tmargin-bottom: 18px;\n}\n\n.notice.notice-warning.wpo-warning p {\n\tpadding-left: 36px;\n\tposition: relative;\n}\n\n.notice.notice-warning.wpo-warning p > .dashicons {\n\tposition: absolute;\n\tleft: 0;\n\tfont-size: 26px;\n\ttop: 50%;\n\ttransform: translateY(-50%);\n\theight: 26px;\n\tcolor: #FFB900;\n}\n\n.button.button-block {\n\tdisplay: block;\n\twidth: 100%;\n\ttext-align: center;\n}\n\n.wpo-refresh-button {\n\tfloat: right;\n}\n\n.wpo-refresh-button:hover {\n\tcursor: pointer;\n}\n\n.wpo-refresh-button .dashicons {\n\ttext-decoration: none;\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n/* Helper classes */\n\n*[class*=\"wpo-badge\"] {\n\tdisplay: inline-block;\n\tfont-size: .8em;\n\ttext-transform: uppercase;\n\tbackground: $wp-lighter-gray;\n\tpadding: 3px 5px;\n\tline-height: 1;\n\tborder-radius: 3px;\n}\n\n.wpo-badge__new {\n\tbackground: #DBE3E6;\n\tcolor: #00689a;\n}\n\n.wpo-first-child {\n\tmargin-top: 0;\n}\n\n#save_done, .save-done {\n\tcolor: $success;\n\tfont-size: 250%;\n}\n\np.wpo-take-a-backup {\n\tdisplay: inline-block;\n\tmargin: 0;\n\tline-height: 1;\n\tpadding-top: 8px;\n}\n\n@media (min-width: $breakpoint-small) {\n\t.button ~ p.wpo-take-a-backup {\n\t\tmargin-left: 20px;\n\t}\n}\n\n/* Postbox */\n\n#wp-optimize-wrap .nav-tab-wrapper ~ .wp-optimize-nav-tab-contents > .postbox {\n\tborder: none;\n\n\t> h3:first-child {\n\t\tmargin-top: 0;\n\t}\n\n}\n\n.wpo-p25,\n.postbox.wpo-tab-postbox {\n\tpadding: 25px;\n}\n\n.wpo-tab-postbox {\n\t\n\t> h3:first-child {\n\t\tmargin-top: 0;\n\t}\n}\n\n/* Field group */\n\n.wpo-fieldgroup {\n\tbackground: $wp-lighter-gray;\n\tborder-radius: 8px;\n\tpadding: 20px;\n\n\t&:not(:last-child) {\n\t\tmargin-bottom: 2em;\n\t}\n\n\t> *:first-child {\n\t\tmargin-top: 0;\n\t}\n\t\n\t> *:last-child {\n\t\tmargin-bottom: 0;\n\t}\n\n\t&.premium-only {\n\t\tposition: relative;\n\t}\n\n\t.switch + label {\n\t\tfont-weight: 600;\n\t}\n\n\tcode, pre.code {\n\t\tfont-size: inherit;\n\t\tbackground: #d8dbdc;\n\t\tborder-radius: 3px;\n\t}\n\n\tpre.code {\n\t\tpadding: 10px;\n\t}\n\n\tfieldset {\n\n\t\tlabel {\n\t\t\tdisplay: block;\n\t\t\tmargin-bottom: 6px;\n\t\t\tline-height: 20px;\n\t\t}\n\n\t}\n\n}\n\n.wpo-fieldgroup__subgroup {\n\t&:not(:last-of-type) {\n\t\tmargin-bottom: 20px;\n\t}\n}\n\n/* The switches */\n#wp-optimize-wrap {\n\n\t.switch {\n\t\tposition: relative;\n\t\tdisplay: inline-block;\n\t\twidth: 38px;\n\t\theight: 18px;\n\t\tmargin-right: 6px;\n\t\tbox-sizing: border-box;\n\n\t\t/* Hide default HTML checkbox */\n\t\tinput {\n\t\t\topacity: 0;\n\t\t\twidth: 0;\n\t\t\theight: 0;\n\t\t}\n\n\t\t/* The slider */\n\t\t.slider {\n\t\t\tposition: absolute;\n\t\t\tcursor: pointer;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tbackground-color: $wp-lighter-gray;\n\t\t\ttransition: .2s;\n\n\t\t\t&::before {\n\t\t\t\tposition: absolute;\n\t\t\t\tcontent: \"\";\n\t\t\t\theight: 8px;\n\t\t\t\twidth: 8px;\n\t\t\t\tleft: 2px;\n\t\t\t\tbottom: 2px;\n\t\t\t\tbackground-color: $wp-gray-dark;\n\t\t\t\tborder: 1px solid $wp-gray-dark;\n\t\t\t\ttransition: all .2s;\n\t\t\t}\n\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\theight: 4px;\n\t\t\t\twidth: 3px;\n\t\t\t\tright: 4px;\n\t\t\t\ttop: 4px;\n\t\t\t\tborder-radius: 50%;\n\t\t\t\tborder: 1px solid $wp-secondary-gray;\n\t\t\t\tbox-sizing: content-box\n\t\t\t}\n\n\t\t\t/* Rounded sliders */\n\t\t\t&.round {\n\t\t\t\tborder-radius: 23px;\n\t\t\t\tborder: 2px solid $wp-gray-dark;\n\t\t\t\t&::before {\n\t\t\t\tborder-radius: 50%;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\tinput:checked + .slider {\n\t\t\tbackground: $wp-blue;\n\t\t\tborder-color: $wp-blue;\n\t\t\t&::before {\n\t\t\t\tbackground: #FFF;\n\t\t\t\tborder-color: #FFF;\n\t\t\t\ttransform: translateX(20px);\n\t\t\t}\n\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\theight: 6px;\n\t\t\t\twidth: 2px;\n\t\t\t\tleft: 7px;\n\t\t\t\ttop: 4px;\n\t\t\t\tbackground: #FFF;\n\t\t\t\tborder: none;\n\t\t\t}\n\n\t\t}\n\t\tinput:disabled + .slider,\n\t\tinput:disabled:checked + .slider {\n\t\t\tbackground: transparentize($wp-gray-dark, 0.5);\n\t\t\tborder-color: $wp-gray-dark;\n\t\t\topacity: 0.3;\n\t\t}\t\t\n\n\t\tinput:focus + .slider {\n\t\t\tbox-shadow: 0 0 0 2px $wp-lighter-gray, 0 0 0 3px $wp-gray-dark;\n\t\t}\n\n\t}\n\n\t.switch-container {\n\t\tdisplay: block;\n\t\tclear: both;\n\t\tlabel {\n\t\t\tline-height: 1;\n\t\t\tvertical-align: middle;\n\t\t}\n\t\t& + small {\n\t\t\tmargin-left: 49px;\n\t\t}\n\t\t[data-tooltip] .dashicons {\n\t\t\ttransform: translateY(-3px);\n\t\t}\n\t}\n\n\t.wpo-fieldgroup > .switch-container:first-child {\n\t\tpadding-top: 0;\n\t}\n\n}\n\nlabel.wpo-label__bold {\n\tfont-weight: 600;\n}\n\n/* Help popup */\n\n.wpo-info {\n\tposition: relative;\n\tdisplay: inline-block;\n\t@media (max-width:480px) {\n\t\tdisplay: block;\n\t}\n}\n\n.wpo-info__content {\n\topacity: 0;\n\tvisibility: hidden;\n\tposition: absolute;\n\ttop: 100%;\n\tleft: -25px;\n\tbackground: #FFF;\n\tpadding: 20px;\n\twidth: 380px;\n\tmax-width: 380px;\n\tz-index: 5;\n\tbox-shadow: 0px 11px 25px 0px rgba(0, 0, 0, 0), 0px 11px 25px 3000px rgba(0, 0, 0, 0);\n\ttransition: 0.2s all;\n\n\t@media (max-width:480px) {\n\t\twidth: auto;\n\t}\n}\n\nspan.wpo-info__close {\n\tdisplay: none;\n\tmargin-left: 20px;\n\tcolor: #444;\n}\n\n.wpo-info.opened {\n\n\tspan.wpo-info__close {\n\t\tdisplay: inline-block;\n\t}\n\n\t.wpo-info__content {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t\tbox-shadow: 0px 11px 25px 0px rgba(0, 0, 0, 0.3), 0px 11px 25px 3000px rgba(0, 0, 0, 0.3);\n\t}\n\n\ta.wpo-info__trigger {\n\t\tz-index: 6;\n\t}\n\t\n}\n\n.wpo-info__content img,\n.wpo-info__content iframe {\n\tmax-width: 100%;\n}\n\na.wpo-info__trigger {\n\tdisplay: inline-block;\n\ttext-decoration: none;\n\tpadding: 10px;\n\tposition: relative;\n\tbackground: #FFF;\n\tmargin-left: -10px;\n}\n\na.wpo-info__trigger span.dashicons {\n\ttext-decoration: none;\n\tvertical-align: middle;\n}\n\n.wpo_section.wpo_group.wpo-feature-is-disabled .wpo-fieldgroup:not(.wpo-show) {\n opacity: 0.5;\n}\n\n/* Custom Block UI */\n\n.wpo_shade {\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 0;\n\tright: 0;\n\ttop: 0;\n\tbottom: 0;\n\twidth: 100%;\n\theight: 100%;\n\tz-index: 9979;\n\topacity: 1;\n\tbackground-color: rgba(255, 255, 255, 0.88);\n}\n\n.wpo_shade.hidden {\n\tdisplay: none;\n}\n\n.wpo_shade_inner {\n\ttext-align: center;\n\tpadding-top: 80px;\n}\n\n.wpo_shade_inner h4 {\n\tfont-size: 2em;\n}\n\n.wpo_shade_inner .dashicons.dashicons-update-alt {\n\tfont-size: 50px;\n\theight: 50px;\n\twidth: 50px;\n}\n\n.wpo-rotate {\n\tanimation: rotate 1s linear infinite;\n\ttransform-origin: 50% 50%;\n}\n\n.wpo-info.highlight-dashicons span.dashicons {\n\tcolor: green;\n\tfont-weight: bold;\n}","/* TABS */\n\n#wp-optimize-wrap h2.nav-tab-wrapper {\n margin-bottom: 0;\n\tborder-bottom: none;\n\tposition: relative;\n\t\n\t.nav-tab,\n\t.nav-tab:hover,\n\t.nav-tab:focus,\n\t.nav-tab:focus:active {\n\t\tborder: none;\n\t\tbackground: transparent;\n\t\tmargin: 0;\n\t\tborder-top: 3px solid transparent;\n\t\tpadding: 7px 15px;\n\t\tcolor: $wp-blue;\n\n\t\t.dashicons {\n\t\t\tdisplay: block;\n\t\t\tmargin: 0 auto;\n\t\t\tcolor: $wp-secondary-gray;\n\t\t\tfont-size: 30px;\n\t\t\twidth: 30px;\n\t\t\theight: 30px;\n\t\t}\n\t\t\n\t\tspan.menu-pill {\n\t\t\tdisplay: inline-block;\n\t\t\tmargin-left: 6px;\n\t\t\tpadding: 4px;\n\t\t\tfont-size: 10px;\n\t\t\tline-height: 1;\n\t\t\tborder-radius: 3px;\n\t\t\tfont-weight: 300;\n\t\t\ttext-transform: uppercase;\n\t\t\tletter-spacing: .06em;\n\t\t\t&.premium-only {\n\t\t\t\tbackground: $wp-blue;\n\t\t\t\tcolor: #FFF;\n\t\t\t}\n\t\t\t&.disabled {\n\t\t\t\tbackground: #777;\n\t\t\t\tcolor: #FFF;\n\t\t\t}\n\t\t\t&.hidden {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\t}\n\t\n\t.nav-tab-active,\n\t.nav-tab-active:hover,\n\t.nav-tab-active:focus,\n\t.nav-tab-active:focus:active {\n\t\tbackground: #FFF;\n\t\tbox-shadow: 0 0 1px rgba(0, 0, 0, 0.04);\n\t\tborder-top-color: $wp-blue;\n\n\t\t.dashicons {\n\t\t\tcolor: $wp-blue;\n\t\t}\n\t}\n\n\t.wpo-feedback {\n\t\tdisplay: block;\n\t\tfloat: right;\n\t\tposition: relative;\n\n\t\t> .nav-tab,\n\t\t> .nav-tab:hover,\n\t\t> .nav-tab:focus,\n\t\t> .nav-tab:focus:active {\n\t\t\tposition: relative;\n\t\t\t.dashicons {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tfont-size: 20px;\n\t\t\t\theight: 18px;\n\t\t\t\ttransform: translateY(4px);\n\t\t\t}\n\t\t}\n\n\t\t> div {\n\t\t\tdisplay: none;\n\t\t}\n\t\t&:hover {\n\t\t\ta.nav-tab::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 0;\n\t\t\t\tright: 0;\n\t\t\t\theight: 2px;\n\t\t\t\twidth: 100%;\n\t\t\t\tbackground-color: #0172aa;\n\t\t\t}\n\t\t\t> div {\n\t\t\t\tposition: absolute;\n\t\t\t\tdisplay: block;\n\t\t\t\tbackground: #FFF;\n\t\t\t\tpadding: 15px;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 100%;\n\t\t\t\tz-index: 4;\n\t\t\t\tbox-shadow: 0px 11px 25px 0px rgba(0, 0, 0, 0.1);\n\t\t\t\twidth: 350px;\n\n\t\t\t\ta {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tpadding: 6px 3px;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t@media (max-width: $breakpoint-small) {\n\t\t.wpo-feedback {\n\t\t\tdisplay: none;\n\t\t}\n\t\ta:not(.nav-tab-active) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\t\n\ta[role=\"toggle-menu\"] {\n\t\tdisplay: block;\n\t\tfloat: right;\n\t\t@media (min-width: $breakpoint-small) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\n\ta.nav-tab.wp-optimize-nav-tab__back {\n\t\t&, &:focus:active {\t\n\n\t\t\ttext-align: right;\n\n\t\t\t.dashicons {\n\t\t\t\tcolor: $wp-light-gray;\n\t\t\t\tfont-size: 18px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\theight: auto;\n\t\t\t\tline-height: inherit;\n\t\t\t\twidth: 20px;\n\t\t\t}\n\n\t\t\t@media (min-width: $breakpoint-small) {\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 14px;\n\t\t\t\tright: 0;\n\t\t\t\tfont-size: 12px;\n\t\t\t\tfont-weight: 400;\n\t\t\t\ttext-decoration: none;\n\t\t\t\tpadding: 0;\n\t\t\t\n\t\t\t\t.dashicons {\n\t\t\t\t\tcolor: $wp-light-gray;\n\t\t\t\t\tfont-size: 18px;\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\theight: auto;\n\t\t\t\t\tline-height: inherit;\n\t\t\t\t\twidth: 20px;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t}\n\t\n\t}\n}\n\n@media (max-width: $breakpoint-small) {\n\n\t.wpo-mobile-menu-opened {\n\n\t\t.wpo-main .wpo-tab-postbox {\n\t\t//\tdisplay: none;\n\t\t}\n\n\t\th2.nav-tab-wrapper a {\n\t\t\tdisplay: block;\n\t\t\tfloat: none;\n\n\t\t\t&.nav-tab {\n\t\t\t\tdisplay: block !important;\n\t\t\t}\n\n\t\t\t&:not(.nav-tab-active) {\n\t\t\t\tbackground: #f9f9f9 !important;\n\t\t\t}\n\n\t\t\t&.nav-tab-active,\n\t\t\t&.nav-tab-active:focus {\n\t\t\t\tborder-top: none;\n\t\t\t\tborder-left: 3px solid;\n\t\t\t}\n\n\t\t\t&.nav-tab-active,\n\t\t\t&.nav-tab-active:focus,\n\t\t\t&:focus,\n\t\t\t&:hover,\n\t\t\t& {\n\t\t\t\t.dashicons {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tline-height: inherit;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&[role=\"toggle-menu\"] {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t}\n\n}\n\n\n/* Pages MENU */\n\n.wpo-pages-menu {\n\tposition: absolute;\n\tbottom: 0;\n\tright: 0;\n\tdisplay: none;\n\n\t@media (max-width: 820px) {\n\t\t.opened + & {\n\t\t\tdisplay: block;\n\t\t\tbox-shadow: 0 5px 25px rgba(0, 0, 0, 0.17);\n\t\t}\n\t}\n\n\t@media (min-width: 821px) {\n\t\tdisplay: flex;\n\t\theight: 77px;\n\t}\n\n\t> a {\n\t\ttext-decoration: none;\n\t\tposition: relative;\n\t\tcolor: inherit;\n\t\ttext-align: center;\n\t\tbox-sizing: border-box;\n\t\tdisplay: block;\n\t\tcolor: $wp-gray-dark;\n\n\t\t@media (min-width: 821px) {\n\t\t\tpadding: 0 8px;\n\t\t\theight: 77px;\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\tjustify-content: center;\n\n\t\t\t> span {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: 0 auto;\n\t\t\t}\n\t\t}\n\n\t\t@media (max-width: 820px) {\n\t\t\tpadding: 15px;\n\t\t\tfont-size: 1.2em;\n\t\t}\n\n\t\t&.active {\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 3px;\n\t\t\t\tbackground: $brand;\n\t\t\t\tcolor: $wp-gray-darker;\n\n\t\t\t\t@media (max-width: 820px) {\n\t\t\t\t\twidth: 3px;\n\t\t\t\t\theight: 100%;\n\t\t\t\t}\n\n\t\t\t}\n\t\t\t@media (max-width: 820px) {\n\t\t\t\tcolor: $brand;\n\t\t\t}\n\t\t}\n\n\t\t&:hover {\n\t\t\tbackground: #F9F9F9;\n\t\t\tcolor: $wp-gray-darker;\n\t\t}\n\t}\n\n\tspan.separator {\n\t\tdisplay: block;\n\t\twidth: 2px;\n\t\tbackground: #EFEFEF;\n\t\tmargin-top: 18px;\n\t\tmargin-bottom: 18px;\n\t\tmargin-right: 5px;\n\t\tmargin-left: 5px;\n\t\t@media (max-width: 820px) {\n\t\t\twidth: 80%;\n\t\t\theight: 2px;\n\t\t\tmargin: 10px 10%;\n\t\t}\n\t}\n\n\t@media (max-width: 820px) {\n\t\ttext-align: center;\n\t\ttop: 100%;\n\t\twidth: 100%;\n\t\tbottom: auto;\n\t\tbackground: #FFF;\t\t\n\n\t}\n\n\tbody.rtl & {\n\t\tleft: 0;\n\t\tright: auto;\n\t}\n}\n\n#wp-optimize-nav-page-menu {\n\tposition: absolute;\n\tright: 0;\n\tbottom: 0;\n\tdisplay: flex;\n\theight: 77px;\n flex-direction: column;\n padding: 0 20px;\n align-items: center;\n justify-content: center;\n\ttext-decoration: none;\n\n\t&:not(.opened) .dashicons-no-alt {\n\t\tdisplay: none;\n\t}\n\n\t&.opened .dashicons-menu {\n\t\tdisplay: none;\n\t}\n\n\t@media (min-width: 821px) {\n\t\tdisplay: none;\n\t}\n\n\tbody.rtl & {\n\t\tright: auto;\n\t\tleft: 0;\n\t}\n}\n\n/* DASHBOARD Menu */\n\n/* Calculate column width with a $spacing gutter */\n.wpo-dashboard-pages-menu {\n\tdisplay: flex;\n\tflex-wrap: wrap;\n\n\t/* Same size for 1 to 3 items */\n\t&[data-itemscount=\"1\"],\n\t&[data-itemscount=\"2\"],\n\t&[data-itemscount=\"3\"] {\n\t\t.wpo-dashboard-pages-menu__item {\n\t\t\twidth: calc(33.333% - 40px / 3);\n\t\t}\n\t}\n\n\t/* above 3 items, change sizes */\n\t@for $count from 4 to 6 {\n\t\t&[data-itemscount=\"$count\"] {\n\t\t\t.wpo-dashboard-pages-menu__item {\n\t\t\t\twidth: calc(100% / $count - $spacing * ($count - 1) / $count);\n\t\t\t}\n\t\t}\n\t}\n\n\t.postbox.wpo-dashboard-pages-menu__item {\n\t\tpadding: $spacing;\n\t\tmargin-right: $spacing;\n\t\tbox-sizing: border-box;\n\t\tpadding-bottom: 60px;\n\t\tmin-width: 0;\n\t\n\t\t&:last-child {\n\t\t\tmargin-right: 0;\n\t\t}\n\t\n\t\th3 {\n\t\t\tmargin-top: 0;\n\n\t\t\t.dashicons {\n\t\t\t\tcolor: $wp-secondary-gray;\n\t\t\t\tline-height: 1;\n\t\t\t\theight: 18px;\n\t\t\t\tmargin-top: -2px;\n\t\t\t\tmargin-right: 10px\n\t\t\t}\n\n\t\t}\n\n\t\ta {\n\t\t\tposition: absolute;\n\t\t\tbottom: $spacing;\n\t\t\tleft: $spacing;\n\t\t\twidth: calc(100% - $spacing * 2) !important;\n\t\t}\n\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\twidth: 100%;\n\t\t\tmargin-right: 0;\n\t\t\tpadding-bottom: 20px;\n\n\t\t\ta.button.button-large {\n\t\t\t\twidth: auto !important;\n\t\t\t\tleft: auto;\n\t\t\t\tbottom: auto;\n\t\t\t\ttop: 50%;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t\tright: $spacing;\n\t\t\t}\n\n\t\t\th3 {\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\tp {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t}\n\t\n\t}\n\n}\n","/* CSS for adverts */\n\n.updraft-ad-container.updated,\n.updraft-ad-container {\n\tmargin-left: 0px;\n\tmargin-right: 0px;\n\tposition: relative;\n\tpadding-right: 80px;\n}\n\n/* General notices (non WPO) on the WPO page */\n\nbody[class*=WP-Optimize],\nbody[class*=wp-optimize] {\n\t.notice, .error {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t}\n}\n\n/*\n\tMake the main error notice sticky\n*/\n\nbody.wp-core-ui.is-scrolled .wpo-main-error-notice {\n position:fixed;\n top: 132px;\n left: 160px;\n right: 0;\n z-index: 20;\n transition: .2s all;\n}\n\n/* Remove other notices */\n\ndiv#wpbody-content {\n\t> .notice:not(.wpo-notice),\n\t> .warning:not(.wpo-notice),\n\t> .updated:not(.wpo-notice),\n\t> .error:not(.wpo-notice) {\n\t\tdisplay: none;\n\t}\n}\n\n.toplevel_page_WP-Optimize.rtl .notice,\n.toplevel_page_WP-Optimize.rtl div.updated,\n.toplevel_page_WP-Optimize.rtl div.error,\n.toplevel_page_WP-Optimize .notice,\n.toplevel_page_WP-Optimize div.updated,\n.toplevel_page_WP-Optimize div.error {\n\tmargin-right: 0;\n}\n\nbody.rtl .updraft-ad-container.updated,\nbody.rtl .updraft-ad-container {\n\tpadding-right: 10px;\n\tpadding-left: 80px;\n}\n\n.updraft_notice_container {\n\tpadding: 7px;\n\tdisplay: -webkit-box;\n\tdisplay: -ms-flexbox;\n\tdisplay: flex;\n\t-webkit-box-align: left;\n\t-ms-flex-align: left;\n\talign-items: left;\n\tflex-direction: column;\n\theight: auto;\n\toverflow: hidden;\n}\n\n.updraft_review_notice_container {\n\tpadding: 12px;\n\tdisplay: flex;\n}\n\n.updraft_advert_content_left {\n\tfloat: none;\n\twidth: 65px;\n}\n\n.updraft_advert_content_left_extra {\n\tfloat: none;\n\twidth: 100px;\n\tpadding-right: 15px;\n\tdisplay: flex;\n\talign-items: center;\n}\n\n.updraft_advert_content_right {\n\tfloat: none;\n\twidth: auto;\n\toverflow: hidden;\n}\n\n.updraft_advert_bottom {\n\tmargin: 10px 0;\n\tpadding: 10px;\n\tfont-size: 140%;\n\tbackground-color: #FFF;\n\tborder-color: #E6DB55;\n\tborder: 1px solid;\n\tborder-radius: 4px;\n}\n\n.updraft_advert_button_container {\n\tmargin-bottom: 10px;\n\tdisplay: flex;\n\talign-items: center;\n}\n\n.updraft_advert_button_container .dashicons {\n\tmargin-left: 10px;\n}\n\n.updraft-advert-dismiss {\n\tposition: absolute;\n\tfont-size: 13px;\n\ttop: 5px;\n\tright: 10px;\n}\n\nbody.rtl .updraft-advert-dismiss {\n\tleft: 10px;\n\tright: auto;\n}\n\nh3.updraft_advert_heading {\n\tmargin-top: 5px !important;\n\tmargin-bottom: 5px !important;\n}\n\nh4.updraft_advert_heading {\n\tmargin-top: 2px !important;\n\tmargin-bottom: 3px !important;\n}\n\n.updraft_center_content {\n\ttext-align: center;\n\tmargin-bottom: 5px;\n}\n\n.updraft_notice_link {\n\tpadding-left: 5px;\n}\n\n.updraft_text_center {\n\ttext-align: center;\n}\n\n.wpo-main-header + .updraft-ad-container,\n.wpo-main-header + .updated {\n\tmargin-bottom: 20px;\n}\n\n.processed .updated {\n\tmargin: 0;\n}\n\n@media screen and (min-width: 560px) {\n\n\t.updraft_notice_container {\n\t\tflex-direction: row;\n\t\t-webkit-box-align: center;\n\t\t-ms-flex-align: center;\n\t\talign-items: center;\n\t}\n\n\t.updraft_advert_content_left, .updraft_advert_content_left_extra {\n\t\tfloat: left;\n\t}\n\n}\n\n@media screen and (max-width: 560px) {\n\n\tbody.rtl .updraft-ad-container.updated,\n\tbody.rtl .updraft-ad-container {\n\t\tpadding-right: 10px;\n\t\tpadding-left: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 768px) {\n\n\t.wpo-main-header + .updraft-ad-container,\n\t.wpo-main-header + .updated {\n\t\tmargin-right: 0;\n\t}\n\n}\n\n","/* Unused images / wpo_smush_image / image grid*/\n\n.wpo_unused_image, .wpo_smush_image {\n\tposition: relative;\n\tmargin: 4px;\n\twidth: calc(50% - 8px);\n\ttext-align: center;\n\n\t@media (min-width: 500px) {\n\t\twidth: calc(25% - 8px);\n\t}\n\n\t@media (min-width: $breakpoint-small) {\n\t\twidth: calc(16.6666% - 8px);\n\t}\n\n\t@media (min-width: 1100px) {\n\t\twidth: calc(12.5% - 8px);\n\t}\n\n\t.wpo_unused_image__input {\n\t\tposition: absolute;\n\t\ttop: 10px;\n\t\topacity: 0;\n\t\twidth: 0;\n\t\theight: 0;\n\t}\n\t\n\tlabel {\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\tposition: relative;\n\t\tpadding: 1px;\n\t\tborder: 3px solid $wp-lighter-gray;\n\t\tbox-sizing: border-box;\n\n\t\t&::before {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tpadding-top: 100%;\n\t\t}\n\n\t\t.thumbnail {\n\t\t\tposition: absolute;\n\t\t\ttop: 1px;\n\t\t\tleft: 1px;\n\t\t\twidth: calc(100% - 2px);\n\t\t\theight: calc(100% - 2px);\n\t\t\tbackground-repeat: no-repeat;\n\t\t\tbackground-size: cover;\n\t\t\tbackground-position: 50% 50%;\n\t\t\toverflow: hidden;\n\t\t\tbackground: rgba(220, 220, 220, 0.2);\n\n\t\t\timg {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: 0;\n\t\t\t\tmax-height: 100%;\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 50%;\n\t\t\t\tleft: 50%;\n\t\t\t\ttransform: translate(-50%,-50%);\n\t\t\t\tuser-select: none;\n\t\t\t}\n\n\t\t}\n\n\t\tspan.dashicons {\n\t\t\tposition: absolute;\n\t\t\ttop: 50%;\n\t\t\tleft: 50%;\n\t\t\ttransform: translate(-50%, -50%);\n\t\t\tfont-size: 25px;\n\t\t\twidth: 25px;\n\t\t\topacity: .2;\n\t\t}\n\t}\n\t\n\t.wpo_unused_image__input:checked + label,\n\t&.selected label {\n\t\tborder-color: $wp-blue;\n\t}\n\n\t&:focus-within label {\n\t\tbox-shadow: 0 0 4px $wp-blue;\n\t}\n\t\n\ta, a.button, a.button:active {\n\t\tposition: absolute;\n\t\tz-index: 2;\n\t\tbottom: 13px;\n\t\tleft: 50%;\n\t\ttransform: translateX(-50%);\n\t\tdisplay: none;\n\t}\n\n\t&:hover {\n\n\t\ta, a.button, a.button:active {\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t}\n\n}\n\n#wpo_unused_images, #wpo_unused_images_trash, #wpo_smush_images_grid {\n\twidth: calc(100% + 8px);\n margin-left: -4px;\n margin-right: -4px;\n\tmax-height: 500px;\n\toverflow-y: auto;\n display: flex;\n\tflex-wrap: wrap;\n\tposition: relative;\n\n\t.wpo-fieldgroup {\n\t\twidth: 100%;\n\t\tmargin: 4px;\n\t}\n\n}\n\n#wpo_unused_images a, #wpo_unused_images_trash a {\n\toutline: none;\n}\n\n.wpo-unused-images__premium-mask,\n.wpo-unused-image-sizes__premium-mask {\n\tposition: absolute;\n\ttop: 0; \n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tz-index: 1;\n\tbackground: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.85));\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n}\n\n.wpo-unused-image-sizes__premium-mask {\n\tbackground: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.85));\n}\n\na.wpo-unused-images__premium-link {\n\tbackground: #FFF;\n\tdisplay: inline-block;\n\tpadding: 10px;\n\tborder-radius: 3px;\n\tbox-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);\n}\n","/* More Plugins page */\n\n/* Plugins family / Premium */\n\np.wpo-plugin-installed {\n color: $success;\n}\n\n/* Settings repeater */\n\n.wpo-repeater__add {\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tfont-weight: bold;\n\ttext-decoration: none;\n\t.dashicons {\n\t\ttransform: translateY(-2px);\n\t}\n}\n\n\n/* Plugin familly tab */\n\n.wpo-plugin-family__premium h2 {\n margin: 0;\n padding: 25px;\n}\n\n.wpo-plugin-family__plugins {\n display: flex;\n flex-wrap: wrap;\n\tpadding-left: 1px;\n\tpadding-bottom: 1px;\n}\n\n.wpo-plugin-family__plugin {\n flex: auto;\n width: 100%;\n padding: 30px;\n box-sizing: border-box;\n border: 1px solid #E3E4E7;\n\tmargin-left: -1px;\n\tmargin-bottom: -1px;\n\n\t@media (min-width: $breakpoint-small) {\n\t\twidth: 50%;\n\n\t\t.wpo-plugin-family__free & {\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n\t@media (max-width: 1080px) {\n\t\t.wpo-plugin-family__free & {\n\t\t\twidth: 50%;\n\t\t}\n\t}\n\n\t@media (max-width: $breakpoint-small) {\n\t\t.wpo-plugin-family__free & {\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n}\n\ndiv#wp-optimize-nav-tab-wpo_mayalso-may_also-contents .wpo-tab-postbox {\n padding: 0;\n}\n\n/* Added for WPO Premium Features tab */\n.wpo_feature_cont {\n\twidth: 64.5%;\n}\n\n.wpo_plugin_family_cont {\n\twidth: 34.5%;\n}\n\n@media (max-width: 1080px) {\n\n\t.wpo_feature_cont,\n\t.wpo_plugin_family_cont {\n\t\twidth: 100%;\n\t\tfloat: none;\n\t\tmargin: 0;\n\t}\n\n}\n\n.wpo_feature_cont,\n.wpo_plugin_family_cont {\n\n\theader {\n\t\tpadding: 20px;\n\n\t\t@media (max-width: 1080px) {\n\t\t\tpadding: 40px;\t\t\n\t\t}\n\n\t\th2 {\n\t\t\tmargin: 0;\n\t\t}\n\t\n\t\tp {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t}\n\n}\n\n.wpo_feat_table, .wpo_feat_th, .wpo_feat_table td {\n\tborder: none;\n\tborder-collapse: collapse;\n\tbackground-color: white;\n\tfont-size: 120%;\n\ttext-align: center;\n}\n\n.wpo_feat_table {\n\ttd {\n\t\tborder: 1px solid #F1F1F1;\n\t\tborder-bottom-width: 4px;\n\t\tpadding: 15px;\n\t}\n\n\ttd:nth-child(2), td:nth-child(3) {\n\t\tbackground: rgba(241, 241, 241, 0.38);\n\t}\n\n\tp {\n\t\tpadding: 0px 10px;\n\t\tmargin: 5px 0px;\n\t\tfont-size: 13px;\n\t}\n\n\th4 {\n\t\tmargin: 5px 0px;\n\t}\n\n\t.dashicons {\n\t\twidth: 25px;\n\t\theight: 25px;\n\t\tfont-size: 25px;\n\t\tline-height: 1;\n\t}\n\n\t.dashicons-yes, .updraft-yes {\n\t\tcolor: green;\n\t}\n\t\n\t.dashicons-no-alt, .updraft-no {\n\t\tcolor: red;\n\t}\n\t\n\ttr.wpo-main-feature-row td {\n\t\tbackground: #f1f1f1;\n\t\tborder-bottom-color: #fafafa;\n\n\t\timg.wpo-premium-image {\n\t\t\twidth: 64px;\n\t\t}\n\t}\n}\n\n\n\n.wpo-premium-image {\n\tdisplay: none;\n}\n\n@media screen and (min-width: 720px) {\n\n\t#wpoptimize_table_list_filter {\n\t\twidth: 40%;\n\t}\n\n\t.wpo-premium-image {\n\t\tdisplay: block;\n\t\tfloat: left;\n\t\tpadding: 16px 18px;\n\t\twidth: 30px;\n\t\theight: auto;\n\t}\n\n}\n\n@media screen and (min-width: 1220px) {\n\n\t.wpo_feat_table td:nth-child(2), .wpo_feat_table td:nth-child(3) {\n\t\twidth: 110px;\n\t}\n\n}\n\n.other-plugin-title {\n\ttext-decoration: none;\n}\n\n@media screen and (max-width: $breakpoint-small) {\n\n\ttable.wpo_feat_table {\n\n\t\tdisplay: block;\n\n\t\ttr {\n\t\t\tdisplay: flex;\n\t\t\tflex-wrap: wrap;\n\t\t}\n\n\t\ttd {\n\t\t\tdisplay: block;\n\n\t\t\t&:first-child {\n\t\t\t\twidth: 100%;\n\t\t\t\tborder-bottom: none;\n\t\t\t}\n\n\t\t\t&:not(:first-child) {\n\t\t\t\twidth: 50%;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t}\n\n\t\t\t&:first-child:empty {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t&[data-colname]::before {\n\t\t\t\tcontent: attr(data-colname);\n\t\t\t\tfont-size: 0.8rem;\n\t\t\t\tcolor: #CCC;\n\t\t\t\tline-height: 1;\n\t\t\t}\n\t\t}\n\t}\n\n}\n\n.wpo-cache-feature-image {\n\twidth: 40px;\n\tpadding: 16px 14px;\n}\n","\n/* tablesorter */\n\n#wp-optimize-wrap {\n\n\t.wp-list-table {\n\t\t\n\t\ttd {\n\t\t\tword-break: break-all; \n\t\t}\n\n\t}\n\n\t@media screen and (max-width: $breakpoint-small ) {\n\n\t\t.wp-list-table.wp-list-table-mobile-labels tbody {\n\n\t\t\t&, tr, th, td {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\n\t\t\ttd {\n\t\t\t\tpadding: 3px 8px 3px 35%;\n\t\t\t\tword-break: break-word;\n\t\t\t\tbox-sizing: border-box; \n\n\t\t\t\t&::before {\n\t\t\t\t\tcolor: $wp-light-gray;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\t\t\n\n\t\t.wp-list-table.wp-list-table-mobile-labels thead {\n\n\t\t\t&, tr {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\n\t\t\tth.column-primary {\n\t\t\t\tdisplay: block;\n\t\t\t\tbox-sizing: border-box; \n\t\t\t}\n\n\t\t\tth:not(.column-primary) {\n\t\t\t\tdisplay: none !important; \n\t\t\t}\n\n\t\t}\n\n\t}\n\n\tbody.rtl & {\n\t\t.wpo-table-list-filter {\n\t\t\ttext-align: left;\n\t\t}\n\t\t@media screen and (max-width: $breakpoint-small ) {\n\t\t\t.wp-list-table.wp-list-table-mobile-labels tbody {\n\t\t\t\ttd {\n\t\t\t\t\tpadding: 3px 35% 3px 8px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n.tablesorter-headerRow th {\n\tvertical-align: top;\n}\n\nth:not(.sorter-false) .tablesorter-header-inner {\n\n\tcolor: #0074ab;\n\n\t&::after {\n\t\tcontent: '';\n\t\tfont-family: 'dashicons';\n\t\tfont-size: 20px;\n\t\tline-height: 20px;\n\t\theight: 20px;\n\t\twidth: 20px;\n\t\tdisplay: none;\n\t\tvertical-align: bottom;\n\t}\n\n}\n\nth.tablesorter-header.tablesorter-headerAsc,\nth.tablesorter-header.tablesorter-headerDesc {\n font-weight: 500;\n border-bottom-color: $wp-blue;\n\t.tablesorter-header-inner::after {\n\t\tdisplay: inline-block;\n\t}\n}\n\nth.tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner::after {\n content: \"\\f140\";\n}\n\nth.tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner::after {\n content: \"\\f142\";\n}\n\nth.tablesorter-header:focus {\n outline: none;\n\tbox-shadow: 0 0 3px rgba(0, 116, 171, 0.78);\n\n\t&:not(.tablesorter-headerAsc):not(.tablesorter-headerDesc) .tablesorter-header-inner::after {\n\t\tcontent: \"\\f142\";\n\t\topacity: 0.5;\n\t}\n\n}\n\n.tablesorter.hasFilters tr.filtered {\n display: none;\n}\n",".wpo-text__dim {\n .dashicons-info {\n margin-top: 2px;\n margin-right: 5px;\n border-radius: 30px;\n background: #fff;\n color: $red;\n }\n}\n\n#page_cache_length_value {\n height: 28px;\n position: relative;\n top: 2px;\n}\n\n#wp_optimize_preload_cache_status {\n margin-left: 10px;\n display: inline-block;\n color: #82868B;\n font-size: smaller;\n}\n\n.align-left {\n margin: 10px 10px 0px 0px;\n float: left;\n}\n\ntextarea.cache-settings {\n display: block;\n clear: both;\n min-height: 225px;\n overflow: scroll;\n min-width: 75%;\n margin: 10px 0px;\n}\n\n#wp-optimize-purge-cache, \n#wp-optimize-purge-cache ~ span, \n#wp-optimize-purge-cache ~ img {\n vertical-align: middle;\n top: auto;\n}\n\n#wp-optimize-nav-tab-wpo_cache-cache-contents .wpo-error {\n font-size: 12px;\n}\n\n\n#wpo_browser_cache_error_message {\n padding-top: 10px;\n padding-bottom: 10px;\n margin-left: 0;\n margin-bottom: 10px;\n \n &:empty {\n display: none;\n }\n}\n\n#wp-optimize-nav-tab-wpo_cache-advanced-contents,\n#wp-optimize-nav-tab-wpo_cache-preload-contents,\n#wp-optimize-nav-tab-wpo_cache-cache-contents {\n label {\n font-weight: 600;\n em {\n font-weight: normal;\n }\n }\n}\n\n.wpo-gzip-already-enabled span.dashicons.dashicons-yes,\n.wpo-enabled > span.dashicons.dashicons-yes {\n font-size: 40px;\n width: 40px;\n height: 40px;\n line-height: 40px;\n vertical-align: middle;\n color: green;\n}\n","#wp-optimize-wrap {\n\n\t.filename {\n\t\tdisplay: inline-block;\n\t\tpadding: 6px 0;\n\t}\n\n\t.no-files-yet .filename {\n\t\tfont-style: italic;\n\t}\n\n\t.processed {\n\t\tmargin: 0;\n\t}\n\n\t.processed .wpo_min_log {\n\t\tpadding: 8px;\n\t\tbackground: white;\n\t\tborder: 1px solid #CDCDCD;\n\t\tborder-radius: 4px;\n\t\tline-height: 1.5em;\n\t\tul {\n\t\t\toverflow-x: auto;\n\t\t\tli {\n\t\t\t\twhite-space: nowrap;\n\t\t\t\t&.failed .wpo_min_file_url {\n\t\t\t\t\tcolor: #dc3232;\n\t\t\t\t}\n\t\t\t\t&.disable-list-item {\n\t\t\t\t\topacity: 0.5;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\th5 {\n\t\t\tmargin-top: 0;\n\t\t\tmargin-bottom: 8px;\n\t\t\tborder-bottom: 1px solid #cdcdcd;\n\t\t\tpadding-bottom: 6px;\n\t\t}\n\t\t.wpo_min_file_debug {\n\t\t\tcolor: #9c9c9c;\n\t\t\tdisplay: inline-block;\n\t\t\t&::before {\n\t\t\t\tcontent: '—';\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tmargin: 0 10px;\n\t\t\t}\n\t\t}\n\t}\n\n\t.show-if-enabled {\n\t\tdisplay: none;\n\t}\n\n\t.is-enabled .show-if-enabled {\n\t\tdisplay: block;\n\t}\n\n\t.wpo-page:not(.is-enabled) .wpo-minify-features {\n\t\tdisplay: none;\n\t}\n\n\t.wpo-page[data-whichpage=\"wpo_minify\"]:not(.is-enabled) .nav-tab-wrapper > a:not([data-tab=\"status\"]):not([role=\"toggle-menu\"]){\n\t\tdisplay: none;\n\t}\n\t\n\t.wpo-minify-features {\n\t\tpadding-top: 1em;\n\t\tmargin-top: 1em;\n\t\tborder-top: 1px solid #bbb;\n\t}\n\n\t.wpo-minify-features .wpo-fieldgroup__subgroup {\n\t\tmargin-bottom: 1em;\n\t}\n\n\t.wpo-fieldgroup__subgroup.wpo_min_enable_minify + .wpo-fieldgroup__subgroup {\n\t\tdisplay: none;\n\t}\n\t\n\t.wpo-fieldgroup__subgroup.wpo_min_enable_minify.enabled + .wpo-fieldgroup__subgroup {\n\t\tdisplay: block;\n\t}\n\n\t.wpo-fieldgroup__subgroup.wpo_min_enable_minify:not(.enabled) {\n\t\tmargin-bottom: 0;\n\t}\n\n\t.defer-js-settings {\n\t\tpadding-left: 1em;\n\t\tborder-left: 2px solid #E2E2E2;\n\t\tmargin-left: 0.5em;\n\t}\n\n\t/* \n\t\tAsset preload table\n\t*/\n\t.asset-preload-list {\n\t\tmargin-bottom: 1em;\n\t\ttd.asset-href {\n\t\t\twidth: 55%;\n\t\t}\n\n\t\ttd.asset-crossorigin {\n\t\t\twidth: 10%;\n\t\t}\n\t\n\t\ttr.editing {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\ttr.form {\n\t\t\tbox-shadow: 0 2px 4px #00000021;\n\t\t}\n\n\t\ttr.form td {\n\t\t\tbackground: #FFF;\n\t\t\tborder: none;\n\t\t\tpadding: 10px;\n\t\t}\n\t\t\n\t\ttr.editing + tr.form td:last-child {\n\t\t\tborder-radius: 0 5px 5px 0;\n\t\t}\n\n\t\ttr.editing + tr.form td:first-child {\n\t\t\tposition: relative;\n\t\t\t&::before {\n\t\t\t\tcontent: '';\n\t\t\t\twidth: 10px;\n\t\t\t\theight: 10px;\n\t\t\t\tbackground: #FFF;\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\ttransform: translate(10px, -5px) rotate(45deg);\n\t\t\t}\n\t\t}\n\t\ttbody + tr.form {\n\t\t\ttd {\n\t\t\t\tpadding-top: 37px;\n\t\t\t\tposition: relative;\n\t\t\t\t&[data-label]::before {\n\t\t\t\t\tcontent: attr(data-label);\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: 1em;\n\t\t\t\t\tleft: 10px;\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tcolor: #D0D2D4;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tinput#preload_href {\n\t\t\twidth: 100%;\n\t\t}\n\t\t\n\t\tselect#preload_type {\n\t\t\twidth: 100%;\n\t\t}\n\t\t\n\t\ttd.asset-preload-form--actions,\n\t\ttd.asset-edit {\n\t\t\ttext-align: right;\n\t\t\tbutton {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\t&.wpo-asset--edit {\n\t\t\t\t\t&::after {\n\t\t\t\t\t\tcontent: '|';\n\t\t\t\t\t\tpadding-left: 6px;\n\t\t\t\t\t\tpadding-right: 4px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","/* Modal window */\nbody.wpo-modal-is-opened {\n\toverflow: hidden;\n}\n\n.wpo-modal--container {\n\tposition: fixed;\n top: 0;\n\tleft: 0;\n\tpadding: 3em;\n width: 100%;\n\theight: 100%;\n\tbox-sizing: border-box;\n\tz-index: 9999;\n\toverflow: auto;\n}\n\n.wpo-modal {\n\tposition: relative;\n background: #FFF;\n\twidth: calc(100% - 6em);\n\ttop: 50%;\n\ttransform: translateY(-50%);\n\tmargin: 0 auto;\n padding: 2em;\n box-sizing: border-box;\n\tz-index: 2;\n\t> .wpo-modal--close {\n\t\tborder: none;\n\t\tbackground: none;\n\t\tposition: absolute;\n\t\ttop: 10px;\n\t\tright: 10px;\n\t\twidth: 20px;\n\t\theight: 20px;\n\t\tline-height: 1;\n\t\tpadding: 0;\n\t}\n}\n\n.wpo-modal--bg {\n\tposition: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n\tbackground: rgba(0, 0, 0, 0.74);\n\tz-index: 1;\n}\n\n.wpo-confirm .wpo-modal--content > h3 {\n font-size: 2em;\n}\n\n.wpo-confirm .wpo-modal--content > h3 .dashicons {\n font-size: 30px;\n width: 30px;\n height: 30px;\n transform: translateY(-5px);\n}\n.wpo-confirm .wpo-modal--content > h3 .dashicons.dashicons-warning {\n\tcolor: #feb901;\n}\n",".power-tweaks--list {\n\t@media (min-width: 780px) {\n\t\tdisplay: flex;\n\t flex-direction: row;\n\t\tflex-wrap: wrap;\n\t}\n\t\n\t.wpo-power-tweak {\n\t\twidth: 100%;\n\t\t@media (min-width: 780px) {\n\t\t\twidth: calc(50% / 2 - 1em);\n\t\t\tmargin-right: 1em;\n\t\t}\n\t\t@media (min-width: 1080px) {\n\t\t\twidth: calc(100% / 3 - 1em);\n\t\t\tmargin-right: 1em;\n\t\t}\n\t\tbackground: #f2f4f5;\n\t\tborder-radius: 1em;\n\t\tpadding: 1.5em;\n\t\tmargin-bottom: 1em;\n\t\tbox-sizing: border-box;\n\n\t\th4 {\n\t\t\tmargin-top: 0;\n\t\t}\n\t\t\n\t\t.description {\n\t\t\tmargin-bottom: 1em;\n\t\t}\n\n\t\t.details {\n\t\t\tpadding: 1em;\n\t\t\tbackground: #FFF;\n\t\t\tbox-shadow: 0 2px 3px rgba(0,0,0,0.1);\n\t\t\tmargin-top: 1em;\n\t\t\tmargin-bottom: 1em;\n\t\t}\n\t\t\n\t\t.actions {\n\t\t\tmargin-top: 1em;\n\t\t\tmargin-bottom: 1em;\n\t\t}\n\n\t\t.last-run, .last-updated {\n\t\t\tmargin-top: 1em;\n\t\t\tfont-size: 0.8em;\n\t\t\tcolor: #a9a9a9;\n\t\t}\n\n\t\t.tweak-is-running {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t&.running {\n\t\t\tposition: relative;\n\t\t\t.tweak-is-running {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: center;\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbackground: rgb(242, 244, 245, 0.9);\n\t\t\t\tz-index: 1;\n\t\t\t\tborder-radius: 1em;\n\t\t\t\tfont-size: 1.7em;\n\t\t\t\t.spinner {\n\t\t\t\t\tvisibility: visible;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\ta.show-faqs span.dashicons {\n\t\tfont-size: inherit;\n\t\theight: auto;\n\t\twidth: auto;\n\t\tline-height: inherit;\n\t\ttext-decoration: none;\n\t\tmargin-left: 4px;\n\t}\n\t\n}\n"]}
1
+ {"version":3,"sources":["css/wp-optimize-admin.scss","css/admin.css","css/scss/_layout.scss","css/scss/_common.scss","css/scss/_menu-and-tabs.scss","css/scss/_notices.scss","css/scss/_image-list.scss","css/scss/_plugin-family-tab.scss","css/scss/_table-sorter.scss","css/scss/_cache.scss","css/scss/_minify.scss","css/scss/_modal.scss","css/scss/_power-tweaks.scss"],"names":[],"mappings":"AAAA,YAAY;;AAcZ,gBAAgB;;ACdhB;CACC,yBAAyB;CACzB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,2IAA2I;CAC3I,iBAAiB;CACjB,iBAAiB;CACjB,iBAAiB;CAEjB,uCAAuC;CACvC;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,kBAAkB;CAClB;;AAED,gBAAgB;;AAChB;CACC,4BAA4B;CAC5B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED,gBAAgB;;AAChB;CACC,YAAY;CACZ,WAAW;CACX,UAAU;CACV;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,mBAAmB;CACnB;;AAED,oBAAoB;;AACpB;CACC,eAAe;CACf,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf;;AAED,gBAAgB;;AAChB;;CAEC,YAAY;CACZ,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,WAAW;CACX;;AAED,qBAAqB;;AACrB;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV;;AAED;;CAEC;EACC,0BAA0B;EAC1B;;CAED;EACC,yBAAyB;EACzB;;CAED;;AAED;;CAEC;EACC,yBAAyB;EACzB;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED;;CAEC;EACC,aAAa;EACb;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;EACC,YAAY;EACZ;;CAED;;AAED,qRAAqR;;AAErR,uBAAuB;;AAEvB;CACC,iBAAiB;CACjB,yBAAyB;CACzB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB,eAAe;CACf,uBAAuB;CACvB,YAAY;CACZ,gBAAgB;CAChB,aAAa;CACb,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED,sCAAsC;;AACtC;CACC,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB,iBAAiB;CACjB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,cAAc;CACd,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,WAAW;CACX;;AAED;CACC,eAAe;CACf,2BAA2B;CAC3B;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT;;AAED;;CAEC;EACC,aAAa;EACb,kBAAkB;EAClB;;CAED;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,mBAAmB;CACnB,SAAS;CACT,UAAU;CACV;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,uBAAuB;;AACvB;;CAEC,cAAc;CACd;;AAED;CACC,+BAA+B;CAC/B,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;;CAEC,sBAAsB;CACtB,UAAU;CACV,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,sBAAsB;CACtB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB;;AAED;;CAEC;EACC,kBAAkB;EAClB,oBAAoB;EACpB,eAAe;EACf,uBAAuB;EACvB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,mBAAmB;EACnB,eAAe;EACf;;CAED;EACC,iBAAiB;EACjB,oBAAoB;EACpB;;CAED;;AAED;CACC,uBAAuB;CACvB;;AAED;;CAEC,uBAAuB;CACvB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;;CAEC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,cAAc;CACd,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED,oBAAoB;;AACpB;CACC,kBAAkB;CAClB,2BAA2B;CAC3B,8BAA8B;CAC9B,eAAe;CACf,UAAU;CACV;;AAED;CACC,iCAAiC;CACjC,eAAe;CACf;;AAED;;;;;;;;CAQC,sBAAsB;CACtB,uBAAuB;CACvB;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,WAAW;CACX;;AAED;;CAEC,UAAU;CACV;;AAED;;CAEC,UAAU;CACV;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,0BAA0B;CAC1B,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,aAAa;CACb;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ,aAAa;CACb,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,iCAAiC;CACjC;;AAED;CACC,cAAc;CACd,YAAY;CACZ,mBAAmB;CACnB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB,sBAAsB;CACtB,oBAAoB;CACpB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;;;CAGC,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,6BAA6B;CAC7B,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AC7kBD;;CAEC,oBAAoB;CAIpB;;AAHA;;CAHD;;EAIE,iBAAiB;EAElB;CADC;;AAGF;CACC,mBAAmB;CACnB,iBAAiB;CAIjB;;AAHA;;CAHD;EAIE,mBAAmB;EAEpB;CADC;;AAGF;;CAEC,kBAAkB;CASlB;;AAPA;;CAJD;;EAKE,eAAe;EAMhB;CALC;;AAED;;CARD;;EASE,mBAAmB;EAEpB;CADC;;AAGF;CACC,mBAAmB;CACnB,kBAAkB;CASlB;;AAPA;;CAJD;EAKE,mBAAmB;EAMpB;CALC;;AAED;;CARD;EASE,gBAAgB;EAEjB;CADC;;AAGF,eAAe;;AAEf;;CAEC,aAAa;CACb,gBAAgB;CAChB,UAAU;CACV,YAAY;CACZ,iBAAiB;CACjB,SAAS;CACT,cAAc;;CAuLd;;AArLA;;CAVD;EAWE,cAAc;EAoLf;CAnLC;;AAED;EACC,qBAAc;EAAd,cAAc;EACd,2BAAuB;MAAvB,uBAAuB;EACvB,sBAAwB;MAAxB,wBAAwB;EACxB,mBAAmB;EACnB,aAAa;EACb,eAAe;EACf,gBAAgB;EAChB,mBAAmB;EACnB,kBAAkB;CAClB;;AAED;EACC,mBAAmB;EACnB,QAAQ;EACR,SAAS;EACT,4BAA4B;EAC5B,YAAY;CACZ;;AAED;EACC,UAAU;EACV,iBAAiB;EACjB,eAA0B;EAC1B,iBAAiB;CAKjB;;AAHA;;CAND;EAOE,cAAc;EAEf;CADC;;AAGF;EACC,UAAU;EACV,kBAAkB;EAClB,mBAAmB;EACnB,SAAS;EACT,kBAAkB;EAClB,oBAAoB;EACpB,+BAA+B;EAC/B,WAAW;CAkBX;;AAhBA;GACC,sBAAsB;GACtB;;AAED;GACC,eAAgC;GAChC,mBAAmB;GACnB,YAAY;GACZ,aAAa;GACb,kBAAkB;GAClB,oBAAoB;GACpB;;AAED;;CAvBD;EAwBE,cAAc;EAEf;CADC;;AAGF;EACC,cAAc;EACd,oBAAoB;EACpB,iBAAiB;CAcjB;;AAbA;;CAJD;EAKE,cAAc;EAYf;CAXC;;AAED;GACC,sBAAsB;GACtB,aAAa;GACb,iBAAiB;CACjB;;AACD;GACC,eAAgC;CAChC;;AAIF;;CAEC;GACC,aAAa;GACb,sBAAsB;EACtB;CAED;;AAGA;;CADD;EAEE,WAAW;EAaZ;CAZC;;AACD;;CAJD;EAKE,QAAQ;EACR,WAAW;EACX,mBAAmB;EAQpB;CAPC;;AACD;;CATD;EAUE,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb,UAAU;EAEX;CADC;;AAID;;CADD;EAEE,OAAO;EAER;CADC;;AAID;;CADD;EAEE,WAAW;EAEZ;CADC;;AAEF;EACC,2CAA2C;CAC3C;;AAED,SAAS;;AACT;EACC,aAAa;EACb,QAAQ;CA8BR;;AA5BA;GACC,mBAAmB;GACnB,oBAAoB;GACpB,eAAe;GACf,mBAAmB;GACnB;;AAED;GACC,mBAAmB;GACnB,WAAW;GACX,SAAS;GACT;;AAED;GACC,YAAY;GACZ,QAAQ;GACR,gCAAgC;GAChC,6BAA6B;GAU7B;;AARA;IACC,mBAAmB;IACnB,WAAW;IACX,YAAY;IACZ,aAAa;IACb,iBAAiB;IACjB,mBAAmB;IACnB;;AAKF;;CADD;EAEE,YAAY;EAYb;CAXC;;AACD;;CAJD;EAKE,SAAS;EACT,UAAU;EAQX;CAPC;;AACD;;CARD;EASE,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb,UAAU;EAEX;CADC;;AAID;;CADD;EAEE,YAAY;EACZ,QAAQ;EAET;CADC;;AAMF;EACC,iBAAiB;EACjB;;AACD;;CAJD,YAUC;CALC;;AAED;CACC,cAAc;CACd;;AAGF;CACC,mBAAmB;CACnB,iBAAiB;CACjB,oBAAoB;CACpB,iFAAiF;CAkBjF;;AAhBA;EACC,eAAe;EACf;;AAED;EACC,iBAAiB;EACjB;;AAED;EACC,kBAAkB;EAMlB;;AALA;GACC,sBAAsB;GACtB,iBAAiB;GACjB,kBAAkB;GAClB;;AAIH,aAAa;;AACb;;CAEC;EACC,aAAa;EACb,aAAa;EACb,uBAAuB;EACvB,mBAAmB;EACnB;;CAED;EACC,YAAY;EACZ,uBAAuB;EACvB,0BAA0B;EAC1B;;CAED;;ACjSD;;CAEC;EACC,qBAAqB;EACrB;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED,mBAAmB;;AAGnB,aAAa;;AAKX;;CADD;EAEE,eAAe;EACf,YAAY;EAEb;CADC;;AAGF;EACC,eAAY;CACZ;;AAED;;EAEC,eAAe;EACf,gBAAgB;CAChB;;AAED;EACC,YAAY;EACZ,mBAAmB;EACnB,cAAc;EACd,kBAAkB;EAClB,iBAAiB;EACjB,oBAAoB;CACpB;;AAIF;;CAEC,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,QAAQ;CACR,gBAAgB;CAChB,SAAS;CACT,4BAA4B;CAC5B,aAAa;CACb,eAAe;CACf;;AAED;CACC,eAAe;CACf,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,qBAAqB;CACrB,mBAAmB;CACnB;;AAED,oBAAoB;;AAEpB;CACC,sBAAsB;CACtB,gBAAgB;CAChB,0BAA0B;CAC1B,oBAA6B;CAC7B,iBAAiB;CACjB,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,UAAU;CACV,eAAe;CACf,iBAAiB;CACjB;;AAED;CACC;EACC,kBAAkB;EAClB;CACD;;AAED,aAAa;;AAEb;CACC,aAAa;;CAMb;;AAJA;EACC,cAAc;EACd;;AAIF;;CAEC,cAAc;CACd;;AAIA;EACC,cAAc;EACd;;AAGF,iBAAiB;;AAEjB;CACC,oBAA6B;CAC7B,mBAAmB;CACnB,aAAc;;CA0Cd;;AAxCA;CACC,mBAAmB;CACnB;;AAED;EACC,cAAc;CACd;;AAED;EACC,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;EACC,iBAAiB;CACjB;;AAED;EACC,mBAAmB;EACnB,oBAAoB;EACpB,mBAAmB;CACnB;;AAED;EACC,cAAc;CACd;;AAIA;GACC,eAAe;GACf,mBAAmB;GACnB,kBAAkB;GAClB;;AAOF;CACC,oBAAoB;CACpB;;AAGF,kBAAkB;;AAGjB;EACC,mBAAmB;EACnB,sBAAsB;EACtB,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,uBAAuB;;EAyFvB;;AAvFA,gCAAgC;;AAChC;GACC,WAAW;GACX,SAAS;GACT,UAAU;GACV;;AAED,gBAAgB;;AAChB;GACC,mBAAmB;GACnB,gBAAgB;GAChB,OAAO;GACP,QAAQ;GACR,SAAS;GACT,UAAU;GACV,0BAAmC;GACnC,eAAgB;;GAoChB;;AAlCA;CACC,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,WAAW;CACX,UAAU;CACV,YAAY;CACZ,0BAAgC;CAChC,0BAAgC;CAChC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,YAAY;CACZ,WAAW;CACX,WAAW;CACX,SAAS;CACT,mBAAmB;CACnB,0BAAqC;CACrC,wBAAuB;CACvB;;AAjCF,mCAmCC,qBAAqB;CASrB;;AARA;CACC,oBAAoB;CACpB,0BAAgC;CAIhC;;AAHA;CACA,mBAAmB;CAClB;;AAKH;GACC,oBAAqB;GACrB,qBAAuB;;GAmBvB;;AAlBA;CACC,iBAAiB;CACjB,mBAAmB;CACnB,4BAA4B;CAC5B;;AAED;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,YAAY;CACZ,WAAW;CACX,UAAU;CACV,SAAS;CACT,iBAAiB;CACjB,aAAa;CACb;;AAGF;;GAEC,yCAA+C;GAC/C,sBAA4B;GAC5B,aAAa;GACb;;AAED;GACC,iDAAgE;GAChE;;AAIF;EACC,eAAe;EACf,YAAY;EAWZ;;AAVA;GACC,eAAe;GACf,uBAAuB;GACvB;;AACD;CACC,kBAAkB;CAClB;;AACD;GACC,4BAA4B;CAC5B;;AAGF;EACC,eAAe;EACf;;AAIF;CACC,iBAAiB;CACjB;;AAED,gBAAgB;;AAEhB;CACC,mBAAmB;CACnB,sBAAsB;CAItB;;AAHA;;CAHD;EAIE,eAAe;EAEhB;CADC;;AAGF;CACC,WAAW;CACX,mBAAmB;CACnB,mBAAmB;CACnB,UAAU;CACV,YAAY;CACZ,iBAAiB;CACjB,cAAc;CACd,aAAa;CACb,iBAAiB;CACjB,WAAW;CACX,sFAAsF;CACtF,qBAAqB;CAKrB;;AAHA;;CAdD;EAeE,YAAY;EAEb;CADC;;AAGF;CACC,cAAc;CACd,kBAAkB;CAClB,YAAY;CACZ;;AAIA;EACC,sBAAsB;EACtB;;AAED;EACC,WAAW;EACX,oBAAoB;EACpB,0FAA0F;EAC1F;;AAED;EACC,WAAW;EACX;;AAIF;;CAEC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,sBAAsB;CACtB,cAAc;CACd,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,uBAAuB;CACvB;;AAED;IACI,aAAa;CAChB;;AAED,qBAAqB;;AAErB;CACC,eAAe;CACf,mBAAmB;CACnB,QAAQ;CACR,SAAS;CACT,OAAO;CACP,UAAU;CACV,YAAY;CACZ,aAAa;CACb,cAAc;CACd,WAAW;CACX,4CAA4C;CAC5C;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,YAAY;CACZ;;AAED;CACC,qCAAqC;CACrC,0BAA0B;CAC1B;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AChcD,UAAU;;AAEV;IACI,iBAAiB;CACpB,oBAAoB;CACpB,mBAAmB;CAuKnB;;AArKA;;;;EAIC,aAAa;EACb,wBAAwB;EACxB,UAAU;EACV,kCAAkC;EAClC,kBAAkB;EAClB,eAAgB;EAiChB;;AA/BA;GACC,eAAe;GACf,eAAe;GACf,eAA0B;GAC1B,gBAAgB;GAChB,YAAY;GACZ,aAAa;GACb;;AAED;GACC,sBAAsB;GACtB,iBAAiB;GACjB,aAAa;GACb,gBAAgB;GAChB,eAAe;GACf,mBAAmB;GACnB,iBAAiB;GACjB,0BAA0B;GAC1B,qBAAsB;GAYtB;;AAXA;CACC,oBAAqB;CACrB,YAAY;CACZ;;AACD;CACC,iBAAiB;CACjB,YAAY;CACZ;;AACD;CACC,cAAc;CACd;;AAIH;;;;EAIC,iBAAiB;EACjB,wCAAwC;EACxC,0BAA2B;EAK3B;;AAHA;GACC,eAAgB;GAChB;;AAGF;EACC,eAAe;EACf,aAAa;EACb,mBAAmB;EAiDnB;;AA/CA;;;;GAIC,mBAAmB;GAOnB;;AANA;IACC,sBAAsB;IACtB,gBAAgB;IAChB,aAAa;IACb,2BAA2B;IAC3B;;AAGF;GACC,cAAc;GACd;;AAEA;IACC,YAAY;IACZ,eAAe;IACf,mBAAmB;IACnB,UAAU;IACV,SAAS;IACT,YAAY;IACZ,YAAY;IACZ,0BAA0B;CAC1B;;AACD;IACC,mBAAmB;IACnB,eAAe;IACf,iBAAiB;IACjB,cAAc;IACd,SAAS;IACT,UAAU;IACV,WAAW;IACX,iDAAiD;IACjD,aAAa;CASb;;AAPA;KACC,eAAe;KACf,gBAAgB;KAChB,oBAAoB;KACpB,iBAAiB;KACjB,mBAAmB;KACnB;;AAKJ;;CACC;GACC,cAAc;EACd;;CACD;GACC,cAAc;EACd;CACD;;AAED;EACC,eAAe;EACf,aAAa;CAIb;;AAHA;;CAHD;EAIE,cAAc;EAEf;CADC;;AAKD;CAEC,kBAAkB;CA8BlB;;AA5BA;IACC,eAAsB;IACtB,gBAAgB;IAChB,sBAAsB;IACtB,aAAa;IACb,qBAAqB;IACrB,YAAY;CACZ;;AAED;;CAbD;EAcE,mBAAmB;EACnB,aAAa;EACb,SAAS;EACT,gBAAgB;EAChB,iBAAiB;EACjB,sBAAsB;EACtB,WAAW;EAYZ;;CAVC;KACC,eAAsB;KACtB,gBAAgB;KAChB,sBAAsB;KACtB,aAAa;KACb,qBAAqB;KACrB,YAAY;EACZ;CACD;;AAOJ;;EAIE;EACA,iBAAiB;GAChB;;EAED;GACC,eAAe;GACf,WAAY;GA8BZ;;EA5BA;EACC,0BAA0B;EAC1B;;EAED;EACC,+BAA+B;EAC/B;;EAED;;EAEC,iBAAiB;EACjB,uBAAuB;EACvB;;EAOA;KACC,sBAAsB;KACtB,qBAAqB;EACrB;;EAGF;EACC,cAAc;EACd;;CAKH;;AAGD,gBAAgB;;AAEhB;CACC,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,cAAc;CAkGd;;AAhGA;;CACC;GACC,eAAe;GACf,2CAA2C;EAC3C;CACD;;AAED;;CAbD;EAcE,qBAAc;EAAd,cAAc;EACd,aAAa;EAuFd;CAtFC;;AAED;EACC,sBAAsB;EACtB,mBAAmB;EACnB,eAAe;EACf,mBAAmB;EACnB,uBAAuB;EACvB,eAAe;EACf,eAAqB;CA+CrB;;AA7CA;;CATD;EAUE,eAAe;EACf,aAAa;EACb,qBAAc;EAAd,cAAc;EACd,2BAAuB;MAAvB,uBAAuB;EACvB,sBAAwB;MAAxB,wBAAwB;EAwCzB;;CAtCC;IACC,eAAe;IACf,eAAe;EACf;CACD;;AAED;;CAtBD;EAuBE,cAAc;EACd,iBAAiB;EA8BlB;CA7BC;;AAGA;CACC,YAAY;CACZ,eAAe;CACf,mBAAmB;CACnB,UAAU;CACV,QAAQ;CACR,YAAY;CACZ,YAAY;CACZ,oBAAmB;CACnB,eAAuB;CAOvB;;AALA;;CAXD;EAYE,WAAW;EACX,aAAa;EAGd;CAFC;;AAGF;;CAlBD;EAmBE,eAAc;EAEf;CADC;;AAGF;CACC,oBAAoB;CACpB,eAAuB;CACvB;;AAGF;EACC,eAAe;EACf,WAAW;EACX,oBAAoB;EACpB,iBAAiB;EACjB,oBAAoB;EACpB,kBAAkB;EAClB,iBAAiB;CAMjB;;AALA;;CARD;EASE,WAAW;EACX,YAAY;EACZ,iBAAiB;EAElB;CADC;;AAGF;;CAzFD;EA0FE,mBAAmB;EACnB,UAAU;EACV,YAAY;EACZ,aAAa;EACb,iBAAiB;EAQlB;CANC;;AAED;EACC,QAAQ;EACR,YAAY;CACZ;;AAGF;CACC,mBAAmB;CACnB,SAAS;CACT,UAAU;CACV,qBAAc;CAAd,cAAc;CACd,aAAa;IACV,2BAAuB;QAAvB,uBAAuB;IACvB,gBAAgB;IAChB,uBAAoB;QAApB,oBAAoB;IACpB,sBAAwB;QAAxB,wBAAwB;CAC3B,qBAAsB;CAkBtB;;AAhBA;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;;CApBD;EAqBE,cAAc;EAOf;CANC;;AAED;EACC,YAAY;EACZ,QAAQ;CACR;;AAGF,oBAAoB;;AAEpB,mDAAmD;;AACnD;CACC,qBAAc;CAAd,cAAc;CACd,oBAAgB;KAAhB,eAAgB;;CAEhB,gCAAgC;;CA2EhC;;AAvEC;GACC,kCAAgC;CAChC;;AAVH,2BAaC,iCAAiC;CAkEjC;;AA/DE;IACC,wBAA8D;CAC9D;;AAFD;IACC,wBAA8D;CAC9D;;AAFD;IACC,oCAA8D;CAC9D;;AAIH;EACC,cAAkB;EAClB,mBAAuB;EACvB,uBAAuB;EACvB,qBAAqB;EACrB,aAAa;CAkDb;;AAhDA;CACC,gBAAgB;CAChB;;AAED;GACC,cAAc;CAUd;;AARA;IACC,eAA0B;IAC1B,eAAe;IACf,aAAa;IACb,iBAAiB;IACjB,kBAAkB;IAClB;;AAIF;GACC,mBAAmB;GACnB,aAAiB;GACjB,WAAe;GACf,oCAA4C;CAC5C;;AAED;;CA/BD;EAgCE,YAAY;EACZ,gBAAgB;EAChB,qBAAqB;EAqBtB;;CAnBC;IACC,uBAAuB;IACvB,WAAW;IACX,aAAa;IACb,SAAS;IACT,4BAA4B;IAC5B,YAAgB;EAChB;;CAED;IACC,UAAU;EACV;;CAED;IACC,cAAc;EACd;CAED;;ACnbH,qBAAqB;;AAErB;;CAEC,iBAAiB;CACjB,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED,+CAA+C;;AAI9C;EACC,eAAe;EACf,gBAAgB;EAChB;;AAGF;;EAEE;;AAEF;IACI,eAAe;IACf,WAAW;IACX,YAAY;IACZ,SAAS;IACT,YAAY;IACZ,oBAAoB;CACvB;;AAED,0BAA0B;;AAGzB;;;;EAIC,cAAc;EACd;;AAGF;;;;;;CAMC,gBAAgB;CAChB;;AAED;;CAEC,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,aAAa;CAEb,qBAAqB;CACrB,cAAc;CAEd,qBAAqB;CACrB,kBAAkB;CAClB,2BAAuB;KAAvB,uBAAuB;CACvB,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd,qBAAc;CAAd,cAAc;CACd;;AAED;CACC,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,oBAAoB;CACpB,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,cAAc;CACd,gBAAgB;CAChB,uBAAuB;CACvB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB,SAAS;CACT,YAAY;CACZ;;AAED;CACC,WAAW;CACX,YAAY;CACZ;;AAED;CACC,2BAA2B;CAC3B,8BAA8B;CAC9B;;AAED;CACC,2BAA2B;CAC3B,8BAA8B;CAC9B;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,oBAAoB;CACpB;;AAED;CACC,UAAU;CACV;;AAED;;CAEC;EACC,wBAAoB;MAApB,oBAAoB;EAEpB,uBAAuB;EACvB,oBAAoB;EACpB;;CAED;EACC,YAAY;EACZ;;CAED;;AAED;;CAEC;;EAEC,oBAAoB;EACpB,mBAAmB;EACnB;;CAED;;AAED;;CAEC;;EAEC,gBAAgB;EAChB;;CAED;;AChMD,iDAAiD;;AAEjD;CACC,mBAAmB;CACnB,YAAY;CACZ,uBAAuB;CACvB,mBAAmB;;CAkGnB;;AAhGA;;CAND;EAOE,uBAAuB;EA+FxB;CA9FC;;AAED;;CAVD;EAWE,4BAA4B;EA2F7B;CA1FC;;AAED;;CAdD;EAeE,yBAAyB;EAuF1B;CAtFC;;AAED;EACC,mBAAmB;EACnB,UAAU;EACV,WAAW;EACX,SAAS;EACT,UAAU;CACV;;AAED;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB,aAAa;EACb,0BAAmC;EACnC,uBAAuB;CA0CvB;;AAxCA;CACC,YAAY;CACZ,eAAe;CACf,kBAAkB;CAClB;;AAED;GACC,mBAAmB;GACnB,SAAS;GACT,UAAU;GACV,wBAAwB;GACxB,yBAAyB;GACzB,6BAA6B;GAC7B,uBAAuB;GACvB,6BAA6B;GAC7B,iBAAiB;GACjB,qCAAqC;CAarC;;AAXA;IACC,eAAe;IACf,UAAU;IACV,iBAAiB;IACjB,mBAAmB;IACnB,SAAS;IACT,UAAU;IACV,gCAAgC;IAChC,0BAAkB;QAAlB,sBAAkB;YAAlB,kBAAkB;IAClB;;AAIF;GACC,mBAAmB;GACnB,SAAS;GACT,UAAU;GACV,iCAAiC;GACjC,gBAAgB;GAChB,YAAY;GACZ,YAAY;CACZ;;AAGF;;;;EAEC,sBAAuB;CACvB;;AAED;CACC,4BAA6B;CAC7B;;AAED;EACC,mBAAmB;EACnB,WAAW;EACX,aAAa;EACb,UAAU;EACV,4BAA4B;EAC5B,cAAc;CACd;;AAIA;GACC,sBAAsB;CACtB;;AAMH;CACC,wBAAwB;IACrB,kBAAkB;IAClB,mBAAmB;CACtB,kBAAkB;CAClB,iBAAiB;IACd,qBAAc;IAAd,cAAc;CACjB,oBAAgB;KAAhB,gBAAgB;CAChB,mBAAmB;;CAOnB;;AALA;EACC,YAAY;EACZ,YAAY;EACZ;;AAIF;CACC,cAAc;CACd;;AAED;;CAEC,mBAAmB;CACnB,OAAO;CACP,QAAQ;CACR,YAAY;CACZ,aAAa;CACb,WAAW;CACX,0FAA0F;CAC1F,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB,sBAAwB;KAAxB,wBAAwB;CACxB;;AAED;CACC,4FAA4F;CAC5F;;AAED;CACC,iBAAiB;CACjB,sBAAsB;CACtB,cAAc;CACd,mBAAmB;CACnB,yCAAyC;CACzC;;ACvJD,uBAAuB;;AAEvB,8BAA8B;;AAE9B;IACI,eAAgB;CACnB;;AAED,uBAAuB;;AAEvB;CACC,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,sBAAsB;CAItB;;AAHA;EACC,4BAA4B;EAC5B;;AAIF,wBAAwB;;AAExB;IACI,UAAU;IACV,cAAc;CACjB;;AAED;IACI,qBAAc;IAAd,cAAc;IACd,oBAAgB;QAAhB,gBAAgB;CACnB,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;IACI,eAAW;QAAX,WAAW;IACX,YAAY;IACZ,cAAc;IACd,uBAAuB;IACvB,0BAA0B;CAC7B,kBAAkB;CAClB,oBAAoB;;CAsBpB;;AApBA;;CATD;EAUE,WAAW;EAmBZ;;CAjBC;GACC,YAAY;EACZ;CACD;;AAED;;CACC;GACC,WAAW;EACX;CACD;;AAED;;CACC;GACC,YAAY;EACZ;CACD;;AAIF;IACI,WAAW;CACd;;AAED,wCAAwC;;AACxC;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;;CAEC;;EAEC,YAAY;EACZ,YAAY;EACZ,UAAU;EACV;;CAED;;AAKA;EACC,cAAc;;EAcd;;AAZA;;CAHD;EAIE,cAAc;EAWf;CAVC;;AAED;GACC,UAAU;CACV;;AAED;GACC,iBAAiB;CACjB;;AAMH;CACC,aAAa;CACb,0BAA0B;CAC1B,wBAAwB;CACxB,gBAAgB;CAChB,mBAAmB;CACnB;;AAGA;EACC,0BAA0B;EAC1B,yBAAyB;EACzB,cAAc;EACd;;AAED;EACC,sCAAsC;EACtC;;AAED;EACC,kBAAkB;EAClB,gBAAgB;EAChB,gBAAgB;EAChB;;AAED;EACC,gBAAgB;EAChB;;AAED;EACC,YAAY;EACZ,aAAa;EACb,gBAAgB;EAChB,eAAe;EACf;;AAED;EACC,aAAa;EACb;;AAED;EACC,WAAW;EACX;;AAED;EACC,oBAAoB;EACpB,6BAA6B;EAK7B;;AAHA;GACC,YAAY;GACZ;;AAMH;CACC,cAAc;CACd;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB,YAAY;EACZ,aAAa;EACb;;CAED;;AAED;;CAEC;EACC,aAAa;EACb;;CAED;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC;;EAEC,eAAe;EA+Bf;;EA7BA;GACC,qBAAc;GAAd,cAAc;GACd,oBAAgB;OAAhB,gBAAgB;GAChB;;EAED;GACC,cAAe;GAsBf;;EApBA;EACC,YAAY;EACZ,oBAAoB;EACpB;;EAED;EACC,WAAW;EACX,uBAAuB;EACvB;;EAED;EACC,cAAc;EACd;;EAED;EACC,4BAA4B;EAC5B,kBAAkB;EAClB,YAAY;EACZ,eAAe;EACf;;CAIH;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB;;ACjPD,iBAAiB;;AAMf;GACC,sBAAsB;GACtB;;AAIF;;GAIE;IACC,eAAe;IACf;;GAED;IACC,yBAAyB;IACzB,uBAAuB;IACvB,sBAAuB;;IAMvB;;GAJA;EACC,eAAsB;EACtB;;GAQF;IACC,eAAe;IACf;;GAED;IACC,eAAe;IACf,uBAAuB;IACvB;;GAED;IACC,yBAAyB;IACzB;CAIF;;AAGA;GACC,iBAAiB;GACjB;;AACD;IAEE;KACC,yBAAyB;KACzB;CAEF;;AAIH;CACC,oBAAoB;CACpB;;AAED;;CAEC,cAAe;;CAaf;;AAXA;CACC,YAAY;CACZ,yBAAyB;CACzB,gBAAgB;CAChB,kBAAkB;CAClB,aAAa;CACb,YAAY;CACZ,cAAc;CACd,uBAAuB;CACvB;;AAIF;;IAEI,iBAAiB;IACjB,6BAA8B;CAIjC;;AAHA;EACC,sBAAsB;EACtB;;AAGF;IACI,iBAAiB;CACpB;;AAED;IACI,iBAAiB;CACpB;;AAED;IACI,cAAc;CACjB,2CAA4C;;CAO5C;;AALA;CACC,iBAAiB;CACjB,aAAa;CACb;;AAIF;IACI,cAAc;CACjB;;ACrHC;IACE,gBAAgB;IAChB,kBAAkB;IAClB,oBAAoB;IACpB,iBAAiB;IACjB,eAAY;GACb;;AAGH;EACE,aAAa;EACb,mBAAmB;EACnB,SAAS;CACV;;AAED;EACE,kBAAkB;EAClB,sBAAsB;EACtB,eAAe;EACf,mBAAmB;CACpB;;AAED;IACI,0BAA0B;IAC1B,YAAY;CACf;;AAED;IACI,eAAe;IACf,YAAY;IACZ,kBAAkB;IAClB,iBAAiB;IACjB,eAAe;IACf,iBAAiB;CACpB;;AAED;;;EAGE,uBAAuB;EACvB,UAAU;CACX;;AAED;EACE,gBAAgB;CACjB;;AAGD;EACE,kBAAkB;EAClB,qBAAqB;EACrB,eAAe;EACf,mBAAoB;CAKrB;;AAHC;CACE,cAAc;CACf;;AAMD;IACE,iBAAiB;GAIlB;;AAHC;MACE,oBAAoB;KACrB;;AAIL;;EAEE,gBAAgB;EAChB,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,uBAAuB;EACvB,aAAa;CACd;;AC7EA;EACC,sBAAsB;EACtB,eAAe;EACf;;AAED;EACC,mBAAmB;EACnB;;AAED;EACC,UAAU;EACV;;AAED;EACC,aAAa;EACb,kBAAkB;EAClB,0BAA0B;EAC1B,mBAAmB;EACnB,mBAAmB;EA4BnB;;AA3BA;GACC,iBAAiB;GAUjB;;AATA;IACC,mBAAoB;IAOpB;;AANA;CACC,eAAe;CACf;;AACD;CACC,aAAa;CACb;;AAGH;GACC,cAAc;GACd,mBAAmB;GACnB,iCAAiC;GACjC,oBAAoB;GACpB;;AACD;GACC,eAAe;GACf,qBAAsB;GAMtB;;AALA;CACC,aAAa;CACb,sBAAsB;CACtB,eAAe;CACf;;AAIH;EACC,cAAc;EACd;;AAED;EACC,eAAe;EACf;;AAED;EACC,cAAc;EACd;;AAED;EACC,cAAc;EACd;;AAED;EACC,iBAAiB;EACjB,gBAAgB;EAChB,2BAA2B;EAC3B;;AAED;EACC,mBAAmB;EACnB;;AAED;EACC,cAAc;EACd;;AAED;EACC,eAAe;EACf;;AAED;EACC,iBAAiB;EACjB;;AAED;EACC,kBAAkB;EAClB,+BAA+B;EAC/B,mBAAmB;EACnB;;AAED;;GAEE;;AACF;EACC,mBAAmB;EA8EnB;;AA7EA;GACC,WAAW;GACX;;AAED;GACC,WAAW;GACX;;AAED;GACC,cAAc;GACd;;AAED;GACC,6CAAgC;GAChC;;AAED;GACC,iBAAiB;GACjB,aAAa;GACb,cAAc;GACd;;AAED;GACC,2BAA2B;GAC3B;;AAED;GACC,kBAAmB;GAYnB;;AAXA;CACC,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,iBAAiB;CACjB,eAAe;CACf,mBAAmB;CACnB,OAAO;CACP,QAAQ;CACR,+CAA+C;CAC/C;;AAGD;IACC,kBAAkB;IAClB,kBAAmB;IASnB;;AARA;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,SAAS;CACT,WAAW;CACX,0BAA0B;CAC1B,eAAe;CACf;;AAIH;GACC,YAAY;GACZ;;AAED;GACC,YAAY;GACZ;;AAED;;GAEC,kBAAkB;GAWlB;;AAVA;IACC,qBAAsB;IAQtB;;AANC;CACC,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB;;AC5KN,kBAAkB;;AAClB;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;IACb,OAAO;CACV,QAAQ;CACR,aAAa;IACV,YAAY;CACf,aAAa;CACb,uBAAuB;CACvB,cAAc;CACd,eAAe;CACf;;AAED;CACC,mBAAmB;IAChB,iBAAiB;CACpB,wBAAwB;CACxB,SAAS;CACT,4BAA4B;CAC5B,eAAe;IACZ,aAAa;IACb,uBAAuB;CAC1B,WAAW;CAYX;;AAXA;EACC,aAAa;EACb,iBAAiB;EACjB,mBAAmB;EACnB,UAAU;EACV,YAAY;EACZ,YAAY;EACZ,aAAa;EACb,eAAe;EACf,WAAW;EACX;;AAGF;CACC,gBAAgB;IACb,OAAO;IACP,QAAQ;IACR,YAAY;IACZ,aAAa;CAChB,gCAAgC;CAChC,WAAW;CACX;;AAED;IACI,eAAe;CAClB;;AAED;IACI,gBAAgB;IAChB,YAAY;IACZ,aAAa;IACb,4BAA4B;CAC/B;;AACD;CACC,eAAe;CACf;;AC7DA;;CADD;EAEE,qBAAc;EAAd,cAAc;EACX,wBAAoB;MAApB,oBAAoB;EACvB,oBAAgB;MAAhB,gBAAgB;EAiFjB;CAhFC;;AAED;EACC,YAAY;CAkEZ;;AAjEA;;CAFD;EAGE,uBAA2B;EAC3B,kBAAkB;EA+DnB;CA9DC;;AACD;;CAND;EAOE,6BAA4B;EAC5B,kBAAkB;EA2DnB;CA1DC;;AATF;CAUC,oBAAoB;CACpB,mBAAmB;CACnB,eAAe;CACf,mBAAmB;CACnB,uBAAuB;CAqDvB;;AAnDA;GACC,cAAc;CACd;;AAED;GACC,mBAAmB;CACnB;;AAED;GACC,aAAa;GACb,iBAAiB;GACjB,sCAAsC;GACtC,gBAAgB;GAChB,mBAAmB;CACnB;;AAED;GACC,gBAAgB;GAChB,mBAAmB;CACnB;;AAED;GACC,gBAAgB;GAChB,iBAAiB;GACjB,eAAe;CACf;;AAED;GACC,cAAc;CACd;;AAED;CACC,mBAAmB;CAkBnB;;AAjBA;IACC,qBAAc;IAAd,cAAc;IACd,uBAAoB;QAApB,oBAAoB;IACpB,sBAAwB;QAAxB,wBAAwB;IACxB,mBAAmB;IACnB,OAAO;IACP,UAAU;IACV,QAAQ;IACR,SAAS;IACT,oCAAoC;IACpC,WAAW;IACX,mBAAmB;IACnB,iBAAiB;CAIjB;;AAHA;KACC,oBAAoB;KACpB;;AAKJ;EACC,mBAAmB;EACnB,aAAa;EACb,YAAY;EACZ,qBAAqB;EACrB,sBAAsB;EACtB,iBAAiB;CACjB","file":"wp-optimize-admin-3-2-5.min.css","sourcesContent":["/* COLORS */\n$wp-blue: #0272AA;\n$wp-gray-dark: #555d66;\n$wp-gray-darker: #191e23;\n$wp-secondary-gray: #72777C;\n$wp-secondary-gray-light: #82868B;\n$wp-light-gray: #B5B9BE;\n$wp-lighter-gray: #F2F4F5;\n$success: #009B24;\n$error: #9B3600;\n$red: #E07575;\n$brand: #E46B1F;\n$spacing: 20px; \n\n/* OTHER VARS */\n$breakpoint-small: 782px;\n\n@import \"admin.css\";\n\n@import \"scss/layout\";\n\n@import \"scss/common\";\n\n@import \"scss/menu-and-tabs\";\n\n@import \"scss/notices\";\n\n@import \"scss/image-list\";\n\n@import \"scss/plugin-family-tab\";\n\n@import \"scss/table-sorter\";\n\n@import \"scss/cache\";\n\n@import \"scss/minify\";\n\n@import \"scss/modal\";\n\n@import \"scss/power-tweaks\";\n",".wpo_hidden {\n\tdisplay: none !important;\n}\n\n.wpo_info {\n\tbackground: #FFF;\n\tcolor: #444;\n\tfont-family: -apple-system, \"BlinkMacSystemFont\", \"Segoe UI\", \"Roboto\", \"Oxygen-Sans\", \"Ubuntu\", \"Cantarell\", \"Helvetica Neue\", sans-serif;\n\tmargin: 2em auto;\n\tpadding: 1em 2em;\n\tmax-width: 700px;\n\t-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);\n\tbox-shadow: 0 1px 3px rgba(0,0,0,0.13);\n}\n\n#wp-optimize-wrap .widefat thead th, #wp-optimize-wrap .widefat thead td {\n\tborder-bottom: 1px solid #E1E1E1;\n}\n\n#wp-optimize-wrap .widefat td, #wp-optimize-wrap .widefat th {\n\tpadding: 8px 10px;\n}\n\n/* big button */\n.wpo_primary_big {\n\tpadding: 4px 6px !important;\n\tfont-size: 22px !important;\n\tmin-height: 34px;\n\tmin-width: 200px;\n}\n\n/* SECTIONS */\n.wpo_section {\n\tclear: both;\n\tpadding: 0;\n\tmargin: 0;\n}\n\n.wp-optimize-settings {\n\tmargin-bottom: 16px;\n}\n\n.wp-optimize-settings td > label {\n\tfont-weight: bold;\n\tdisplay: block;\n\tmargin-bottom: 8px;\n}\n\n/* COLUMN SETUP */\n.wpo_col {\n\tdisplay: block;\n\tfloat: left;\n\tmargin: 1% 0 1% 1%;\n}\n\n.wpo_col:first-child {\n\tmargin-left: 0;\n}\n\n/* GROUPING */\n.wpo_group:before,\n.wpo_group:after {\n\tcontent: \"\";\n\tdisplay: table;\n}\n\n.wpo_group:after {\n\tclear: both;\n}\n\n.wpo_half_width {\n\twidth: 48%;\n}\n\n/* GRID OF THREE */\n.wpo_span_3_of_3 {\n\twidth: 100%;\n}\n\n.wpo_span_2_of_3 {\n\twidth: 65.3%;\n}\n\n.wpo_span_1_of_3 {\n\twidth: 32.1%;\n}\n\n#wp-optimize-wrap .nav-tab-wrapper {\n\tmargin: 0;\n}\n\n@media screen and (min-width: 549px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: block !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: none !important;\n\t}\n\n}\n\n@media screen and (max-width: 548px) {\n\n\t.show_on_default_sizes {\n\t\tdisplay: none !important;\n\t}\n\n\t.show_on_mobile_sizes {\n\t\tdisplay: block !important;\n\t}\n\n}\n\n@media screen and (max-width: 768px) {\n\n\t.wpo_col {\n\t\tmargin: 1% 0;\n\t}\n\n\t.wpo_span_3_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_2_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_span_1_of_3 {\n\t\twidth: 100%;\n\t}\n\n\t.wpo_half_width {\n\t\twidth: 100%;\n\t}\n\n}\n\n/* .wp-optimize-settings-clean-transient label, .wp-optimize-settings-clean-pingbacks label, .wp-optimize-settings-clean-trackbacks label, .wp-optimize-settings-clean-postmeta label, .wp-optimize-settings-clean-orphandata label, .wp-optimize-settings-clean-commentmeta label */\n\n/* Optimizations tab */\n\n.wp-optimize-setting-is-sensitive td > label::before {\n\tcontent: \"\\f534\";\n\tfont-family: 'dashicons';\n\tdisplay: inline-block;\n\tmargin-right: 6px;\n\tfont-style: normal;\n\tline-height: 1;\n\tvertical-align: middle;\n\twidth: 20px;\n\tfont-size: 18px;\n\theight: 20px;\n\ttext-align: center;\n\tcolor: #72777C;\n}\n\n.wpo-run-optimizations__container {\n\tmargin-bottom: 15px;\n}\n\n.wp-optimize-optimizations-table-placeholder {\n\tmin-height: 80px;\n}\n\ntd.wp-optimize-settings-optimization-checkbox {\n\twidth: 18px;\n\tpadding-left: 4px;\n\tpadding-right: 0px;\n}\n\n.wp-optimize-settings-optimization-checkbox input {\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n#retention-period, #revisions-count {\n\twidth: 60px;\n}\n\n.wp-optimize-settings-optimization-info {\n\tfont-size: 80%;\n\tfont-style: italic;\n}\n\n.wp-optimize-settings input[type=\"checkbox\"] {\n\t/* width: 18px; */\n}\n\n/* Added for the Image on Addons tab*/\nimg.addons {\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tmargin-bottom: 20px;\n\tmax-height: 44px;\n\theight: auto;\n\tmax-width: 100%;\n}\n\n.wpo_spinner {\n\twidth: 18px;\n\theight: 18px;\n\tpadding-left: 10px;\n\tdisplay: none;\n\tposition: relative;\n\ttop: 4px;\n}\n\n.optimization_spinner {\n\twidth: 20px;\n\theight: 20px;\n}\n\n#wp-optimize-auto-options {\n\tmargin: 20px 0 0 28px;\n}\n\n.display-none {\n\tdisplay: none;\n}\n\n.visibility-hidden {\n\tvisibility: hidden;\n}\n\n.margin-one-percent {\n\tmargin: 1%;\n}\n\n#save_done, .save-done {\n\tcolor: #D94F00;\n\tfont-size: 220% !important;\n}\n\n.wp-optimize-settings-optimization-info a {\n\ttext-decoration: underline;\n}\n\n.wp-optimize-settings-optimization-run-spinner {\n\tposition: relative;\n\ttop: 2px;\n}\n\n@media screen and (min-width: 782px) {\n\n\ttd.wp-optimize-settings-optimization-run {\n\t\twidth: 180px;\n\t\tpadding-top: 16px;\n\t}\n\n}\n\n#wpoptimize_table_list .tablesorter-filter-row {\n\tdisplay: none !important;\n}\n\n#wpoptimize_table_list .optimization_spinner {\n\tposition: relative;\n\ttop: 2px;\n\tleft: 5px;\n}\n\n#wpoptimize_table_list .optimization_spinner.visibility-hidden {\n\tdisplay: none;\n}\n\n#wpoptimize_table_list_filter {\n\twidth: 100%;\n\tmargin-bottom: 15px;\n}\n\n#wpoptimize_table_list_tables_not_found {\n\tdisplay: none;\n\tmargin: 20px 0;\n}\n\ndiv#wpoptimize_table_list_tables_not_found + h3 {\n\tmargin-top: 30px;\n}\n\n/* Hide First column */\n#wpoptimize_table_list tr th:first-child,\n#wpoptimize_table_list tr td:first-child {\n\tdisplay: none;\n}\n\n#wpoptimize_table_list tr td.no-table {\n\tdisplay: table-cell !important;\n\tbackground: #FB8787;\n\tfont-weight: bold;\n}\n\n#optimize_form .select2-container,\n#wp-optimize-auto-options .select2-container {\n\twidth: 50% !important;\n\ttop: -5px;\n\theight: 40px;\n\tmargin-left: 10px;\n}\n\n#wpoptimize_table_list .optimization_done_icon {\n\tcolor: #009B24;\n\tfont-size: 200%;\n\tdisplay: inline-block;\n\tposition: relative;\n}\n\n#wpo_sitelist_show_moreoptions_cron {\n\tfont-size: 13px;\n\tline-height: 1.5;\n\tletter-spacing: 1px;\n}\n\n#wp-optimize-nav-tab-contents-images .wpo_span_2_of_3 h3 {\n\tdisplay: inline-block;\n}\n\n.wpo_remove_selected_sizes_btn__container {\n\tmargin-top: 20px;\n}\n\n.unused-image-sizes__label {\n\tdisplay: block;\n\tline-height: 1.6;\n}\n\n@media (max-width: 782px) {\n\n\t.unused-image-sizes__label {\n\t\tmargin-left: 30px;\n\t\tmargin-bottom: 15px;\n\t\tline-height: 1;\n\t\tword-break: break-word;\n\t}\n\n\t.unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: -30px;\n\t}\n\n\tbody.rtl .unused-image-sizes__label {\n\t\tmargin-right: 30px;\n\t\tmargin-left: 0;\n\t}\n\n\tbody.rtl .unused-image-sizes__label input[type=checkbox] {\n\t\tmargin-left: 4px;\n\t\tmargin-right: -30px;\n\t}\n\n}\n\n#wp-optimize-nav-tab-contents-tables a {\n\tvertical-align: middle;\n}\n\n#wpo_sitelist_moreoptions,\n#wpo_sitelist_moreoptions_cron {\n\tmargin: 4px 16px 6px 0;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n\tmax-height: 300px;\n\toverflow-y: scroll;\n\toverflow-x: hidden;\n}\n\n#wpo_sitelist_moreoptions {\n\tmax-height: 150px;\n\tmargin-right: 0;\n}\n\n#wpo_settings_sites_list li,\n#wpo_settings_sites_list li a {\n\tfont-size: 13px;\n\tline-height: 1.5;\n}\n\n#wpo_sitelist_moreoptions_cron li {\n\tpadding-left: 20px;\n}\n\n#wpo_import_error_message {\n\tdisplay: none;\n\tcolor: #9B0000;\n}\n\n#wpo_import_success_message {\n\tdisplay: none;\n\tcolor: #46B450;\n}\n\n#wp-optimize-logging-options {\n\tmargin-top: 10px;\n}\n\n/* Logger settings*/\n.wpo_logging_header {\n\tfont-weight: bold;\n\tborder-top: 1px solid #333;\n\tborder-bottom: 1px solid #333;\n\tpadding: 5px 0;\n\tmargin: 0;\n}\n\n.wpo_logging_row {\n\tborder-bottom: 1px solid #A1A2A3;\n\tpadding: 5px 0;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_options_title,\n.wpo_logging_status_title,\n.wpo_logging_actions_title,\n.wpo_logging_logger_row,\n.wpo_logging_options_row,\n.wpo_logging_status_row,\n.wpo_logging_actions_row {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n}\n\n.wpo_logging_logger_title,\n.wpo_logging_logger_row {\n\twidth: 38%;\n}\n\n.wpo_logging_options_title,\n.wpo_logging_options_row {\n\twidth: 44%;\n}\n\n.wpo_logging_status_title,\n.wpo_logging_status_row {\n\twidth: 8%;\n}\n\n.wpo_logging_actions_title,\n.wpo_logging_actions_row {\n\twidth: 7%;\n}\n\n.wpo_logging_actions_row {\n\ttext-align: right;\n}\n\n.wpo_logging_options_row {\n\tword-wrap: break-word;\n}\n\n.wpo_logging_actions_row .dashicons-no-alt,\n.wpo_add_logger_form .dashicons-no-alt {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\twidth: 20px;\n\theight: 20px;\n\tborder-radius: 20px;\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tmargin-left: 5px;\n}\n\n.wpo_add_logger_form .dashicons-no-alt {\n\tmargin-top: 12px;\n\tmargin-right: 10px;\n\tfloat: right;\n}\n\n.wpo_logger_type {\n\twidth: 90%;\n\tmargin-top: 10px;\n}\n\n.wpo_logger_addition_option {\n\twidth: 100%;\n\tmargin-top: 5px;\n}\n\n.wpo_alert_notice {\n\tbackground-color: #F06666;\n\tcolor: #FFF;\n\tpadding: 1em;\n\tdisplay: block;\n\tmargin-bottom: 10px;\n\tborder-radius: 5px;\n}\n\n.wpo_error_field {\n\tborder-color: #F06666 !important;\n}\n\n.save_settings_reminder {\n\tdisplay: none;\n\tcolor: #333;\n\tpadding: 15px 20px;\n\tbackground-color: #F0A5A4;\n\tborder-radius: 3px;\n\tmargin: 15px 0;\n}\n\n#wpo_remove_selected_sizes {\n\tmargin-top: 20px;\n}\n\n.wpo_unused_images_buttons_wrap {\n\tfloat: right;\n\tmargin-right: 20px;\n}\n\n.wpo_unused_images_container h3 {\n\tmin-width: 150px;\n}\n\n#wpo_unused_images, #wpo_smush_images_grid {\n\tmax-height: 500px;\n\toverflow-y: auto;\n}\n\n#wpo_unused_images a {\n\toutline: none;\n}\n\n#wp-optimize-nav-tab-wpo_database-tables-contents .wpo-take-a-backup {\n\tmargin-left: 1%;\n}\n\n.run-single-table-delete {\n\tmargin-top: 3px;\n}\n\n.wpo-confirm h4 span.table-name {\n\tfont-style: italic;\n\tdisplay: inline-block;\n\tbackground: #EFEFEF;\n\tpadding: 3px 7px;\n\tborder-radius: 4px;\n}\n\n#wpo_browser_cache_output,\n#wpo_gzip_compression_output,\n#wpo_advanced_cache_output {\n\tbackground: #F0F0F0;\n\tpadding: 10px;\n\tborder: 1px solid #CCC;\n\twhite-space: pre-wrap;\n}\n\n#wpo_gzip_compression_error_message,\n.wpo-error {\n\tcolor: #9B0000;\n}\n\n.notice.wpo-error__enabling-cache {\n\twhite-space: pre-wrap;\n\tmargin-bottom: 15px;\n}\n\n.notice.wpo-warnings__enabling-cache {\n\tmargin-bottom: 15px;\n}\n\n.notice.wpo-warnings__enabling-cache ul, .notice.wpo-warnings__enabling-cache ul li {\n\tlist-style: inside disc;\n}\n\na.loading.wpo-refresh-gzip-status {\n\tcolor: rgba(68, 68, 68, 0.5);\n\ttext-decoration: none;\n}\n\na.loading.wpo-refresh-gzip-status img.wpo_spinner.display-none {\n\tdisplay: inline-block;\n}\n\n#wpo_browser_cache_expire_days,\n#wpo_browser_cache_expire_hours {\n\twidth: 50px;\n}\n\n.wpo-enabled .wpo-disabled {\n\tdisplay: none;\n}\n\n.wpo-disabled .wpo-enabled {\n\tdisplay: none;\n}\n\n.wpo-button-wrap {\n\tmargin-top: 10px;\n}\n","body[class*=\"toplevel_page_WP-Optimize\"] #wpbody,\nbody[class*=\"wp-optimize_page_\"] #wpbody {\n\tpadding-right: 15px;\n\t@media screen and (max-width: 768px) {\n\t\tpadding-right: 0;\n\t}\n}\n\nbody.toplevel_page_WP-Optimize.rtl #wpbody {\n\tpadding-left: 15px;\n\tpadding-right: 0;\n\t@media screen and (max-width: 768px) {\n\t\tpadding-left: 10px;\n\t}\n}\n\nbody[class*=\"toplevel_page_WP-Optimize\"] #wpbody-content,\nbody[class*=\"wp-optimize_page_\"] #wpbody-content {\n\tpadding-top: 80px;\n\n\t@media (max-width: 600px) {\n\t\tpadding-top: 0;\n\t}\t\n\n\t@media (min-width: 820px) {\n\t\tpadding-top: 100px;\n\t}\t\n}\n\n#wp-optimize-wrap {\n\tposition: relative;\n\tpadding-top: 20px;\n\n\t@media (max-width: 600px) {\n\t\tpadding-top: 110px;\n\t}\t\n\n\t@media(max-width: $breakpoint-small) {\n\t\tmargin-right: 0;\n\t}\n}\n\n/* DASHBOARD */\n\n.wpo-main-header {\n\n\theight: 77px;\n\tposition: fixed;\n\ttop: 32px;\n\tleft: 160px;\n\tbackground: #FFF;\n\tright: 0;\n\tz-index: 9980;\n\n\t@media (min-width: 820px) {\n\t\theight: 105px;\n\t}\t\n\n\t.wpo-logo__container {\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\tjustify-content: center;\n\t\tposition: relative;\n\t\theight: 100%;\n\t\tline-height: 1;\n\t\tfont-size: 1rem;\n\t\tpadding-left: 50px;\n\t\tmargin-left: 10px;\n\t}\n\n\t.wpo-logo {\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 50%;\n\t\ttransform: translateY(-50%);\n\t\twidth: 50px;\n\t}\n\n\t.wpo-subheader {\n\t\tmargin: 0;\n\t\tfont-weight: 300;\n\t\tcolor: $wp-secondary-gray;\n\t\tline-height: 1.3;\n\n\t\t@media (max-width: 1080px) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\tp.wpo-header-links {\n\t\tmargin: 0;\n\t\tfont-size: 0.7rem;\n\t\tposition: absolute;\n\t\tright: 0;\n\t\tpadding: 6px 15px;\n\t\tbackground: #EDEEEF;\n\t\tborder-bottom-left-radius: 5px;\n\t\tz-index: 1;\n\n\t\ta {\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t\t.wpo-header-links__label {\n\t\t\tcolor: $wp-secondary-gray-light;\n\t\t\tposition: absolute;\n\t\t\tright: 100%;\n\t\t\twidth: 110px;\n\t\t\ttext-align: right;\n\t\t\tpadding-right: 10px;\n\t\t}\n\n\t\t@media (max-width: 820px) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\tp.wpo-header-links__mobile {\n\t\tpadding: 10px;\n\t\tbackground: #EDEEEF;\n\t\tmargin-bottom: 0;\n\t\t@media (min-width: 820px) {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\ta {\n\t\t\tdisplay: inline-block;\n\t\t\tpadding: 4px;\n\t\t\tfont-size: .8rem;\n\t\t}\n\t\t.wpo-header-links__label {\n\t\t\tcolor: $wp-secondary-gray-light;\n\t\t}\n\n\t}\n\n\t@media (max-width: 600px) {\n\t\t\n\t\t.wpo-logo__container strong {\n\t\t\twidth: 140px;\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t}\n\n\tbody.auto-fold & {\n\t\t@media (max-width: 960px) {\n\t\t\tleft: 36px;\n\t\t}\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\tleft: 0;\n\t\t\ttop: -70px;\n\t\t\tposition: absolute;\n\t\t}\n\t\t@media (max-width: 600px) {\n\t\t\tposition: absolute;\n\t\t\tleft: -10px;\n\t\t\tright: -10px;\n\t\t\ttop: 10px;\n\t\t}\n\t}\n\n\tbody.auto-fold #screen-meta + #wp-optimize-wrap & {\n\t\t@media (max-width: 600px) {\n\t\t\ttop: 0;\n\t\t}\n\t}\n\n\tbody.folded & {\n\t\t@media (min-width: $breakpoint-small) {\n\t\t\tleft: 36px;\n\t\t}\n\t}\n\tbody.is-scrolled & {\n\t\tbox-shadow: 0 5px 25px rgba(0, 0, 0, 0.17);\n\t}\n\n\t/* RTL */\n\tbody.rtl & {\n\t\tright: 160px;\n\t\tleft: 0;\n\n\t\t.wpo-logo__container {\n\t\t\tpadding-left: 10px;\n\t\t\tpadding-right: 50px;\n\t\t\tmargin-left: 0;\n\t\t\tmargin-right: 10px;\n\t\t}\n\t\n\t\t.wpo-logo {\n\t\t\tposition: absolute;\n\t\t\tleft: auto;\n\t\t\tright: 0;\n\t\t}\t\n\n\t\tp.wpo-header-links {\n\t\t\tright: auto;\n\t\t\tleft: 0;\n\t\t\tborder-bottom-right-radius: 5px;\n\t\t\tborder-bottom-left-radius: 0;\n\t\t\n\t\t\t.wpo-header-links__label {\n\t\t\t\tposition: absolute;\n\t\t\t\tleft: 100%;\n\t\t\t\tright: auto;\n\t\t\t\twidth: 110px;\n\t\t\t\ttext-align: left;\n\t\t\t\tpadding-left: 10px;\n\t\t\t}\n\t\t}\n\t}\n\n\tbody.rtl.auto-fold & {\n\t\t@media (max-width: 960px) {\n\t\t\tright: 36px;\n\t\t}\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\tright: 0;\n\t\t\ttop: 46px;\n\t\t}\n\t\t@media (max-width: 600px) {\n\t\t\tposition: absolute;\n\t\t\tleft: -10px;\n\t\t\tright: -10px;\n\t\t\ttop: 10px;\n\t\t}\n\t}\n\n\tbody.rtl.folded & {\n\t\t@media (min-width: $breakpoint-small) {\n\t\t\tright: 36px;\n\t\t\tleft: 0;\n\t\t}\n\t}\n\n}\n\n.wpo-page {\n\tbody.rtl & {\n\t\tpadding-right: 0;\n\t}\n\t@media (min-width: 769px) {\n\t}\n\n\t&:not(.active) {\n\t\tdisplay: none;\n\t}\n}\n\n.wpo-introduction-notice {\n\tpadding: 15px 20px;\n\tmargin-top: 30px;\n\tmargin-bottom: 30px;\n\tbackground: #FFF url('../images/notices/logo-bg-notice.png') no-repeat 100% 100%;\n\n\th3 {\n\t\tfont-size: 2em;\n\t}\n\n\tp:not(.font-size__normal) {\n\t\tfont-size: 1.2em;\n\t}\n\n\t.wpo-introduction-notice__footer-links {\n\t\tpadding-top: 20px;\n\t\t> a, > span {\n\t\t\tdisplay: inline-block;\n\t\t\tmargin-left: 5px;\n\t\t\tmargin-right: 5px;\n\t\t}\n\t}\n}\n\n/* Columns */\n@media (min-width: 1200px) {\n\n\t.wpo-tab-postbox.right-col {\n\t\twidth: 350px;\n\t\tfloat: right;\n\t\tbox-sizing: border-box;\n\t\tmargin-top: 3.1rem;\n\t}\n\n\t.right-col + .wpo-main {\n\t\tfloat: left;\n\t\tbox-sizing: border-box;\n\t\twidth: calc(100% - 380px);\n\t}\n\n}\n","@keyframes rotate {\n\n\t0% {\n\t\ttransform: rotate(0);\n\t}\n\n\t100% {\n\t\ttransform: rotate(360deg);\n\t}\n\n}\n\n/* Common BLOCKS */\n\n\n/* Buttons */\n\n#wp-optimize-wrap {\n\n\t.button-large {\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\tdisplay: block;\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n\t.red {\n\t\tcolor: $red;\n\t}\n\n\tdiv[id*=\"_notice\"] div.updated,\n\t> .notice {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t}\n\n\ttextarea {\n\t\twidth: 100%;\n\t\tborder-radius: 5px;\n\t\theight: 100px;\n\t\tmin-height: 100px;\n\t\tmargin-top: 10px;\n\t\tmargin-bottom: 10px;\n\t}\n\t\n}\n\n.notice.notice-error.wpo-warning,\n.notice.notice-warning.wpo-warning {\n\tmargin-bottom: 18px;\n}\n\n.notice.notice-warning.wpo-warning p {\n\tpadding-left: 36px;\n\tposition: relative;\n}\n\n.notice.notice-warning.wpo-warning p > .dashicons {\n\tposition: absolute;\n\tleft: 0;\n\tfont-size: 26px;\n\ttop: 50%;\n\ttransform: translateY(-50%);\n\theight: 26px;\n\tcolor: #FFB900;\n}\n\n.button.button-block {\n\tdisplay: block;\n\twidth: 100%;\n\ttext-align: center;\n}\n\n.wpo-refresh-button {\n\tfloat: right;\n}\n\n.wpo-refresh-button:hover {\n\tcursor: pointer;\n}\n\n.wpo-refresh-button .dashicons {\n\ttext-decoration: none;\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n/* Helper classes */\n\n*[class*=\"wpo-badge\"] {\n\tdisplay: inline-block;\n\tfont-size: .8em;\n\ttext-transform: uppercase;\n\tbackground: $wp-lighter-gray;\n\tpadding: 3px 5px;\n\tline-height: 1;\n\tborder-radius: 3px;\n}\n\n.wpo-badge__new {\n\tbackground: #DBE3E6;\n\tcolor: #00689a;\n}\n\n.wpo-first-child {\n\tmargin-top: 0;\n}\n\n#save_done, .save-done {\n\tcolor: $success;\n\tfont-size: 250%;\n}\n\np.wpo-take-a-backup {\n\tdisplay: inline-block;\n\tmargin: 0;\n\tline-height: 1;\n\tpadding-top: 8px;\n}\n\n@media (min-width: $breakpoint-small) {\n\t.button ~ p.wpo-take-a-backup {\n\t\tmargin-left: 20px;\n\t}\n}\n\n/* Postbox */\n\n#wp-optimize-wrap .nav-tab-wrapper ~ .wp-optimize-nav-tab-contents > .postbox {\n\tborder: none;\n\n\t> h3:first-child {\n\t\tmargin-top: 0;\n\t}\n\n}\n\n.wpo-p25,\n.postbox.wpo-tab-postbox {\n\tpadding: 25px;\n}\n\n.wpo-tab-postbox {\n\t\n\t> h3:first-child {\n\t\tmargin-top: 0;\n\t}\n}\n\n/* Field group */\n\n.wpo-fieldgroup {\n\tbackground: $wp-lighter-gray;\n\tborder-radius: 8px;\n\tpadding: 20px;\n\n\t&:not(:last-child) {\n\t\tmargin-bottom: 2em;\n\t}\n\n\t> *:first-child {\n\t\tmargin-top: 0;\n\t}\n\t\n\t> *:last-child {\n\t\tmargin-bottom: 0;\n\t}\n\n\t&.premium-only {\n\t\tposition: relative;\n\t}\n\n\t.switch + label {\n\t\tfont-weight: 600;\n\t}\n\n\tcode, pre.code {\n\t\tfont-size: inherit;\n\t\tbackground: #d8dbdc;\n\t\tborder-radius: 3px;\n\t}\n\n\tpre.code {\n\t\tpadding: 10px;\n\t}\n\n\tfieldset {\n\n\t\tlabel {\n\t\t\tdisplay: block;\n\t\t\tmargin-bottom: 6px;\n\t\t\tline-height: 20px;\n\t\t}\n\n\t}\n\n}\n\n.wpo-fieldgroup__subgroup {\n\t&:not(:last-of-type) {\n\t\tmargin-bottom: 20px;\n\t}\n}\n\n/* The switches */\n#wp-optimize-wrap {\n\n\t.switch {\n\t\tposition: relative;\n\t\tdisplay: inline-block;\n\t\twidth: 38px;\n\t\theight: 18px;\n\t\tmargin-right: 6px;\n\t\tbox-sizing: border-box;\n\n\t\t/* Hide default HTML checkbox */\n\t\tinput {\n\t\t\topacity: 0;\n\t\t\twidth: 0;\n\t\t\theight: 0;\n\t\t}\n\n\t\t/* The slider */\n\t\t.slider {\n\t\t\tposition: absolute;\n\t\t\tcursor: pointer;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tbackground-color: $wp-lighter-gray;\n\t\t\ttransition: .2s;\n\n\t\t\t&::before {\n\t\t\t\tposition: absolute;\n\t\t\t\tcontent: \"\";\n\t\t\t\theight: 8px;\n\t\t\t\twidth: 8px;\n\t\t\t\tleft: 2px;\n\t\t\t\tbottom: 2px;\n\t\t\t\tbackground-color: $wp-gray-dark;\n\t\t\t\tborder: 1px solid $wp-gray-dark;\n\t\t\t\ttransition: all .2s;\n\t\t\t}\n\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\theight: 4px;\n\t\t\t\twidth: 3px;\n\t\t\t\tright: 4px;\n\t\t\t\ttop: 4px;\n\t\t\t\tborder-radius: 50%;\n\t\t\t\tborder: 1px solid $wp-secondary-gray;\n\t\t\t\tbox-sizing: content-box\n\t\t\t}\n\n\t\t\t/* Rounded sliders */\n\t\t\t&.round {\n\t\t\t\tborder-radius: 23px;\n\t\t\t\tborder: 2px solid $wp-gray-dark;\n\t\t\t\t&::before {\n\t\t\t\tborder-radius: 50%;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\tinput:checked + .slider {\n\t\t\tbackground: $wp-blue;\n\t\t\tborder-color: $wp-blue;\n\t\t\t&::before {\n\t\t\t\tbackground: #FFF;\n\t\t\t\tborder-color: #FFF;\n\t\t\t\ttransform: translateX(20px);\n\t\t\t}\n\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\theight: 6px;\n\t\t\t\twidth: 2px;\n\t\t\t\tleft: 7px;\n\t\t\t\ttop: 4px;\n\t\t\t\tbackground: #FFF;\n\t\t\t\tborder: none;\n\t\t\t}\n\n\t\t}\n\t\tinput:disabled + .slider,\n\t\tinput:disabled:checked + .slider {\n\t\t\tbackground: transparentize($wp-gray-dark, 0.5);\n\t\t\tborder-color: $wp-gray-dark;\n\t\t\topacity: 0.3;\n\t\t}\t\t\n\n\t\tinput:focus + .slider {\n\t\t\tbox-shadow: 0 0 0 2px $wp-lighter-gray, 0 0 0 3px $wp-gray-dark;\n\t\t}\n\n\t}\n\n\t.switch-container {\n\t\tdisplay: block;\n\t\tclear: both;\n\t\tlabel {\n\t\t\tline-height: 1;\n\t\t\tvertical-align: middle;\n\t\t}\n\t\t& + small {\n\t\t\tmargin-left: 49px;\n\t\t}\n\t\t[data-tooltip] .dashicons {\n\t\t\ttransform: translateY(-3px);\n\t\t}\n\t}\n\n\t.wpo-fieldgroup > .switch-container:first-child {\n\t\tpadding-top: 0;\n\t}\n\n}\n\nlabel.wpo-label__bold {\n\tfont-weight: 600;\n}\n\n/* Help popup */\n\n.wpo-info {\n\tposition: relative;\n\tdisplay: inline-block;\n\t@media (max-width:480px) {\n\t\tdisplay: block;\n\t}\n}\n\n.wpo-info__content {\n\topacity: 0;\n\tvisibility: hidden;\n\tposition: absolute;\n\ttop: 100%;\n\tleft: -25px;\n\tbackground: #FFF;\n\tpadding: 20px;\n\twidth: 380px;\n\tmax-width: 380px;\n\tz-index: 5;\n\tbox-shadow: 0px 11px 25px 0px rgba(0, 0, 0, 0), 0px 11px 25px 3000px rgba(0, 0, 0, 0);\n\ttransition: 0.2s all;\n\n\t@media (max-width:480px) {\n\t\twidth: auto;\n\t}\n}\n\nspan.wpo-info__close {\n\tdisplay: none;\n\tmargin-left: 20px;\n\tcolor: #444;\n}\n\n.wpo-info.opened {\n\n\tspan.wpo-info__close {\n\t\tdisplay: inline-block;\n\t}\n\n\t.wpo-info__content {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t\tbox-shadow: 0px 11px 25px 0px rgba(0, 0, 0, 0.3), 0px 11px 25px 3000px rgba(0, 0, 0, 0.3);\n\t}\n\n\ta.wpo-info__trigger {\n\t\tz-index: 6;\n\t}\n\t\n}\n\n.wpo-info__content img,\n.wpo-info__content iframe {\n\tmax-width: 100%;\n}\n\na.wpo-info__trigger {\n\tdisplay: inline-block;\n\ttext-decoration: none;\n\tpadding: 10px;\n\tposition: relative;\n\tbackground: #FFF;\n\tmargin-left: -10px;\n}\n\na.wpo-info__trigger span.dashicons {\n\ttext-decoration: none;\n\tvertical-align: middle;\n}\n\n.wpo_section.wpo_group.wpo-feature-is-disabled .wpo-fieldgroup:not(.wpo-show) {\n opacity: 0.5;\n}\n\n/* Custom Block UI */\n\n.wpo_shade {\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 0;\n\tright: 0;\n\ttop: 0;\n\tbottom: 0;\n\twidth: 100%;\n\theight: 100%;\n\tz-index: 9979;\n\topacity: 1;\n\tbackground-color: rgba(255, 255, 255, 0.88);\n}\n\n.wpo_shade.hidden {\n\tdisplay: none;\n}\n\n.wpo_shade_inner {\n\ttext-align: center;\n\tpadding-top: 80px;\n}\n\n.wpo_shade_inner h4 {\n\tfont-size: 2em;\n}\n\n.wpo_shade_inner .dashicons.dashicons-update-alt {\n\tfont-size: 50px;\n\theight: 50px;\n\twidth: 50px;\n}\n\n.wpo-rotate {\n\tanimation: rotate 1s linear infinite;\n\ttransform-origin: 50% 50%;\n}\n\n.wpo-info.highlight-dashicons span.dashicons {\n\tcolor: green;\n\tfont-weight: bold;\n}","/* TABS */\n\n#wp-optimize-wrap h2.nav-tab-wrapper {\n margin-bottom: 0;\n\tborder-bottom: none;\n\tposition: relative;\n\t\n\t.nav-tab,\n\t.nav-tab:hover,\n\t.nav-tab:focus,\n\t.nav-tab:focus:active {\n\t\tborder: none;\n\t\tbackground: transparent;\n\t\tmargin: 0;\n\t\tborder-top: 3px solid transparent;\n\t\tpadding: 7px 15px;\n\t\tcolor: $wp-blue;\n\n\t\t.dashicons {\n\t\t\tdisplay: block;\n\t\t\tmargin: 0 auto;\n\t\t\tcolor: $wp-secondary-gray;\n\t\t\tfont-size: 30px;\n\t\t\twidth: 30px;\n\t\t\theight: 30px;\n\t\t}\n\t\t\n\t\tspan.menu-pill {\n\t\t\tdisplay: inline-block;\n\t\t\tmargin-left: 6px;\n\t\t\tpadding: 4px;\n\t\t\tfont-size: 10px;\n\t\t\tline-height: 1;\n\t\t\tborder-radius: 3px;\n\t\t\tfont-weight: 300;\n\t\t\ttext-transform: uppercase;\n\t\t\tletter-spacing: .06em;\n\t\t\t&.premium-only {\n\t\t\t\tbackground: $wp-blue;\n\t\t\t\tcolor: #FFF;\n\t\t\t}\n\t\t\t&.disabled {\n\t\t\t\tbackground: #777;\n\t\t\t\tcolor: #FFF;\n\t\t\t}\n\t\t\t&.hidden {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\t}\n\t\n\t.nav-tab-active,\n\t.nav-tab-active:hover,\n\t.nav-tab-active:focus,\n\t.nav-tab-active:focus:active {\n\t\tbackground: #FFF;\n\t\tbox-shadow: 0 0 1px rgba(0, 0, 0, 0.04);\n\t\tborder-top-color: $wp-blue;\n\n\t\t.dashicons {\n\t\t\tcolor: $wp-blue;\n\t\t}\n\t}\n\n\t.wpo-feedback {\n\t\tdisplay: block;\n\t\tfloat: right;\n\t\tposition: relative;\n\n\t\t> .nav-tab,\n\t\t> .nav-tab:hover,\n\t\t> .nav-tab:focus,\n\t\t> .nav-tab:focus:active {\n\t\t\tposition: relative;\n\t\t\t.dashicons {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tfont-size: 20px;\n\t\t\t\theight: 18px;\n\t\t\t\ttransform: translateY(4px);\n\t\t\t}\n\t\t}\n\n\t\t> div {\n\t\t\tdisplay: none;\n\t\t}\n\t\t&:hover {\n\t\t\ta.nav-tab::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 0;\n\t\t\t\tright: 0;\n\t\t\t\theight: 2px;\n\t\t\t\twidth: 100%;\n\t\t\t\tbackground-color: #0172aa;\n\t\t\t}\n\t\t\t> div {\n\t\t\t\tposition: absolute;\n\t\t\t\tdisplay: block;\n\t\t\t\tbackground: #FFF;\n\t\t\t\tpadding: 15px;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 100%;\n\t\t\t\tz-index: 4;\n\t\t\t\tbox-shadow: 0px 11px 25px 0px rgba(0, 0, 0, 0.1);\n\t\t\t\twidth: 350px;\n\n\t\t\t\ta {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tpadding: 6px 3px;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t@media (max-width: $breakpoint-small) {\n\t\t.wpo-feedback {\n\t\t\tdisplay: none;\n\t\t}\n\t\ta:not(.nav-tab-active) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\t\n\ta[role=\"toggle-menu\"] {\n\t\tdisplay: block;\n\t\tfloat: right;\n\t\t@media (min-width: $breakpoint-small) {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\n\ta.nav-tab.wp-optimize-nav-tab__back {\n\t\t&, &:focus:active {\t\n\n\t\t\ttext-align: right;\n\n\t\t\t.dashicons {\n\t\t\t\tcolor: $wp-light-gray;\n\t\t\t\tfont-size: 18px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\theight: auto;\n\t\t\t\tline-height: inherit;\n\t\t\t\twidth: 20px;\n\t\t\t}\n\n\t\t\t@media (min-width: $breakpoint-small) {\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 14px;\n\t\t\t\tright: 0;\n\t\t\t\tfont-size: 12px;\n\t\t\t\tfont-weight: 400;\n\t\t\t\ttext-decoration: none;\n\t\t\t\tpadding: 0;\n\t\t\t\n\t\t\t\t.dashicons {\n\t\t\t\t\tcolor: $wp-light-gray;\n\t\t\t\t\tfont-size: 18px;\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\theight: auto;\n\t\t\t\t\tline-height: inherit;\n\t\t\t\t\twidth: 20px;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t}\n\t\n\t}\n}\n\n@media (max-width: $breakpoint-small) {\n\n\t.wpo-mobile-menu-opened {\n\n\t\t.wpo-main .wpo-tab-postbox {\n\t\t//\tdisplay: none;\n\t\t}\n\n\t\th2.nav-tab-wrapper a {\n\t\t\tdisplay: block;\n\t\t\tfloat: none;\n\n\t\t\t&.nav-tab {\n\t\t\t\tdisplay: block !important;\n\t\t\t}\n\n\t\t\t&:not(.nav-tab-active) {\n\t\t\t\tbackground: #f9f9f9 !important;\n\t\t\t}\n\n\t\t\t&.nav-tab-active,\n\t\t\t&.nav-tab-active:focus {\n\t\t\t\tborder-top: none;\n\t\t\t\tborder-left: 3px solid;\n\t\t\t}\n\n\t\t\t&.nav-tab-active,\n\t\t\t&.nav-tab-active:focus,\n\t\t\t&:focus,\n\t\t\t&:hover,\n\t\t\t& {\n\t\t\t\t.dashicons {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tline-height: inherit;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&[role=\"toggle-menu\"] {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t}\n\n}\n\n\n/* Pages MENU */\n\n.wpo-pages-menu {\n\tposition: absolute;\n\tbottom: 0;\n\tright: 0;\n\tdisplay: none;\n\n\t@media (max-width: 820px) {\n\t\t.opened + & {\n\t\t\tdisplay: block;\n\t\t\tbox-shadow: 0 5px 25px rgba(0, 0, 0, 0.17);\n\t\t}\n\t}\n\n\t@media (min-width: 821px) {\n\t\tdisplay: flex;\n\t\theight: 77px;\n\t}\n\n\t> a {\n\t\ttext-decoration: none;\n\t\tposition: relative;\n\t\tcolor: inherit;\n\t\ttext-align: center;\n\t\tbox-sizing: border-box;\n\t\tdisplay: block;\n\t\tcolor: $wp-gray-dark;\n\n\t\t@media (min-width: 821px) {\n\t\t\tpadding: 0 8px;\n\t\t\theight: 77px;\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\tjustify-content: center;\n\n\t\t\t> span {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: 0 auto;\n\t\t\t}\n\t\t}\n\n\t\t@media (max-width: 820px) {\n\t\t\tpadding: 15px;\n\t\t\tfont-size: 1.2em;\n\t\t}\n\n\t\t&.active {\n\t\t\t&::after {\n\t\t\t\tcontent: '';\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 3px;\n\t\t\t\tbackground: $brand;\n\t\t\t\tcolor: $wp-gray-darker;\n\n\t\t\t\t@media (max-width: 820px) {\n\t\t\t\t\twidth: 3px;\n\t\t\t\t\theight: 100%;\n\t\t\t\t}\n\n\t\t\t}\n\t\t\t@media (max-width: 820px) {\n\t\t\t\tcolor: $brand;\n\t\t\t}\n\t\t}\n\n\t\t&:hover {\n\t\t\tbackground: #F9F9F9;\n\t\t\tcolor: $wp-gray-darker;\n\t\t}\n\t}\n\n\tspan.separator {\n\t\tdisplay: block;\n\t\twidth: 2px;\n\t\tbackground: #EFEFEF;\n\t\tmargin-top: 18px;\n\t\tmargin-bottom: 18px;\n\t\tmargin-right: 5px;\n\t\tmargin-left: 5px;\n\t\t@media (max-width: 820px) {\n\t\t\twidth: 80%;\n\t\t\theight: 2px;\n\t\t\tmargin: 10px 10%;\n\t\t}\n\t}\n\n\t@media (max-width: 820px) {\n\t\ttext-align: center;\n\t\ttop: 100%;\n\t\twidth: 100%;\n\t\tbottom: auto;\n\t\tbackground: #FFF;\t\t\n\n\t}\n\n\tbody.rtl & {\n\t\tleft: 0;\n\t\tright: auto;\n\t}\n}\n\n#wp-optimize-nav-page-menu {\n\tposition: absolute;\n\tright: 0;\n\tbottom: 0;\n\tdisplay: flex;\n\theight: 77px;\n flex-direction: column;\n padding: 0 20px;\n align-items: center;\n justify-content: center;\n\ttext-decoration: none;\n\n\t&:not(.opened) .dashicons-no-alt {\n\t\tdisplay: none;\n\t}\n\n\t&.opened .dashicons-menu {\n\t\tdisplay: none;\n\t}\n\n\t@media (min-width: 821px) {\n\t\tdisplay: none;\n\t}\n\n\tbody.rtl & {\n\t\tright: auto;\n\t\tleft: 0;\n\t}\n}\n\n/* DASHBOARD Menu */\n\n/* Calculate column width with a $spacing gutter */\n.wpo-dashboard-pages-menu {\n\tdisplay: flex;\n\tflex-wrap: wrap;\n\n\t/* Same size for 1 to 3 items */\n\t&[data-itemscount=\"1\"],\n\t&[data-itemscount=\"2\"],\n\t&[data-itemscount=\"3\"] {\n\t\t.wpo-dashboard-pages-menu__item {\n\t\t\twidth: calc(33.333% - 40px / 3);\n\t\t}\n\t}\n\n\t/* above 3 items, change sizes */\n\t@for $count from 4 to 6 {\n\t\t&[data-itemscount=\"$count\"] {\n\t\t\t.wpo-dashboard-pages-menu__item {\n\t\t\t\twidth: calc(100% / $count - $spacing * ($count - 1) / $count);\n\t\t\t}\n\t\t}\n\t}\n\n\t.postbox.wpo-dashboard-pages-menu__item {\n\t\tpadding: $spacing;\n\t\tmargin-right: $spacing;\n\t\tbox-sizing: border-box;\n\t\tpadding-bottom: 60px;\n\t\tmin-width: 0;\n\t\n\t\t&:last-child {\n\t\t\tmargin-right: 0;\n\t\t}\n\t\n\t\th3 {\n\t\t\tmargin-top: 0;\n\n\t\t\t.dashicons {\n\t\t\t\tcolor: $wp-secondary-gray;\n\t\t\t\tline-height: 1;\n\t\t\t\theight: 18px;\n\t\t\t\tmargin-top: -2px;\n\t\t\t\tmargin-right: 10px\n\t\t\t}\n\n\t\t}\n\n\t\ta {\n\t\t\tposition: absolute;\n\t\t\tbottom: $spacing;\n\t\t\tleft: $spacing;\n\t\t\twidth: calc(100% - $spacing * 2) !important;\n\t\t}\n\n\t\t@media (max-width: $breakpoint-small) {\n\t\t\twidth: 100%;\n\t\t\tmargin-right: 0;\n\t\t\tpadding-bottom: 20px;\n\n\t\t\ta.button.button-large {\n\t\t\t\twidth: auto !important;\n\t\t\t\tleft: auto;\n\t\t\t\tbottom: auto;\n\t\t\t\ttop: 50%;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t\tright: $spacing;\n\t\t\t}\n\n\t\t\th3 {\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\tp {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t}\n\t\n\t}\n\n}\n","/* CSS for adverts */\n\n.updraft-ad-container.updated,\n.updraft-ad-container {\n\tmargin-left: 0px;\n\tmargin-right: 0px;\n\tposition: relative;\n\tpadding-right: 80px;\n}\n\n/* General notices (non WPO) on the WPO page */\n\nbody[class*=WP-Optimize],\nbody[class*=wp-optimize] {\n\t.notice, .error {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t}\n}\n\n/*\n\tMake the main error notice sticky\n*/\n\nbody.wp-core-ui.is-scrolled .wpo-main-error-notice {\n position:fixed;\n top: 132px;\n left: 160px;\n right: 0;\n z-index: 20;\n transition: .2s all;\n}\n\n/* Remove other notices */\n\ndiv#wpbody-content {\n\t> .notice:not(.wpo-notice),\n\t> .warning:not(.wpo-notice),\n\t> .updated:not(.wpo-notice),\n\t> .error:not(.wpo-notice) {\n\t\tdisplay: none;\n\t}\n}\n\n.toplevel_page_WP-Optimize.rtl .notice,\n.toplevel_page_WP-Optimize.rtl div.updated,\n.toplevel_page_WP-Optimize.rtl div.error,\n.toplevel_page_WP-Optimize .notice,\n.toplevel_page_WP-Optimize div.updated,\n.toplevel_page_WP-Optimize div.error {\n\tmargin-right: 0;\n}\n\nbody.rtl .updraft-ad-container.updated,\nbody.rtl .updraft-ad-container {\n\tpadding-right: 10px;\n\tpadding-left: 80px;\n}\n\n.updraft_notice_container {\n\tpadding: 7px;\n\tdisplay: -webkit-box;\n\tdisplay: -ms-flexbox;\n\tdisplay: flex;\n\t-webkit-box-align: left;\n\t-ms-flex-align: left;\n\talign-items: left;\n\tflex-direction: column;\n\theight: auto;\n\toverflow: hidden;\n}\n\n.updraft_review_notice_container {\n\tpadding: 12px;\n\tdisplay: flex;\n}\n\n.updraft_advert_content_left {\n\tfloat: none;\n\twidth: 65px;\n}\n\n.updraft_advert_content_left_extra {\n\tfloat: none;\n\twidth: 100px;\n\tpadding-right: 15px;\n\tdisplay: flex;\n\talign-items: center;\n}\n\n.updraft_advert_content_right {\n\tfloat: none;\n\twidth: auto;\n\toverflow: hidden;\n}\n\n.updraft_advert_bottom {\n\tmargin: 10px 0;\n\tpadding: 10px;\n\tfont-size: 140%;\n\tbackground-color: #FFF;\n\tborder-color: #E6DB55;\n\tborder: 1px solid;\n\tborder-radius: 4px;\n}\n\n.updraft_advert_button_container {\n\tmargin-bottom: 10px;\n\tdisplay: flex;\n\talign-items: center;\n}\n\n.updraft_advert_button_container .dashicons {\n\tmargin-left: 10px;\n}\n\n.updraft-advert-dismiss {\n\tposition: absolute;\n\tfont-size: 13px;\n\ttop: 5px;\n\tright: 10px;\n}\n\nbody.rtl .updraft-advert-dismiss {\n\tleft: 10px;\n\tright: auto;\n}\n\nh3.updraft_advert_heading {\n\tmargin-top: 5px !important;\n\tmargin-bottom: 5px !important;\n}\n\nh4.updraft_advert_heading {\n\tmargin-top: 2px !important;\n\tmargin-bottom: 3px !important;\n}\n\n.updraft_center_content {\n\ttext-align: center;\n\tmargin-bottom: 5px;\n}\n\n.updraft_notice_link {\n\tpadding-left: 5px;\n}\n\n.updraft_text_center {\n\ttext-align: center;\n}\n\n.wpo-main-header + .updraft-ad-container,\n.wpo-main-header + .updated {\n\tmargin-bottom: 20px;\n}\n\n.processed .updated {\n\tmargin: 0;\n}\n\n@media screen and (min-width: 560px) {\n\n\t.updraft_notice_container {\n\t\tflex-direction: row;\n\t\t-webkit-box-align: center;\n\t\t-ms-flex-align: center;\n\t\talign-items: center;\n\t}\n\n\t.updraft_advert_content_left, .updraft_advert_content_left_extra {\n\t\tfloat: left;\n\t}\n\n}\n\n@media screen and (max-width: 560px) {\n\n\tbody.rtl .updraft-ad-container.updated,\n\tbody.rtl .updraft-ad-container {\n\t\tpadding-right: 10px;\n\t\tpadding-left: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 768px) {\n\n\t.wpo-main-header + .updraft-ad-container,\n\t.wpo-main-header + .updated {\n\t\tmargin-right: 0;\n\t}\n\n}\n\n","/* Unused images / wpo_smush_image / image grid*/\n\n.wpo_unused_image, .wpo_smush_image {\n\tposition: relative;\n\tmargin: 4px;\n\twidth: calc(50% - 8px);\n\ttext-align: center;\n\n\t@media (min-width: 500px) {\n\t\twidth: calc(25% - 8px);\n\t}\n\n\t@media (min-width: $breakpoint-small) {\n\t\twidth: calc(16.6666% - 8px);\n\t}\n\n\t@media (min-width: 1100px) {\n\t\twidth: calc(12.5% - 8px);\n\t}\n\n\t.wpo_unused_image__input {\n\t\tposition: absolute;\n\t\ttop: 10px;\n\t\topacity: 0;\n\t\twidth: 0;\n\t\theight: 0;\n\t}\n\t\n\tlabel {\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\tposition: relative;\n\t\tpadding: 1px;\n\t\tborder: 3px solid $wp-lighter-gray;\n\t\tbox-sizing: border-box;\n\n\t\t&::before {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tpadding-top: 100%;\n\t\t}\n\n\t\t.thumbnail {\n\t\t\tposition: absolute;\n\t\t\ttop: 1px;\n\t\t\tleft: 1px;\n\t\t\twidth: calc(100% - 2px);\n\t\t\theight: calc(100% - 2px);\n\t\t\tbackground-repeat: no-repeat;\n\t\t\tbackground-size: cover;\n\t\t\tbackground-position: 50% 50%;\n\t\t\toverflow: hidden;\n\t\t\tbackground: rgba(220, 220, 220, 0.2);\n\n\t\t\timg {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: 0;\n\t\t\t\tmax-height: 100%;\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 50%;\n\t\t\t\tleft: 50%;\n\t\t\t\ttransform: translate(-50%,-50%);\n\t\t\t\tuser-select: none;\n\t\t\t}\n\n\t\t}\n\n\t\tspan.dashicons {\n\t\t\tposition: absolute;\n\t\t\ttop: 50%;\n\t\t\tleft: 50%;\n\t\t\ttransform: translate(-50%, -50%);\n\t\t\tfont-size: 25px;\n\t\t\twidth: 25px;\n\t\t\topacity: .2;\n\t\t}\n\t}\n\t\n\t.wpo_unused_image__input:checked + label,\n\t&.selected label {\n\t\tborder-color: $wp-blue;\n\t}\n\n\t&:focus-within label {\n\t\tbox-shadow: 0 0 4px $wp-blue;\n\t}\n\t\n\ta, a.button, a.button:active {\n\t\tposition: absolute;\n\t\tz-index: 2;\n\t\tbottom: 13px;\n\t\tleft: 50%;\n\t\ttransform: translateX(-50%);\n\t\tdisplay: none;\n\t}\n\n\t&:hover {\n\n\t\ta, a.button, a.button:active {\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t}\n\n}\n\n#wpo_unused_images, #wpo_unused_images_trash, #wpo_smush_images_grid {\n\twidth: calc(100% + 8px);\n margin-left: -4px;\n margin-right: -4px;\n\tmax-height: 500px;\n\toverflow-y: auto;\n display: flex;\n\tflex-wrap: wrap;\n\tposition: relative;\n\n\t.wpo-fieldgroup {\n\t\twidth: 100%;\n\t\tmargin: 4px;\n\t}\n\n}\n\n#wpo_unused_images a, #wpo_unused_images_trash a {\n\toutline: none;\n}\n\n.wpo-unused-images__premium-mask,\n.wpo-unused-image-sizes__premium-mask {\n\tposition: absolute;\n\ttop: 0; \n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tz-index: 1;\n\tbackground: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.85));\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n}\n\n.wpo-unused-image-sizes__premium-mask {\n\tbackground: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.85));\n}\n\na.wpo-unused-images__premium-link {\n\tbackground: #FFF;\n\tdisplay: inline-block;\n\tpadding: 10px;\n\tborder-radius: 3px;\n\tbox-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);\n}\n","/* More Plugins page */\n\n/* Plugins family / Premium */\n\np.wpo-plugin-installed {\n color: $success;\n}\n\n/* Settings repeater */\n\n.wpo-repeater__add {\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tfont-weight: bold;\n\ttext-decoration: none;\n\t.dashicons {\n\t\ttransform: translateY(-2px);\n\t}\n}\n\n\n/* Plugin familly tab */\n\n.wpo-plugin-family__premium h2 {\n margin: 0;\n padding: 25px;\n}\n\n.wpo-plugin-family__plugins {\n display: flex;\n flex-wrap: wrap;\n\tpadding-left: 1px;\n\tpadding-bottom: 1px;\n}\n\n.wpo-plugin-family__plugin {\n flex: auto;\n width: 100%;\n padding: 30px;\n box-sizing: border-box;\n border: 1px solid #E3E4E7;\n\tmargin-left: -1px;\n\tmargin-bottom: -1px;\n\n\t@media (min-width: $breakpoint-small) {\n\t\twidth: 50%;\n\n\t\t.wpo-plugin-family__free & {\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n\t@media (max-width: 1080px) {\n\t\t.wpo-plugin-family__free & {\n\t\t\twidth: 50%;\n\t\t}\n\t}\n\n\t@media (max-width: $breakpoint-small) {\n\t\t.wpo-plugin-family__free & {\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n}\n\ndiv#wp-optimize-nav-tab-wpo_mayalso-may_also-contents .wpo-tab-postbox {\n padding: 0;\n}\n\n/* Added for WPO Premium Features tab */\n.wpo_feature_cont {\n\twidth: 64.5%;\n}\n\n.wpo_plugin_family_cont {\n\twidth: 34.5%;\n}\n\n@media (max-width: 1080px) {\n\n\t.wpo_feature_cont,\n\t.wpo_plugin_family_cont {\n\t\twidth: 100%;\n\t\tfloat: none;\n\t\tmargin: 0;\n\t}\n\n}\n\n.wpo_feature_cont,\n.wpo_plugin_family_cont {\n\n\theader {\n\t\tpadding: 20px;\n\n\t\t@media (max-width: 1080px) {\n\t\t\tpadding: 40px;\t\t\n\t\t}\n\n\t\th2 {\n\t\t\tmargin: 0;\n\t\t}\n\t\n\t\tp {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t}\n\n}\n\n.wpo_feat_table, .wpo_feat_th, .wpo_feat_table td {\n\tborder: none;\n\tborder-collapse: collapse;\n\tbackground-color: white;\n\tfont-size: 120%;\n\ttext-align: center;\n}\n\n.wpo_feat_table {\n\ttd {\n\t\tborder: 1px solid #F1F1F1;\n\t\tborder-bottom-width: 4px;\n\t\tpadding: 15px;\n\t}\n\n\ttd:nth-child(2), td:nth-child(3) {\n\t\tbackground: rgba(241, 241, 241, 0.38);\n\t}\n\n\tp {\n\t\tpadding: 0px 10px;\n\t\tmargin: 5px 0px;\n\t\tfont-size: 13px;\n\t}\n\n\th4 {\n\t\tmargin: 5px 0px;\n\t}\n\n\t.dashicons {\n\t\twidth: 25px;\n\t\theight: 25px;\n\t\tfont-size: 25px;\n\t\tline-height: 1;\n\t}\n\n\t.dashicons-yes, .updraft-yes {\n\t\tcolor: green;\n\t}\n\t\n\t.dashicons-no-alt, .updraft-no {\n\t\tcolor: red;\n\t}\n\t\n\ttr.wpo-main-feature-row td {\n\t\tbackground: #f1f1f1;\n\t\tborder-bottom-color: #fafafa;\n\n\t\timg.wpo-premium-image {\n\t\t\twidth: 64px;\n\t\t}\n\t}\n}\n\n\n\n.wpo-premium-image {\n\tdisplay: none;\n}\n\n@media screen and (min-width: 720px) {\n\n\t#wpoptimize_table_list_filter {\n\t\twidth: 40%;\n\t}\n\n\t.wpo-premium-image {\n\t\tdisplay: block;\n\t\tfloat: left;\n\t\tpadding: 16px 18px;\n\t\twidth: 30px;\n\t\theight: auto;\n\t}\n\n}\n\n@media screen and (min-width: 1220px) {\n\n\t.wpo_feat_table td:nth-child(2), .wpo_feat_table td:nth-child(3) {\n\t\twidth: 110px;\n\t}\n\n}\n\n.other-plugin-title {\n\ttext-decoration: none;\n}\n\n@media screen and (max-width: $breakpoint-small) {\n\n\ttable.wpo_feat_table {\n\n\t\tdisplay: block;\n\n\t\ttr {\n\t\t\tdisplay: flex;\n\t\t\tflex-wrap: wrap;\n\t\t}\n\n\t\ttd {\n\t\t\tdisplay: block;\n\n\t\t\t&:first-child {\n\t\t\t\twidth: 100%;\n\t\t\t\tborder-bottom: none;\n\t\t\t}\n\n\t\t\t&:not(:first-child) {\n\t\t\t\twidth: 50%;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t}\n\n\t\t\t&:first-child:empty {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t&[data-colname]::before {\n\t\t\t\tcontent: attr(data-colname);\n\t\t\t\tfont-size: 0.8rem;\n\t\t\t\tcolor: #CCC;\n\t\t\t\tline-height: 1;\n\t\t\t}\n\t\t}\n\t}\n\n}\n\n.wpo-cache-feature-image {\n\twidth: 40px;\n\tpadding: 16px 14px;\n}\n","\n/* tablesorter */\n\n#wp-optimize-wrap {\n\n\t.wp-list-table {\n\t\t\n\t\ttd {\n\t\t\tword-break: break-all; \n\t\t}\n\n\t}\n\n\t@media screen and (max-width: $breakpoint-small ) {\n\n\t\t.wp-list-table.wp-list-table-mobile-labels tbody {\n\n\t\t\t&, tr, th, td {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\n\t\t\ttd {\n\t\t\t\tpadding: 3px 8px 3px 35%;\n\t\t\t\tword-break: break-word;\n\t\t\t\tbox-sizing: border-box; \n\n\t\t\t\t&::before {\n\t\t\t\t\tcolor: $wp-light-gray;\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\t\t\n\n\t\t.wp-list-table.wp-list-table-mobile-labels thead {\n\n\t\t\t&, tr {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\n\t\t\tth.column-primary {\n\t\t\t\tdisplay: block;\n\t\t\t\tbox-sizing: border-box; \n\t\t\t}\n\n\t\t\tth:not(.column-primary) {\n\t\t\t\tdisplay: none !important; \n\t\t\t}\n\n\t\t}\n\n\t}\n\n\tbody.rtl & {\n\t\t.wpo-table-list-filter {\n\t\t\ttext-align: left;\n\t\t}\n\t\t@media screen and (max-width: $breakpoint-small ) {\n\t\t\t.wp-list-table.wp-list-table-mobile-labels tbody {\n\t\t\t\ttd {\n\t\t\t\t\tpadding: 3px 35% 3px 8px;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n.tablesorter-headerRow th {\n\tvertical-align: top;\n}\n\nth:not(.sorter-false) .tablesorter-header-inner {\n\n\tcolor: #0074ab;\n\n\t&::after {\n\t\tcontent: '';\n\t\tfont-family: 'dashicons';\n\t\tfont-size: 20px;\n\t\tline-height: 20px;\n\t\theight: 20px;\n\t\twidth: 20px;\n\t\tdisplay: none;\n\t\tvertical-align: bottom;\n\t}\n\n}\n\nth.tablesorter-header.tablesorter-headerAsc,\nth.tablesorter-header.tablesorter-headerDesc {\n font-weight: 500;\n border-bottom-color: $wp-blue;\n\t.tablesorter-header-inner::after {\n\t\tdisplay: inline-block;\n\t}\n}\n\nth.tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner::after {\n content: \"\\f140\";\n}\n\nth.tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner::after {\n content: \"\\f142\";\n}\n\nth.tablesorter-header:focus {\n outline: none;\n\tbox-shadow: 0 0 3px rgba(0, 116, 171, 0.78);\n\n\t&:not(.tablesorter-headerAsc):not(.tablesorter-headerDesc) .tablesorter-header-inner::after {\n\t\tcontent: \"\\f142\";\n\t\topacity: 0.5;\n\t}\n\n}\n\n.tablesorter.hasFilters tr.filtered {\n display: none;\n}\n",".wpo-text__dim {\n .dashicons-info {\n margin-top: 2px;\n margin-right: 5px;\n border-radius: 30px;\n background: #fff;\n color: $red;\n }\n}\n\n#page_cache_length_value {\n height: 28px;\n position: relative;\n top: 2px;\n}\n\n#wp_optimize_preload_cache_status {\n margin-left: 10px;\n display: inline-block;\n color: #82868B;\n font-size: smaller;\n}\n\n.align-left {\n margin: 10px 10px 0px 0px;\n float: left;\n}\n\ntextarea.cache-settings {\n display: block;\n clear: both;\n min-height: 225px;\n overflow: scroll;\n min-width: 75%;\n margin: 10px 0px;\n}\n\n#wp-optimize-purge-cache, \n#wp-optimize-purge-cache ~ span, \n#wp-optimize-purge-cache ~ img {\n vertical-align: middle;\n top: auto;\n}\n\n#wp-optimize-nav-tab-wpo_cache-cache-contents .wpo-error {\n font-size: 12px;\n}\n\n\n#wpo_browser_cache_error_message {\n padding-top: 10px;\n padding-bottom: 10px;\n margin-left: 0;\n margin-bottom: 10px;\n \n &:empty {\n display: none;\n }\n}\n\n#wp-optimize-nav-tab-wpo_cache-advanced-contents,\n#wp-optimize-nav-tab-wpo_cache-preload-contents,\n#wp-optimize-nav-tab-wpo_cache-cache-contents {\n label {\n font-weight: 600;\n em {\n font-weight: normal;\n }\n }\n}\n\n.wpo-gzip-already-enabled span.dashicons.dashicons-yes,\n.wpo-enabled > span.dashicons.dashicons-yes {\n font-size: 40px;\n width: 40px;\n height: 40px;\n line-height: 40px;\n vertical-align: middle;\n color: green;\n}\n","#wp-optimize-wrap {\n\n\t.filename {\n\t\tdisplay: inline-block;\n\t\tpadding: 6px 0;\n\t}\n\n\t.no-files-yet .filename {\n\t\tfont-style: italic;\n\t}\n\n\t.processed {\n\t\tmargin: 0;\n\t}\n\n\t.processed .wpo_min_log {\n\t\tpadding: 8px;\n\t\tbackground: white;\n\t\tborder: 1px solid #CDCDCD;\n\t\tborder-radius: 4px;\n\t\tline-height: 1.5em;\n\t\tul {\n\t\t\toverflow-x: auto;\n\t\t\tli {\n\t\t\t\twhite-space: nowrap;\n\t\t\t\t&.failed .wpo_min_file_url {\n\t\t\t\t\tcolor: #dc3232;\n\t\t\t\t}\n\t\t\t\t&.disable-list-item {\n\t\t\t\t\topacity: 0.5;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\th5 {\n\t\t\tmargin-top: 0;\n\t\t\tmargin-bottom: 8px;\n\t\t\tborder-bottom: 1px solid #cdcdcd;\n\t\t\tpadding-bottom: 6px;\n\t\t}\n\t\t.wpo_min_file_debug {\n\t\t\tcolor: #9c9c9c;\n\t\t\tdisplay: inline-block;\n\t\t\t&::before {\n\t\t\t\tcontent: '—';\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tmargin: 0 10px;\n\t\t\t}\n\t\t}\n\t}\n\n\t.show-if-enabled {\n\t\tdisplay: none;\n\t}\n\n\t.is-enabled .show-if-enabled {\n\t\tdisplay: block;\n\t}\n\n\t.wpo-page:not(.is-enabled) .wpo-minify-features {\n\t\tdisplay: none;\n\t}\n\n\t.wpo-page[data-whichpage=\"wpo_minify\"]:not(.is-enabled) .nav-tab-wrapper > a:not([data-tab=\"status\"]):not([role=\"toggle-menu\"]){\n\t\tdisplay: none;\n\t}\n\t\n\t.wpo-minify-features {\n\t\tpadding-top: 1em;\n\t\tmargin-top: 1em;\n\t\tborder-top: 1px solid #bbb;\n\t}\n\n\t.wpo-minify-features .wpo-fieldgroup__subgroup {\n\t\tmargin-bottom: 1em;\n\t}\n\n\t.wpo-fieldgroup__subgroup.wpo_min_enable_minify + .wpo-fieldgroup__subgroup {\n\t\tdisplay: none;\n\t}\n\t\n\t.wpo-fieldgroup__subgroup.wpo_min_enable_minify.enabled + .wpo-fieldgroup__subgroup {\n\t\tdisplay: block;\n\t}\n\n\t.wpo-fieldgroup__subgroup.wpo_min_enable_minify:not(.enabled) {\n\t\tmargin-bottom: 0;\n\t}\n\n\t.defer-js-settings {\n\t\tpadding-left: 1em;\n\t\tborder-left: 2px solid #E2E2E2;\n\t\tmargin-left: 0.5em;\n\t}\n\n\t/* \n\t\tAsset preload table\n\t*/\n\t.asset-preload-list {\n\t\tmargin-bottom: 1em;\n\t\ttd.asset-href {\n\t\t\twidth: 55%;\n\t\t}\n\n\t\ttd.asset-crossorigin {\n\t\t\twidth: 10%;\n\t\t}\n\t\n\t\ttr.editing {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\ttr.form {\n\t\t\tbox-shadow: 0 2px 4px #00000021;\n\t\t}\n\n\t\ttr.form td {\n\t\t\tbackground: #FFF;\n\t\t\tborder: none;\n\t\t\tpadding: 10px;\n\t\t}\n\t\t\n\t\ttr.editing + tr.form td:last-child {\n\t\t\tborder-radius: 0 5px 5px 0;\n\t\t}\n\n\t\ttr.editing + tr.form td:first-child {\n\t\t\tposition: relative;\n\t\t\t&::before {\n\t\t\t\tcontent: '';\n\t\t\t\twidth: 10px;\n\t\t\t\theight: 10px;\n\t\t\t\tbackground: #FFF;\n\t\t\t\tdisplay: block;\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\ttransform: translate(10px, -5px) rotate(45deg);\n\t\t\t}\n\t\t}\n\t\ttbody + tr.form {\n\t\t\ttd {\n\t\t\t\tpadding-top: 37px;\n\t\t\t\tposition: relative;\n\t\t\t\t&[data-label]::before {\n\t\t\t\t\tcontent: attr(data-label);\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: 1em;\n\t\t\t\t\tleft: 10px;\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tcolor: #D0D2D4;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tinput#preload_href {\n\t\t\twidth: 100%;\n\t\t}\n\t\t\n\t\tselect#preload_type {\n\t\t\twidth: 100%;\n\t\t}\n\t\t\n\t\ttd.asset-preload-form--actions,\n\t\ttd.asset-edit {\n\t\t\ttext-align: right;\n\t\t\tbutton {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\t&.wpo-asset--edit {\n\t\t\t\t\t&::after {\n\t\t\t\t\t\tcontent: '|';\n\t\t\t\t\t\tpadding-left: 6px;\n\t\t\t\t\t\tpadding-right: 4px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","/* Modal window */\nbody.wpo-modal-is-opened {\n\toverflow: hidden;\n}\n\n.wpo-modal--container {\n\tposition: fixed;\n top: 0;\n\tleft: 0;\n\tpadding: 3em;\n width: 100%;\n\theight: 100%;\n\tbox-sizing: border-box;\n\tz-index: 9999;\n\toverflow: auto;\n}\n\n.wpo-modal {\n\tposition: relative;\n background: #FFF;\n\twidth: calc(100% - 6em);\n\ttop: 50%;\n\ttransform: translateY(-50%);\n\tmargin: 0 auto;\n padding: 2em;\n box-sizing: border-box;\n\tz-index: 2;\n\t> .wpo-modal--close {\n\t\tborder: none;\n\t\tbackground: none;\n\t\tposition: absolute;\n\t\ttop: 10px;\n\t\tright: 10px;\n\t\twidth: 20px;\n\t\theight: 20px;\n\t\tline-height: 1;\n\t\tpadding: 0;\n\t}\n}\n\n.wpo-modal--bg {\n\tposition: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n\tbackground: rgba(0, 0, 0, 0.74);\n\tz-index: 1;\n}\n\n.wpo-confirm .wpo-modal--content > h3 {\n font-size: 2em;\n}\n\n.wpo-confirm .wpo-modal--content > h3 .dashicons {\n font-size: 30px;\n width: 30px;\n height: 30px;\n transform: translateY(-5px);\n}\n.wpo-confirm .wpo-modal--content > h3 .dashicons.dashicons-warning {\n\tcolor: #feb901;\n}\n",".power-tweaks--list {\n\t@media (min-width: 780px) {\n\t\tdisplay: flex;\n\t flex-direction: row;\n\t\tflex-wrap: wrap;\n\t}\n\t\n\t.wpo-power-tweak {\n\t\twidth: 100%;\n\t\t@media (min-width: 780px) {\n\t\t\twidth: calc(50% / 2 - 1em);\n\t\t\tmargin-right: 1em;\n\t\t}\n\t\t@media (min-width: 1080px) {\n\t\t\twidth: calc(100% / 3 - 1em);\n\t\t\tmargin-right: 1em;\n\t\t}\n\t\tbackground: #f2f4f5;\n\t\tborder-radius: 1em;\n\t\tpadding: 1.5em;\n\t\tmargin-bottom: 1em;\n\t\tbox-sizing: border-box;\n\n\t\th4 {\n\t\t\tmargin-top: 0;\n\t\t}\n\t\t\n\t\t.description {\n\t\t\tmargin-bottom: 1em;\n\t\t}\n\n\t\t.details {\n\t\t\tpadding: 1em;\n\t\t\tbackground: #FFF;\n\t\t\tbox-shadow: 0 2px 3px rgba(0,0,0,0.1);\n\t\t\tmargin-top: 1em;\n\t\t\tmargin-bottom: 1em;\n\t\t}\n\t\t\n\t\t.actions {\n\t\t\tmargin-top: 1em;\n\t\t\tmargin-bottom: 1em;\n\t\t}\n\n\t\t.last-run, .last-updated {\n\t\t\tmargin-top: 1em;\n\t\t\tfont-size: 0.8em;\n\t\t\tcolor: #a9a9a9;\n\t\t}\n\n\t\t.tweak-is-running {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t&.running {\n\t\t\tposition: relative;\n\t\t\t.tweak-is-running {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: center;\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 0;\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tright: 0;\n\t\t\t\tbackground: rgb(242, 244, 245, 0.9);\n\t\t\t\tz-index: 1;\n\t\t\t\tborder-radius: 1em;\n\t\t\t\tfont-size: 1.7em;\n\t\t\t\t.spinner {\n\t\t\t\t\tvisibility: visible;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\ta.show-faqs span.dashicons {\n\t\tfont-size: inherit;\n\t\theight: auto;\n\t\twidth: auto;\n\t\tline-height: inherit;\n\t\ttext-decoration: none;\n\t\tmargin-left: 4px;\n\t}\n\t\n}\n"]}
css/{wp-optimize-global-3-2-3.min.css → wp-optimize-global-3-2-5.min.css} RENAMED
@@ -1,2 +1,2 @@
1
  #wpadminbar .quicklinks .menupop.hover ul li.separator .ab-item.ab-empty-item{height:2px;line-height:2px;background:rgba(255,255,255,0.0902);margin:5px 10px;width:auto;min-width:0}#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats::before{content:'';display:block;margin-left:10px;margin-right:10px;border-top:1px solid rgba(114,119,124,0.48);padding-top:5px;margin-top:5px}#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats .ab-item{height:auto;line-height:1.2}#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats .ab-item span{line-height:1.5;font-size:80%;color:#989898}#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats .ab-item h4{font-weight:500;text-transform:uppercase;color:#FFF}#wpadminbar .quicklinks .menupop ul li .ab-item.loading{opacity:.2}#wpo_always_purge_this_post_type_select+.select2{width:90% !important}.wpo-collapsible-content .smush-details th{font-weight:bold}.wpo-collapsible-content .smush-details tr{display:table-row}.wpo-collapsible-content .smush-details th,.wpo-collapsible-content .smush-details td{text-align:left;padding:0 3px;font-size:.8em}.wpo-collapsible-content .smush-details td:first-child{word-break:break-all}.wpo-collapsible{cursor:pointer}.wpo-collapsible::before{display:inline-block;width:10px}.wpo-collapsible::before{content:'+'}.wpo-collapsible.opened::before{content:'-'}.wpo-collapsible-content{display:none}.wpo-collapsible.opened+.wpo-collapsible-content{display:block}
2
- /*# sourceMappingURL=wp-optimize-global-3-2-3.min.css.map */
1
  #wpadminbar .quicklinks .menupop.hover ul li.separator .ab-item.ab-empty-item{height:2px;line-height:2px;background:rgba(255,255,255,0.0902);margin:5px 10px;width:auto;min-width:0}#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats::before{content:'';display:block;margin-left:10px;margin-right:10px;border-top:1px solid rgba(114,119,124,0.48);padding-top:5px;margin-top:5px}#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats .ab-item{height:auto;line-height:1.2}#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats .ab-item span{line-height:1.5;font-size:80%;color:#989898}#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats .ab-item h4{font-weight:500;text-transform:uppercase;color:#FFF}#wpadminbar .quicklinks .menupop ul li .ab-item.loading{opacity:.2}#wpo_always_purge_this_post_type_select+.select2{width:90% !important}.wpo-collapsible-content .smush-details th{font-weight:bold}.wpo-collapsible-content .smush-details tr{display:table-row}.wpo-collapsible-content .smush-details th,.wpo-collapsible-content .smush-details td{text-align:left;padding:0 3px;font-size:.8em}.wpo-collapsible-content .smush-details td:first-child{word-break:break-all}.wpo-collapsible{cursor:pointer}.wpo-collapsible::before{display:inline-block;width:10px}.wpo-collapsible::before{content:'+'}.wpo-collapsible.opened::before{content:'-'}.wpo-collapsible-content{display:none}.wpo-collapsible.opened+.wpo-collapsible-content{display:block}
2
+ /*# sourceMappingURL=wp-optimize-global-3-2-5.min.css.map */
css/{wp-optimize-global-3-2-3.min.css.map → wp-optimize-global-3-2-5.min.css.map} RENAMED
@@ -1 +1 @@
1
- {"version":3,"sources":["css/wp-optimize-global.css"],"names":[],"mappings":"AAAA,yBAAyB;;AAEzB;CACC,YAAY;CACZ,iBAAiB;CACjB,wCAAsB;CACtB,iBAAiB;CACjB,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,gDAAgD;CAChD,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,eAAe;CACf,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,iBAAiB;CACjB,eAAe;CACf,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAe;CACf","file":"wp-optimize-global-3-2-3.min.css","sourcesContent":["/* Admin bar separator */\n\n#wpadminbar .quicklinks .menupop.hover ul li.separator .ab-item.ab-empty-item {\n\theight: 2px;\n\tline-height: 2px;\n\tbackground: #FFFFFF17;\n\tmargin: 5px 10px;\n\twidth: auto;\n\tmin-width: 0;\n}\n\n#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats::before {\n\tcontent: '';\n\tdisplay: block;\n\tmargin-left: 10px;\n\tmargin-right: 10px;\n\tborder-top: 1px solid rgba(114, 119, 124, 0.48);\n\tpadding-top: 5px;\n\tmargin-top: 5px;\n}\n\n#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats .ab-item {\n\theight: auto;\n\tline-height: 1.2;\n}\n\n#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats .ab-item span {\n\tline-height: 1.5;\n\tfont-size: 80%;\n\tcolor: #989898;\n}\n\n#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats .ab-item h4 {\n\tfont-weight: 500;\n\ttext-transform: uppercase;\n\tcolor: #FFF;\n}\n\n#wpadminbar .quicklinks .menupop ul li .ab-item.loading {\n\topacity: 0.2;\n}\n\n#wpo_always_purge_this_post_type_select + .select2 {\n\twidth: 90% !important;\n}\n\n.wpo-collapsible-content .smush-details th {\n\tfont-weight: bold;\n}\n\n.wpo-collapsible-content .smush-details tr {\n\tdisplay: table-row;\n}\n\n.wpo-collapsible-content .smush-details th,\n.wpo-collapsible-content .smush-details td {\n\ttext-align: left;\n\tpadding: 0 3px;\n\tfont-size: 0.8em;\n}\n\n.wpo-collapsible-content .smush-details td:first-child {\n\tword-break: break-all;\n}\n\n.wpo-collapsible {\n\tcursor: pointer;\n}\n\n.wpo-collapsible::before {\n\tdisplay: inline-block;\n\twidth: 10px;\n}\n\n.wpo-collapsible::before {\n\tcontent: '+';\n}\n\n.wpo-collapsible.opened::before {\n\tcontent: '-';\n}\n\n.wpo-collapsible-content {\n\tdisplay: none;\n}\n\n.wpo-collapsible.opened + .wpo-collapsible-content {\n\tdisplay: block;\n}"]}
1
+ {"version":3,"sources":["css/wp-optimize-global.css"],"names":[],"mappings":"AAAA,yBAAyB;;AAEzB;CACC,YAAY;CACZ,iBAAiB;CACjB,wCAAsB;CACtB,iBAAiB;CACjB,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,gDAAgD;CAChD,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,eAAe;CACf,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,iBAAiB;CACjB,eAAe;CACf,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,YAAY;CACZ;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAe;CACf","file":"wp-optimize-global-3-2-5.min.css","sourcesContent":["/* Admin bar separator */\n\n#wpadminbar .quicklinks .menupop.hover ul li.separator .ab-item.ab-empty-item {\n\theight: 2px;\n\tline-height: 2px;\n\tbackground: #FFFFFF17;\n\tmargin: 5px 10px;\n\twidth: auto;\n\tmin-width: 0;\n}\n\n#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats::before {\n\tcontent: '';\n\tdisplay: block;\n\tmargin-left: 10px;\n\tmargin-right: 10px;\n\tborder-top: 1px solid rgba(114, 119, 124, 0.48);\n\tpadding-top: 5px;\n\tmargin-top: 5px;\n}\n\n#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats .ab-item {\n\theight: auto;\n\tline-height: 1.2;\n}\n\n#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats .ab-item span {\n\tline-height: 1.5;\n\tfont-size: 80%;\n\tcolor: #989898;\n}\n\n#wpadminbar .quicklinks .menupop ul li.wpo-cache-stats .ab-item h4 {\n\tfont-weight: 500;\n\ttext-transform: uppercase;\n\tcolor: #FFF;\n}\n\n#wpadminbar .quicklinks .menupop ul li .ab-item.loading {\n\topacity: 0.2;\n}\n\n#wpo_always_purge_this_post_type_select + .select2 {\n\twidth: 90% !important;\n}\n\n.wpo-collapsible-content .smush-details th {\n\tfont-weight: bold;\n}\n\n.wpo-collapsible-content .smush-details tr {\n\tdisplay: table-row;\n}\n\n.wpo-collapsible-content .smush-details th,\n.wpo-collapsible-content .smush-details td {\n\ttext-align: left;\n\tpadding: 0 3px;\n\tfont-size: 0.8em;\n}\n\n.wpo-collapsible-content .smush-details td:first-child {\n\tword-break: break-all;\n}\n\n.wpo-collapsible {\n\tcursor: pointer;\n}\n\n.wpo-collapsible::before {\n\tdisplay: inline-block;\n\twidth: 10px;\n}\n\n.wpo-collapsible::before {\n\tcontent: '+';\n}\n\n.wpo-collapsible.opened::before {\n\tcontent: '-';\n}\n\n.wpo-collapsible-content {\n\tdisplay: none;\n}\n\n.wpo-collapsible.opened + .wpo-collapsible-content {\n\tdisplay: block;\n}"]}
google-fonts.json CHANGED
@@ -1 +1 @@
1
- ["abeezee","abel","abhaya libre","abril fatface","aclonica","acme","actor","adamina","advent pro","aguafina script","akaya kanadaka","akaya telivigala","akronim","aladin","alata","alatsi","aldrich","alef","alegreya","alegreya sc","alegreya sans","alegreya sans sc","aleo","alex brush","alfa slab one","alice","alike","alike angular","allan","allerta","allerta stencil","allison","allura","almarai","almendra","almendra display","almendra sc","alumni sans","amarante","amaranth","amatic sc","amethysta","amiko","amiri","amita","anaheim","andada pro","andika","andika new basic","angkor","annie use your telescope","anonymous pro","antic","antic didone","antic slab","anton","antonio","arapey","arbutus","arbutus slab","architects daughter","archivo","archivo black","archivo narrow","are you serious","aref ruqaa","arima madurai","arimo","arizonia","armata","arsenal","artifika","arvo","arya","asap","asap condensed","asar","asset","assistant","astloch","asul","athiti","atkinson hyperlegible","atma","atomic age","aubrey","audiowide","autour one","average","average sans","averia gruesa libre","averia libre","averia sans libre","averia serif libre","azeret mono","b612","b612 mono","bad script","bahiana","bahianita","bai jamjuree","bakbak one","ballet","baloo 2","baloo bhai 2","baloo bhaijaan 2","baloo bhaina 2","baloo chettan 2","baloo da 2","baloo paaji 2","baloo tamma 2","baloo tammudu 2","baloo thambi 2","balsamiq sans","balthazar","bangers","barlow","barlow condensed","barlow semi condensed","barriecito","barrio","basic","baskervville","battambang","baumans","bayon","be vietnam pro","bebas neue","belgrano","bellefair","belleza","bellota","bellota text","benchnine","benne","bentham","berkshire swash","besley","beth ellen","bevan","bhutuka expanded one","big shoulders display","big shoulders inline display","big shoulders inline text","big shoulders stencil display","big shoulders stencil text","big shoulders text","bigelow rules","bigshot one","bilbo","bilbo swash caps","biorhyme","biorhyme expanded","birthstone","birthstone bounce","biryani","bitter","black and white picture","black han sans","black ops one","blinker","bodoni moda","bokor","bona nova","bonbon","bonheur royale","boogaloo","bowlby one","bowlby one sc","brawler","bree serif","brygada 1918","bubblegum sans","bubbler one","buda","buenard","bungee","bungee hairline","bungee inline","bungee outline","bungee shade","butcherman","butterfly kids","cabin","cabin condensed","cabin sketch","caesar dressing","cagliostro","cairo","caladea","calistoga","calligraffitti","cambay","cambo","candal","cantarell","cantata one","cantora one","capriola","caramel","carattere","cardo","carme","carrois gothic","carrois gothic sc","carter one","castoro","catamaran","caudex","caveat","caveat brush","cedarville cursive","ceviche one","chakra petch","changa","changa one","chango","charm","charmonman","chathura","chau philomene one","chela one","chelsea market","chenla","cherish","cherry cream soda","cherry swash","chewy","chicle","chilanka","chivo","chonburi","cinzel","cinzel decorative","clicker script","coda","coda caption","codystar","coiny","combo","comfortaa","comforter","comforter brush","comic neue","coming soon","commissioner","concert one","condiment","content","contrail one","convergence","cookie","copse","corben","corinthia","cormorant","cormorant garamond","cormorant infant","cormorant sc","cormorant unicase","cormorant upright","courgette","courier prime","cousine","coustard","covered by your grace","crafty girls","creepster","crete round","crimson pro","croissant one","crushed","cuprum","cute font","cutive","cutive mono","dm mono","dm sans","dm serif display","dm serif text","damion","dancing script","dangrek","darker grotesque","david libre","dawning of a new day","days one","dekko","dela gothic one","delius","delius swash caps","delius unicase","della respira","denk one","devonshire","dhurjati","didact gothic","diplomata","diplomata sc","do hyeon","dokdo","domine","donegal one","dongle","doppio one","dorsa","dosis","dotgothic16","dr sugiyama","duru sans","dynalight","eb garamond","eagle lake","east sea dokdo","eater","economica","eczar","el messiri","electrolize","elsie","elsie swash caps","emblema one","emilys candy","encode sans","encode sans condensed","encode sans expanded","encode sans sc","encode sans semi condensed","encode sans semi expanded","engagement","englebert","enriqueta","ephesis","epilogue","erica one","esteban","estonia","euphoria script","ewert","exo","exo 2","expletus sans","explora","fahkwang","fanwood text","farro","farsan","fascinate","fascinate inline","faster one","fasthand","fauna one","faustina","federant","federo","felipa","fenix","festive","finger paint","fira code","fira mono","fira sans","fira sans condensed","fira sans extra condensed","fjalla one","fjord one","flamenco","flavors","fleur de leah","flow block","flow circular","flow rounded","fondamento","fontdiner swanky","forum","francois one","frank ruhl libre","fraunces","freckle face","fredericka the great","fredoka","fredoka one","freehand","fresca","frijole","fruktur","fugaz one","fuggles","fuzzy bubbles","gfs didot","gfs neohellenic","gabriela","gaegu","gafata","galada","galdeano","galindo","gamja flower","gayathri","gelasio","gemunu libre","genos","gentium basic","gentium book basic","geo","georama","geostar","geostar fill","germania one","gideon roman","gidugu","gilda display","girassol","give you glory","glass antiqua","glegoo","gloria hallelujah","glory","gluten","goblin one","gochi hand","goldman","gorditas","gothic a1","gotu","goudy bookletter 1911","gowun batang","gowun dodum","graduate","grand hotel","grandstander","gravitas one","great vibes","grechen fuemen","grenze","grenze gotisch","grey qo","griffy","gruppo","gudea","gugi","gupter","gurajada","gwendolyn","habibi","hachi maru pop","hahmlet","halant","hammersmith one","hanalei","hanalei fill","handlee","hanuman","happy monkey","harmattan","headland one","heebo","henny penny","hepta slab","herr von muellerhoff","hi melody","hina mincho","hind","hind guntur","hind madurai","hind siliguri","hind vadodara","holtwood one sc","homemade apple","homenaje","hubballi","hurricane","ibm plex mono","ibm plex sans","ibm plex sans arabic","ibm plex sans condensed","ibm plex sans devanagari","ibm plex sans hebrew","ibm plex sans kr","ibm plex sans thai","ibm plex sans thai looped","ibm plex serif","im fell dw pica","im fell dw pica sc","im fell double pica","im fell double pica sc","im fell english","im fell english sc","im fell french canon","im fell french canon sc","im fell great primer","im fell great primer sc","ibarra real nova","iceberg","iceland","imbue","imperial script","imprima","inconsolata","inder","indie flower","inika","inknut antiqua","inria sans","inria serif","inspiration","inter","irish grover","island moments","istok web","italiana","italianno","itim","jacques francois","jacques francois shadow","jaldi","jetbrains mono","jim nightshade","jockey one","jolly lodger","jomhuria","jomolhari","josefin sans","josefin slab","jost","joti one","jua","judson","julee","julius sans one","junge","jura","just another hand","just me again down here","k2d","kadwa","kaisei decol","kaisei harunoumi","kaisei opti","kaisei tokumin","kalam","kameron","kanit","kantumruy","karantina","karla","karma","katibeh","kaushan script","kavivanar","kavoon","kdam thmor","keania one","kelly slab","kenia","khand","khmer","khula","kings","kirang haerang","kite one","kiwi maru","klee one","knewave","koho","kodchasan","koh santepheap","kolker brush","kosugi","kosugi maru","kotta one","koulen","kranky","kreon","kristi","krona one","krub","kufam","kulim park","kumar one","kumar one outline","kumbh sans","kurale","la belle aurore","lacquer","laila","lakki reddy","lalezar","lancelot","langar","lateef","lato","league gothic","league script","league spartan","leckerli one","ledger","lekton","lemon","lemonada","lexend","lexend deca","lexend exa","lexend giga","lexend mega","lexend peta","lexend tera","lexend zetta","libre barcode 128","libre barcode 128 text","libre barcode 39","libre barcode 39 extended","libre barcode 39 extended text","libre barcode 39 text","libre barcode ean13 text","libre baskerville","libre caslon display","libre caslon text","libre franklin","licorice","life savers","lilita one","lily script one","limelight","linden hill","literata","liu jian mao cao","livvic","lobster","lobster two","londrina outline","londrina shadow","londrina sketch","londrina solid","long cang","lora","love light","love ya like a sister","loved by the king","lovers quarrel","luckiest guy","lusitana","lustria","luxurious roman","luxurious script","m plus 1","m plus 1 code","m plus 1p","m plus 2","m plus code latin","m plus rounded 1c","ma shan zheng","macondo","macondo swash caps","mada","magra","maiden orange","maitree","major mono display","mako","mali","mallanna","mandali","manjari","manrope","mansalva","manuale","marcellus","marcellus sc","marck script","margarine","markazi text","marko one","marmelad","martel","martel sans","marvel","mate","mate sc","maven pro","mclaren","mea culpa","meddon","medievalsharp","medula one","meera inimai","megrim","meie script","meow script","merienda","merienda one","merriweather","merriweather sans","metal","metal mania","metamorphous","metrophobic","michroma","milonga","miltonian","miltonian tattoo","mina","miniver","miriam libre","mirza","miss fajardose","mitr","mochiy pop one","mochiy pop p one","modak","modern antiqua","mogra","mohave","molengo","molle","monda","monofett","monoton","monsieur la doulaise","montaga","montagu slab","montecarlo","montez","montserrat","montserrat alternates","montserrat subrayada","moo lah lah","moon dance","moul","moulpali","mountains of christmas","mouse memoirs","mr bedfort","mr dafoe","mr de haviland","mrs saint delafield","mrs sheppards","mukta","mukta mahee","mukta malar","mukta vaani","mulish","murecho","museomoderno","mystery quest","ntr","nanum brush script","nanum gothic","nanum gothic coding","nanum myeongjo","nanum pen script","neonderthaw","nerko one","neucha","neuton","new rocker","new tegomin","news cycle","newsreader","niconne","niramit","nixie one","nobile","nokora","norican","nosifer","notable","nothing you could do","noticia text","noto kufi arabic","noto music","noto naskh arabic","noto nastaliq urdu","noto rashi hebrew","noto sans","noto sans adlam","noto sans adlam unjoined","noto sans anatolian hieroglyphs","noto sans arabic","noto sans armenian","noto sans avestan","noto sans balinese","noto sans bamum","noto sans bassa vah","noto sans batak","noto sans bengali","noto sans bhaiksuki","noto sans brahmi","noto sans buginese","noto sans buhid","noto sans canadian aboriginal","noto sans carian","noto sans caucasian albanian","noto sans chakma","noto sans cham","noto sans cherokee","noto sans coptic","noto sans cuneiform","noto sans cypriot","noto sans deseret","noto sans devanagari","noto sans display","noto sans duployan","noto sans egyptian hieroglyphs","noto sans elbasan","noto sans elymaic","noto sans georgian","noto sans glagolitic","noto sans gothic","noto sans grantha","noto sans gujarati","noto sans gunjala gondi","noto sans gurmukhi","noto sans hk","noto sans hanifi rohingya","noto sans hanunoo","noto sans hatran","noto sans hebrew","noto sans imperial aramaic","noto sans indic siyaq numbers","noto sans inscriptional pahlavi","noto sans inscriptional parthian","noto sans jp","noto sans javanese","noto sans kr","noto sans kaithi","noto sans kannada","noto sans kayah li","noto sans kharoshthi","noto sans khmer","noto sans khojki","noto sans khudawadi","noto sans lao","noto sans lepcha","noto sans limbu","noto sans linear a","noto sans linear b","noto sans lisu","noto sans lycian","noto sans lydian","noto sans mahajani","noto sans malayalam","noto sans mandaic","noto sans manichaean","noto sans marchen","noto sans masaram gondi","noto sans math","noto sans mayan numerals","noto sans medefaidrin","noto sans meetei mayek","noto sans meroitic","noto sans miao","noto sans modi","noto sans mongolian","noto sans mono","noto sans mro","noto sans multani","noto sans myanmar","noto sans n ko","noto sans nabataean","noto sans new tai lue","noto sans newa","noto sans nushu","noto sans ogham","noto sans ol chiki","noto sans old hungarian","noto sans old italic","noto sans old north arabian","noto sans old permic","noto sans old persian","noto sans old sogdian","noto sans old south arabian","noto sans old turkic","noto sans oriya","noto sans osage","noto sans osmanya","noto sans pahawh hmong","noto sans palmyrene","noto sans pau cin hau","noto sans phags pa","noto sans phoenician","noto sans psalter pahlavi","noto sans rejang","noto sans runic","noto sans sc","noto sans samaritan","noto sans saurashtra","noto sans sharada","noto sans shavian","noto sans siddham","noto sans sinhala","noto sans sogdian","noto sans sora sompeng","noto sans soyombo","noto sans sundanese","noto sans syloti nagri","noto sans symbols","noto sans symbols 2","noto sans syriac","noto sans tc","noto sans tagalog","noto sans tagbanwa","noto sans tai le","noto sans tai tham","noto sans tai viet","noto sans takri","noto sans tamil","noto sans tamil supplement","noto sans telugu","noto sans thaana","noto sans thai","noto sans thai looped","noto sans tifinagh","noto sans tirhuta","noto sans ugaritic","noto sans vai","noto sans wancho","noto sans warang citi","noto sans yi","noto sans zanabazar square","noto serif","noto serif ahom","noto serif armenian","noto serif balinese","noto serif bengali","noto serif devanagari","noto serif display","noto serif dogra","noto serif ethiopic","noto serif georgian","noto serif grantha","noto serif gujarati","noto serif gurmukhi","noto serif hebrew","noto serif jp","noto serif kr","noto serif kannada","noto serif khmer","noto serif lao","noto serif malayalam","noto serif myanmar","noto serif nyiakeng puachue hmong","noto serif sc","noto serif sinhala","noto serif tc","noto serif tamil","noto serif tangut","noto serif telugu","noto serif thai","noto serif tibetan","noto serif yezidi","noto traditional nushu","nova cut","nova flat","nova mono","nova oval","nova round","nova script","nova slim","nova square","numans","nunito","nunito sans","odibee sans","odor mean chey","offside","oi","old standard tt","oldenburg","ole","oleo script","oleo script swash caps","oooh baby","open sans","oranienbaum","orbitron","oregano","orelega one","orienta","original surfer","oswald","otomanopee one","outfit","over the rainbow","overlock","overlock sc","overpass","overpass mono","ovo","oxanium","oxygen","oxygen mono","pt mono","pt sans","pt sans caption","pt sans narrow","pt serif","pt serif caption","pacifico","padauk","palanquin","palanquin dark","palette mosaic","pangolin","paprika","parisienne","passero one","passion one","passions conflict","pathway gothic one","patrick hand","patrick hand sc","pattaya","patua one","pavanam","paytone one","peddana","peralta","permanent marker","petemoss","petit formal script","petrona","philosopher","piazzolla","piedra","pinyon script","pirata one","plaster","play","playball","playfair display","playfair display sc","podkova","poiret one","poller one","poly","pompiere","pontano sans","poor story","poppins","port lligat sans","port lligat slab","potta one","pragati narrow","praise","prata","preahvihear","press start 2p","pridi","princess sofia","prociono","prompt","prosto one","proza libre","public sans","puppies play","puritan","purple purse","qahiri","quando","quantico","quattrocento","quattrocento sans","questrial","quicksand","quintessential","qwigley","qwitcher grypen","racing sans one","radley","rajdhani","rakkas","raleway","raleway dots","ramabhadra","ramaraja","rambla","rammetto one","rampart one","ranchers","rancho","ranga","rasa","rationale","ravi prakash","readex pro","recursive","red hat display","red hat mono","red hat text","red rose","redacted","redacted script","redressed","reem kufi","reenie beanie","reggae one","revalia","rhodium libre","ribeye","ribeye marrow","righteous","risque","road rage","roboto","roboto condensed","roboto mono","roboto serif","roboto slab","rochester","rock 3d","rock salt","rocknroll one","rokkitt","romanesco","ropa sans","rosario","rosarivo","rouge script","rowdies","rozha one","rubik","rubik beastly","rubik mono one","ruda","rufina","ruge boogie","ruluko","rum raisin","ruslan display","russo one","ruthie","rye","stix two text","sacramento","sahitya","sail","saira","saira condensed","saira extra condensed","saira semi condensed","saira stencil one","salsa","sanchez","sancreek","sansita","sansita swashed","sarabun","sarala","sarina","sarpanch","sassy frass","satisfy","sawarabi gothic","sawarabi mincho","scada","scheherazade new","schoolbell","scope one","seaweed script","secular one","sedgwick ave","sedgwick ave display","sen","sevillana","seymour one","shadows into light","shadows into light two","shalimar","shanti","share","share tech","share tech mono","shippori antique","shippori antique b1","shippori mincho","shippori mincho b1","shizuru","shojumaru","short stack","shrikhand","siemreap","sigmar one","signika","signika negative","simonetta","single day","sintony","sirin stencil","six caps","skranji","slabo 13px","slabo 27px","slackey","smokum","smooch","smooch sans","smythe","sniglet","snippet","snowburst one","sofadi one","sofia","solway","song myung","sonsie one","sora","sorts mill goudy","source code pro","source sans 3","source sans pro","source serif 4","source serif pro","space grotesk","space mono","spartan","special elite","spectral","spectral sc","spicy rice","spinnaker","spirax","spline sans","squada one","sree krushnadevaraya","sriracha","srisakdi","staatliches","stalemate","stalinist one","stardos stencil","stick","stick no bills","stint ultra condensed","stint ultra expanded","stoke","strait","style script","stylish","sue ellen francisco","suez one","sulphur point","sumana","sunflower","sunshiney","supermercado one","sura","suranna","suravaram","suwannaphum","swanky and moo moo","syncopate","syne","syne mono","syne tactile","tajawal","tangerine","taprom","tauri","taviraj","teko","telex","tenali ramakrishna","tenor sans","text me one","texturina","thasadith","the girl next door","the nautigal","tienne","tillana","timmana","tinos","titan one","titillium web","tomorrow","tourney","trade winds","train one","trirong","trispace","trocchi","trochut","truculenta","trykker","tulpen one","turret road","twinkle star","ubuntu","ubuntu condensed","ubuntu mono","uchen","ultra","uncial antiqua","underdog","unica one","unifrakturcook","unifrakturmaguntia","unkempt","unlock","unna","urbanist","vt323","vampiro one","varela","varela round","varta","vast shadow","vesper libre","viaoda libre","vibes","vibur","vidaloka","viga","voces","volkhov","vollkorn","vollkorn sc","voltaire","vujahday script","waiting for the sunrise","wallpoet","walter turncoat","warnes","waterfall","wellfleet","wendy one","windsong","wire one","work sans","xanh mono","yaldevi","yanone kaffeesatz","yantramanav","yatra one","yellowtail","yeon sung","yeseva one","yesteryear","yomogi","yrsa","yuji boku","yuji hentaigana akari","yuji hentaigana akebono","yuji mai","yuji syuku","yusei magic","zcool kuaile","zcool qingke huangyou","zcool xiaowei","zen antique","zen antique soft","zen dots","zen kaku gothic antique","zen kaku gothic new","zen kurenaido","zen loop","zen maru gothic","zen old mincho","zen tokyo zoo","zeyada","zhi mang xing","zilla slab","zilla slab highlight"]
1
+ ["abeezee","abel","abhaya libre","abril fatface","aclonica","acme","actor","adamina","advent pro","aguafina script","akaya kanadaka","akaya telivigala","akronim","akshar","aladin","alata","alatsi","aldrich","alef","alegreya","alegreya sc","alegreya sans","alegreya sans sc","aleo","alex brush","alfa slab one","alice","alike","alike angular","allan","allerta","allerta stencil","allison","allura","almarai","almendra","almendra display","almendra sc","alumni sans","alumni sans inline one","amarante","amaranth","amatic sc","amethysta","amiko","amiri","amita","anaheim","andada pro","andika","andika new basic","anek bangla","anek devanagari","anek gujarati","anek gurmukhi","anek kannada","anek latin","anek malayalam","anek odia","anek tamil","anek telugu","angkor","annie use your telescope","anonymous pro","antic","antic didone","antic slab","anton","antonio","anybody","arapey","arbutus","arbutus slab","architects daughter","archivo","archivo black","archivo narrow","are you serious","aref ruqaa","arima madurai","arimo","arizonia","armata","arsenal","artifika","arvo","arya","asap","asap condensed","asar","asset","assistant","astloch","asul","athiti","atkinson hyperlegible","atma","atomic age","aubrey","audiowide","autour one","average","average sans","averia gruesa libre","averia libre","averia sans libre","averia serif libre","azeret mono","b612","b612 mono","biz udgothic","biz udmincho","biz udpgothic","biz udpmincho","babylonica","bad script","bahiana","bahianita","bai jamjuree","bakbak one","ballet","baloo 2","baloo bhai 2","baloo bhaijaan 2","baloo bhaina 2","baloo chettan 2","baloo da 2","baloo paaji 2","baloo tamma 2","baloo tammudu 2","baloo thambi 2","balsamiq sans","balthazar","bangers","barlow","barlow condensed","barlow semi condensed","barriecito","barrio","basic","baskervville","battambang","baumans","bayon","be vietnam pro","beau rivage","bebas neue","belgrano","bellefair","belleza","bellota","bellota text","benchnine","benne","bentham","berkshire swash","besley","beth ellen","bevan","bhutuka expanded one","big shoulders display","big shoulders inline display","big shoulders inline text","big shoulders stencil display","big shoulders stencil text","big shoulders text","bigelow rules","bigshot one","bilbo","bilbo swash caps","biorhyme","biorhyme expanded","birthstone","birthstone bounce","biryani","bitter","black and white picture","black han sans","black ops one","blaka","blaka hollow","blinker","bodoni moda","bokor","bona nova","bonbon","bonheur royale","boogaloo","bowlby one","bowlby one sc","brawler","bree serif","brygada 1918","bubblegum sans","bubbler one","buda","buenard","bungee","bungee hairline","bungee inline","bungee outline","bungee shade","butcherman","butterfly kids","cabin","cabin condensed","cabin sketch","caesar dressing","cagliostro","cairo","caladea","calistoga","calligraffitti","cambay","cambo","candal","cantarell","cantata one","cantora one","capriola","caramel","carattere","cardo","carme","carrois gothic","carrois gothic sc","carter one","castoro","catamaran","caudex","caveat","caveat brush","cedarville cursive","ceviche one","chakra petch","changa","changa one","chango","charis sil","charm","charmonman","chathura","chau philomene one","chela one","chelsea market","chenla","cherish","cherry cream soda","cherry swash","chewy","chicle","chilanka","chivo","chonburi","cinzel","cinzel decorative","clicker script","coda","coda caption","codystar","coiny","combo","comfortaa","comforter","comforter brush","comic neue","coming soon","commissioner","concert one","condiment","content","contrail one","convergence","cookie","copse","corben","corinthia","cormorant","cormorant garamond","cormorant infant","cormorant sc","cormorant unicase","cormorant upright","courgette","courier prime","cousine","coustard","covered by your grace","crafty girls","creepster","crete round","crimson pro","crimson text","croissant one","crushed","cuprum","cute font","cutive","cutive mono","dm mono","dm sans","dm serif display","dm serif text","damion","dancing script","dangrek","darker grotesque","david libre","dawning of a new day","days one","dekko","dela gothic one","delius","delius swash caps","delius unicase","della respira","denk one","devonshire","dhurjati","didact gothic","diplomata","diplomata sc","do hyeon","dokdo","domine","donegal one","dongle","doppio one","dorsa","dosis","dotgothic16","dr sugiyama","duru sans","dynalight","eb garamond","eagle lake","east sea dokdo","eater","economica","eczar","el messiri","electrolize","elsie","elsie swash caps","emblema one","emilys candy","encode sans","encode sans condensed","encode sans expanded","encode sans sc","encode sans semi condensed","encode sans semi expanded","engagement","englebert","enriqueta","ephesis","epilogue","erica one","esteban","estonia","euphoria script","ewert","exo","exo 2","expletus sans","explora","fahkwang","familjen grotesk","fanwood text","farro","farsan","fascinate","fascinate inline","faster one","fasthand","fauna one","faustina","federant","federo","felipa","fenix","festive","finger paint","fira code","fira mono","fira sans","fira sans condensed","fira sans extra condensed","fjalla one","fjord one","flamenco","flavors","fleur de leah","flow block","flow circular","flow rounded","fondamento","fontdiner swanky","forum","francois one","frank ruhl libre","fraunces","freckle face","fredericka the great","fredoka","fredoka one","freehand","fresca","frijole","fruktur","fugaz one","fuggles","fuzzy bubbles","gfs didot","gfs neohellenic","gabriela","gaegu","gafata","galada","galdeano","galindo","gamja flower","gayathri","gelasio","gemunu libre","genos","gentium basic","gentium book basic","gentium plus","geo","georama","geostar","geostar fill","germania one","gideon roman","gidugu","gilda display","girassol","give you glory","glass antiqua","glegoo","gloria hallelujah","glory","gluten","goblin one","gochi hand","goldman","gorditas","gothic a1","gotu","goudy bookletter 1911","gowun batang","gowun dodum","graduate","grand hotel","grandstander","grape nuts","gravitas one","great vibes","grechen fuemen","grenze","grenze gotisch","grey qo","griffy","gruppo","gudea","gugi","gupter","gurajada","gwendolyn","habibi","hachi maru pop","hahmlet","halant","hammersmith one","hanalei","hanalei fill","handlee","hanuman","happy monkey","harmattan","headland one","heebo","henny penny","hepta slab","herr von muellerhoff","hi melody","hina mincho","hind","hind guntur","hind madurai","hind siliguri","hind vadodara","holtwood one sc","homemade apple","homenaje","hubballi","hurricane","ibm plex mono","ibm plex sans","ibm plex sans arabic","ibm plex sans condensed","ibm plex sans devanagari","ibm plex sans hebrew","ibm plex sans kr","ibm plex sans thai","ibm plex sans thai looped","ibm plex serif","im fell dw pica","im fell dw pica sc","im fell double pica","im fell double pica sc","im fell english","im fell english sc","im fell french canon","im fell french canon sc","im fell great primer","im fell great primer sc","ibarra real nova","iceberg","iceland","imbue","imperial script","imprima","inconsolata","inder","indie flower","ingrid darling","inika","inknut antiqua","inria sans","inria serif","inspiration","inter","irish grover","island moments","istok web","italiana","italianno","itim","jacques francois","jacques francois shadow","jaldi","jetbrains mono","jim nightshade","joan","jockey one","jolly lodger","jomhuria","jomolhari","josefin sans","josefin slab","jost","joti one","jua","judson","julee","julius sans one","junge","jura","just another hand","just me again down here","k2d","kadwa","kaisei decol","kaisei harunoumi","kaisei opti","kaisei tokumin","kalam","kameron","kanit","kantumruy","karantina","karla","karma","katibeh","kaushan script","kavivanar","kavoon","kdam thmor","kdam thmor pro","keania one","kelly slab","kenia","khand","khmer","khula","kings","kirang haerang","kite one","kiwi maru","klee one","knewave","koho","kodchasan","koh santepheap","kolker brush","kosugi","kosugi maru","kotta one","koulen","kranky","kreon","kristi","krona one","krub","kufam","kulim park","kumar one","kumar one outline","kumbh sans","kurale","la belle aurore","lacquer","laila","lakki reddy","lalezar","lancelot","langar","lateef","lato","lavishly yours","league gothic","league script","league spartan","leckerli one","ledger","lekton","lemon","lemonada","lexend","lexend deca","lexend exa","lexend giga","lexend mega","lexend peta","lexend tera","lexend zetta","libre barcode 128","libre barcode 128 text","libre barcode 39","libre barcode 39 extended","libre barcode 39 extended text","libre barcode 39 text","libre barcode ean13 text","libre baskerville","libre bodoni","libre caslon display","libre caslon text","libre franklin","licorice","life savers","lilita one","lily script one","limelight","linden hill","literata","liu jian mao cao","livvic","lobster","lobster two","londrina outline","londrina shadow","londrina sketch","londrina solid","long cang","lora","love light","love ya like a sister","loved by the king","lovers quarrel","luckiest guy","lusitana","lustria","luxurious roman","luxurious script","m plus 1","m plus 1 code","m plus 1p","m plus 2","m plus code latin","m plus rounded 1c","ma shan zheng","macondo","macondo swash caps","mada","magra","maiden orange","maitree","major mono display","mako","mali","mallanna","mandali","manjari","manrope","mansalva","manuale","marcellus","marcellus sc","marck script","margarine","markazi text","marko one","marmelad","martel","martel sans","marvel","mate","mate sc","maven pro","mclaren","mea culpa","meddon","medievalsharp","medula one","meera inimai","megrim","meie script","meow script","merienda","merienda one","merriweather","merriweather sans","metal","metal mania","metamorphous","metrophobic","michroma","milonga","miltonian","miltonian tattoo","mina","miniver","miriam libre","mirza","miss fajardose","mitr","mochiy pop one","mochiy pop p one","modak","modern antiqua","mogra","mohave","molengo","molle","monda","monofett","monoton","monsieur la doulaise","montaga","montagu slab","montecarlo","montez","montserrat","montserrat alternates","montserrat subrayada","moo lah lah","moon dance","moul","moulpali","mountains of christmas","mouse memoirs","mr bedfort","mr dafoe","mr de haviland","mrs saint delafield","mrs sheppards","ms madi","mukta","mukta mahee","mukta malar","mukta vaani","mulish","murecho","museomoderno","my soul","mystery quest","ntr","nanum brush script","nanum gothic","nanum gothic coding","nanum myeongjo","nanum pen script","neonderthaw","nerko one","neucha","neuton","new rocker","new tegomin","news cycle","newsreader","niconne","niramit","nixie one","nobile","nokora","norican","nosifer","notable","nothing you could do","noticia text","noto emoji","noto kufi arabic","noto music","noto naskh arabic","noto nastaliq urdu","noto rashi hebrew","noto sans","noto sans adlam","noto sans adlam unjoined","noto sans anatolian hieroglyphs","noto sans arabic","noto sans armenian","noto sans avestan","noto sans balinese","noto sans bamum","noto sans bassa vah","noto sans batak","noto sans bengali","noto sans bhaiksuki","noto sans brahmi","noto sans buginese","noto sans buhid","noto sans canadian aboriginal","noto sans carian","noto sans caucasian albanian","noto sans chakma","noto sans cham","noto sans cherokee","noto sans coptic","noto sans cuneiform","noto sans cypriot","noto sans deseret","noto sans devanagari","noto sans display","noto sans duployan","noto sans egyptian hieroglyphs","noto sans elbasan","noto sans elymaic","noto sans georgian","noto sans glagolitic","noto sans gothic","noto sans grantha","noto sans gujarati","noto sans gunjala gondi","noto sans gurmukhi","noto sans hk","noto sans hanifi rohingya","noto sans hanunoo","noto sans hatran","noto sans hebrew","noto sans imperial aramaic","noto sans indic siyaq numbers","noto sans inscriptional pahlavi","noto sans inscriptional parthian","noto sans jp","noto sans javanese","noto sans kr","noto sans kaithi","noto sans kannada","noto sans kayah li","noto sans kharoshthi","noto sans khmer","noto sans khojki","noto sans khudawadi","noto sans lao","noto sans lepcha","noto sans limbu","noto sans linear a","noto sans linear b","noto sans lisu","noto sans lycian","noto sans lydian","noto sans mahajani","noto sans malayalam","noto sans mandaic","noto sans manichaean","noto sans marchen","noto sans masaram gondi","noto sans math","noto sans mayan numerals","noto sans medefaidrin","noto sans meetei mayek","noto sans meroitic","noto sans miao","noto sans modi","noto sans mongolian","noto sans mono","noto sans mro","noto sans multani","noto sans myanmar","noto sans n ko","noto sans nabataean","noto sans new tai lue","noto sans newa","noto sans nushu","noto sans ogham","noto sans ol chiki","noto sans old hungarian","noto sans old italic","noto sans old north arabian","noto sans old permic","noto sans old persian","noto sans old sogdian","noto sans old south arabian","noto sans old turkic","noto sans oriya","noto sans osage","noto sans osmanya","noto sans pahawh hmong","noto sans palmyrene","noto sans pau cin hau","noto sans phags pa","noto sans phoenician","noto sans psalter pahlavi","noto sans rejang","noto sans runic","noto sans sc","noto sans samaritan","noto sans saurashtra","noto sans sharada","noto sans shavian","noto sans siddham","noto sans sinhala","noto sans sogdian","noto sans sora sompeng","noto sans soyombo","noto sans sundanese","noto sans syloti nagri","noto sans symbols","noto sans symbols 2","noto sans syriac","noto sans tc","noto sans tagalog","noto sans tagbanwa","noto sans tai le","noto sans tai tham","noto sans tai viet","noto sans takri","noto sans tamil","noto sans tamil supplement","noto sans telugu","noto sans thaana","noto sans thai","noto sans thai looped","noto sans tifinagh","noto sans tirhuta","noto sans ugaritic","noto sans vai","noto sans wancho","noto sans warang citi","noto sans yi","noto sans zanabazar square","noto serif","noto serif ahom","noto serif armenian","noto serif balinese","noto serif bengali","noto serif devanagari","noto serif display","noto serif dogra","noto serif ethiopic","noto serif georgian","noto serif grantha","noto serif gujarati","noto serif gurmukhi","noto serif hebrew","noto serif jp","noto serif kr","noto serif kannada","noto serif khmer","noto serif lao","noto serif malayalam","noto serif myanmar","noto serif nyiakeng puachue hmong","noto serif sc","noto serif sinhala","noto serif tc","noto serif tamil","noto serif tangut","noto serif telugu","noto serif thai","noto serif tibetan","noto serif yezidi","noto traditional nushu","nova cut","nova flat","nova mono","nova oval","nova round","nova script","nova slim","nova square","numans","nunito","nunito sans","nuosu sil","odibee sans","odor mean chey","offside","oi","old standard tt","oldenburg","ole","oleo script","oleo script swash caps","oooh baby","open sans","oranienbaum","orbitron","oregano","orelega one","orienta","original surfer","oswald","otomanopee one","outfit","over the rainbow","overlock","overlock sc","overpass","overpass mono","ovo","oxanium","oxygen","oxygen mono","pt mono","pt sans","pt sans caption","pt sans narrow","pt serif","pt serif caption","pacifico","padauk","palanquin","palanquin dark","palette mosaic","pangolin","paprika","parisienne","passero one","passion one","passions conflict","pathway gothic one","patrick hand","patrick hand sc","pattaya","patua one","pavanam","paytone one","peddana","peralta","permanent marker","petemoss","petit formal script","petrona","philosopher","piazzolla","piedra","pinyon script","pirata one","plaster","play","playball","playfair display","playfair display sc","plus jakarta sans","podkova","poiret one","poller one","poly","pompiere","pontano sans","poor story","poppins","port lligat sans","port lligat slab","potta one","pragati narrow","praise","prata","preahvihear","press start 2p","pridi","princess sofia","prociono","prompt","prosto one","proza libre","public sans","puppies play","puritan","purple purse","qahiri","quando","quantico","quattrocento","quattrocento sans","questrial","quicksand","quintessential","qwigley","qwitcher grypen","racing sans one","radio canada","radley","rajdhani","rakkas","raleway","raleway dots","ramabhadra","ramaraja","rambla","rammetto one","rampart one","ranchers","rancho","ranga","rasa","rationale","ravi prakash","readex pro","recursive","red hat display","red hat mono","red hat text","red rose","redacted","redacted script","redressed","reem kufi","reenie beanie","reggae one","revalia","rhodium libre","ribeye","ribeye marrow","righteous","risque","road rage","roboto","roboto condensed","roboto flex","roboto mono","roboto serif","roboto slab","rochester","rock 3d","rock salt","rocknroll one","rokkitt","romanesco","ropa sans","rosario","rosarivo","rouge script","rowdies","rozha one","rubik","rubik beastly","rubik bubbles","rubik glitch","rubik microbe","rubik mono one","rubik moonrocks","rubik puddles","rubik wet paint","ruda","rufina","ruge boogie","ruluko","rum raisin","ruslan display","russo one","ruthie","rye","stix two text","sacramento","sahitya","sail","saira","saira condensed","saira extra condensed","saira semi condensed","saira stencil one","salsa","sanchez","sancreek","sansita","sansita swashed","sarabun","sarala","sarina","sarpanch","sassy frass","satisfy","sawarabi gothic","sawarabi mincho","scada","scheherazade new","schoolbell","scope one","seaweed script","secular one","sedgwick ave","sedgwick ave display","sen","send flowers","sevillana","seymour one","shadows into light","shadows into light two","shalimar","shanti","share","share tech","share tech mono","shippori antique","shippori antique b1","shippori mincho","shippori mincho b1","shizuru","shojumaru","short stack","shrikhand","siemreap","sigmar one","signika","signika negative","simonetta","single day","sintony","sirin stencil","six caps","skranji","slabo 13px","slabo 27px","slackey","smokum","smooch","smooch sans","smythe","sniglet","snippet","snowburst one","sofadi one","sofia","solway","song myung","sonsie one","sora","sorts mill goudy","source code pro","source sans 3","source sans pro","source serif 4","source serif pro","space grotesk","space mono","special elite","spectral","spectral sc","spicy rice","spinnaker","spirax","spline sans","spline sans mono","squada one","square peg","sree krushnadevaraya","sriracha","srisakdi","staatliches","stalemate","stalinist one","stardos stencil","stick","stick no bills","stint ultra condensed","stint ultra expanded","stoke","strait","style script","stylish","sue ellen francisco","suez one","sulphur point","sumana","sunflower","sunshiney","supermercado one","sura","suranna","suravaram","suwannaphum","swanky and moo moo","syncopate","syne","syne mono","syne tactile","tai heritage pro","tajawal","tangerine","tapestry","taprom","tauri","taviraj","teko","telex","tenali ramakrishna","tenor sans","text me one","texturina","thasadith","the girl next door","the nautigal","tienne","tillana","timmana","tinos","tiro bangla","tiro devanagari hindi","tiro devanagari marathi","tiro devanagari sanskrit","tiro gurmukhi","tiro kannada","tiro tamil","tiro telugu","titan one","titillium web","tomorrow","tourney","trade winds","train one","trirong","trispace","trocchi","trochut","truculenta","trykker","tulpen one","turret road","twinkle star","ubuntu","ubuntu condensed","ubuntu mono","uchen","ultra","uncial antiqua","underdog","unica one","unifrakturcook","unifrakturmaguntia","unkempt","unlock","unna","updock","urbanist","vt323","vampiro one","varela","varela round","varta","vast shadow","vazirmatn","vesper libre","viaoda libre","vibes","vibur","vidaloka","viga","voces","volkhov","vollkorn","vollkorn sc","voltaire","vujahday script","waiting for the sunrise","wallpoet","walter turncoat","warnes","water brush","waterfall","wellfleet","wendy one","whisper","windsong","wire one","work sans","xanh mono","yaldevi","yanone kaffeesatz","yantramanav","yatra one","yellowtail","yeon sung","yeseva one","yesteryear","yomogi","yrsa","yuji boku","yuji hentaigana akari","yuji hentaigana akebono","yuji mai","yuji syuku","yusei magic","zcool kuaile","zcool qingke huangyou","zcool xiaowei","zen antique","zen antique soft","zen dots","zen kaku gothic antique","zen kaku gothic new","zen kurenaido","zen loop","zen maru gothic","zen old mincho","zen tokyo zoo","zeyada","zhi mang xing","zilla slab","zilla slab highlight"]
includes/{class-updraft-resmushit-task.php → class-re-smush-it-task.php} RENAMED
@@ -5,8 +5,6 @@
5
 
6
  if (!defined('ABSPATH')) die('Access denied.');
7
 
8
- if (!class_exists('Updraft_Smush_Task')) require_once('class-updraft-smush-task.php');
9
-
10
  if (!class_exists('Re_Smush_It_Task')) :
11
 
12
  class Re_Smush_It_Task extends Updraft_Smush_Task {
5
 
6
  if (!defined('ABSPATH')) die('Access denied.');
7
 
 
 
8
  if (!class_exists('Re_Smush_It_Task')) :
9
 
10
  class Re_Smush_It_Task extends Updraft_Smush_Task {
includes/class-updraft-php-logger.php CHANGED
@@ -3,7 +3,6 @@
3
  if (!defined('ABSPATH')) die('No direct access allowed');
4
 
5
  if (class_exists('Updraft_PHP_Logger')) return;
6
- if (!class_exists('Updraft_Abstract_Logger')) require_once('class-updraft-abstract-logger.php');
7
 
8
  /**
9
  * Class Updraft_PHP_Logger
3
  if (!defined('ABSPATH')) die('No direct access allowed');
4
 
5
  if (class_exists('Updraft_PHP_Logger')) return;
 
6
 
7
  /**
8
  * Class Updraft_PHP_Logger
includes/class-updraft-smush-manager-commands.php CHANGED
@@ -41,6 +41,7 @@ class Updraft_Smush_Manager_Commands extends Updraft_Task_Manager_Commands_1_0 {
41
  'mark_as_compressed',
42
  'mark_all_as_uncompressed',
43
  'clean_all_backup_images',
 
44
  );
45
 
46
  return array_merge($commands, $smush_commands);
@@ -211,6 +212,9 @@ class Updraft_Smush_Manager_Commands extends Updraft_Task_Manager_Commands_1_0 {
211
  $options['image_quality'] = filter_var($data['image_quality'], FILTER_SANITIZE_NUMBER_INT);
212
  $options['show_smush_metabox'] = filter_var($data['show_smush_metabox'], FILTER_VALIDATE_BOOLEAN) ? 'show' : 'hide';
213
  $options['webp_conversion'] = filter_var($data['webp_conversion'], FILTER_VALIDATE_BOOLEAN) ? true : false;
 
 
 
214
 
215
  $success = $this->task_manager->update_smush_options($options);
216
 
@@ -218,6 +222,8 @@ class Updraft_Smush_Manager_Commands extends Updraft_Task_Manager_Commands_1_0 {
218
  return new WP_Error('update_failed', __('Options could not be updated', 'wp-optimize'));
219
  }
220
 
 
 
221
  $response = array();
222
  $response['status'] = true;
223
  $response['saved'] = $success;
@@ -474,6 +480,18 @@ class Updraft_Smush_Manager_Commands extends Updraft_Task_Manager_Commands_1_0 {
474
 
475
  if (function_exists('fastcgi_finish_request')) fastcgi_finish_request();
476
  }
 
 
 
 
 
 
 
 
 
 
 
 
477
  }
478
 
479
  endif;
41
  'mark_as_compressed',
42
  'mark_all_as_uncompressed',
43
  'clean_all_backup_images',
44
+ 'reset_webp_serving_method',
45
  );
46
 
47
  return array_merge($commands, $smush_commands);
212
  $options['image_quality'] = filter_var($data['image_quality'], FILTER_SANITIZE_NUMBER_INT);
213
  $options['show_smush_metabox'] = filter_var($data['show_smush_metabox'], FILTER_VALIDATE_BOOLEAN) ? 'show' : 'hide';
214
  $options['webp_conversion'] = filter_var($data['webp_conversion'], FILTER_VALIDATE_BOOLEAN) ? true : false;
215
+ $is_webp_conversion_enabled = $options['webp_conversion'] ? 'true' : 'false';
216
+ WP_Optimize()->log("WebP conversion is enabled? $is_webp_conversion_enabled");
217
+ $options['webp_converters'] = false;
218
 
219
  $success = $this->task_manager->update_smush_options($options);
220
 
222
  return new WP_Error('update_failed', __('Options could not be updated', 'wp-optimize'));
223
  }
224
 
225
+ do_action('wpo_save_images_settings');
226
+
227
  $response = array();
228
  $response['status'] = true;
229
  $response['saved'] = $success;
480
 
481
  if (function_exists('fastcgi_finish_request')) fastcgi_finish_request();
482
  }
483
+
484
+ /**
485
+ * Resets webp serving method
486
+ *
487
+ * @return array
488
+ */
489
+ public function reset_webp_serving_method() {
490
+ $success = $this->task_manager->reset_webp_serving_method();
491
+ return array(
492
+ 'success' => $success,
493
+ );
494
+ }
495
  }
496
 
497
  endif;
includes/class-updraft-smush-manager.php CHANGED
@@ -47,13 +47,6 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_3 {
47
  public function __construct() {
48
  parent::__construct();
49
 
50
- if (!class_exists('Updraft_Smush_Manager_Commands')) include_once('class-updraft-smush-manager-commands.php');
51
- if (!class_exists('Updraft_Smush_Task')) include_once('class-updraft-smush-task.php');
52
- if (!class_exists('Re_Smush_It_Task')) include_once('class-updraft-resmushit-task.php');
53
- if (!class_exists('Updraft_Logger_Interface')) include_once('class-updraft-logger-interface.php');
54
- if (!class_exists('Updraft_Abstract_Logger')) include_once('class-updraft-abstract-logger.php');
55
- if (!class_exists('Updraft_File_Logger')) include_once('class-updraft-file-logger.php');
56
- if (!class_exists('WP_Optimize_Transients_Cache')) include_once('class-wp-optimize-transients-cache.php');
57
 
58
  $this->commands = new Updraft_Smush_Manager_Commands($this);
59
  $this->options = WP_Optimize()->get_options();
@@ -558,11 +551,7 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_3 {
558
  public function is_queue_processed() {
559
 
560
  $active = $this->get_pending_tasks();
561
- if ($active && 0 != count($active))
562
- return false;
563
-
564
- if (false !== get_option('updraft_semaphore_smush'))
565
- return false;
566
 
567
  return true;
568
  }
@@ -1118,6 +1107,7 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_3 {
1118
  'autosmush' => false,
1119
  'back_up_delete_after' => $this->options->get_option('back_up_delete_after', true),
1120
  'back_up_delete_after_days' => $this->options->get_option('back_up_delete_after_days', 50),
 
1121
  );
1122
 
1123
  $this->update_smush_options($options);
@@ -1555,6 +1545,15 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_3 {
1555
  }
1556
  }
1557
 
 
 
 
 
 
 
 
 
 
1558
  /**
1559
  * Instance of WP_Optimize_Page_Cache_Preloader.
1560
  *
47
  public function __construct() {
48
  parent::__construct();
49
 
 
 
 
 
 
 
 
50
 
51
  $this->commands = new Updraft_Smush_Manager_Commands($this);
52
  $this->options = WP_Optimize()->get_options();
551
  public function is_queue_processed() {
552
 
553
  $active = $this->get_pending_tasks();
554
+ if ($active && 0 != count($active)) return false;
 
 
 
 
555
 
556
  return true;
557
  }
1107
  'autosmush' => false,
1108
  'back_up_delete_after' => $this->options->get_option('back_up_delete_after', true),
1109
  'back_up_delete_after_days' => $this->options->get_option('back_up_delete_after_days', 50),
1110
+ 'webp_conversion' => false,
1111
  );
1112
 
1113
  $this->update_smush_options($options);
1545
  }
1546
  }
1547
 
1548
+ /**
1549
+ * Resets webp serving method by setting rewrite capability status to false
1550
+ *
1551
+ * @return bool
1552
+ */
1553
+ public function reset_webp_serving_method() {
1554
+ return $this->options->update_option('rewrite_status', false);
1555
+ }
1556
+
1557
  /**
1558
  * Instance of WP_Optimize_Page_Cache_Preloader.
1559
  *
includes/class-updraft-smush-task.php CHANGED
@@ -91,9 +91,7 @@ abstract class Updraft_Smush_Task extends Updraft_Task_1_2 {
91
 
92
  $this->log($this->get_description());
93
 
94
- if (defined('WPO_USE_WEBP_CONVERSION') && true === WPO_USE_WEBP_CONVERSION) {
95
- $this->maybe_do_webp_conversion($file_path);
96
- }
97
 
98
  /**
99
  * Filters the options for a single image to compress.
@@ -139,7 +137,6 @@ abstract class Updraft_Smush_Task extends Updraft_Task_1_2 {
139
  public function maybe_do_webp_conversion($source) {
140
  $webp_conversion = WP_Optimize()->get_options()->get_option('webp_conversion', false);
141
  if (!empty($webp_conversion)) {
142
- if (!class_exists('WPO_WebP_Convert')) include_once(WPO_PLUGIN_MAIN_PATH . 'webp/class-wpo-webp-convert.php');
143
  $webp_converter = new WPO_WebP_Convert();
144
  $webp_converter->convert($source);
145
  } else {
91
 
92
  $this->log($this->get_description());
93
 
94
+ $this->maybe_do_webp_conversion($file_path);
 
 
95
 
96
  /**
97
  * Filters the options for a single image to compress.
137
  public function maybe_do_webp_conversion($source) {
138
  $webp_conversion = WP_Optimize()->get_options()->get_option('webp_conversion', false);
139
  if (!empty($webp_conversion)) {
 
140
  $webp_converter = new WPO_WebP_Convert();
141
  $webp_converter->convert($source);
142
  } else {
includes/class-updraftcentral-wp-optimize-commands.php CHANGED
@@ -12,7 +12,6 @@ class UpdraftCentral_WP_Optimize_Commands extends UpdraftCentral_Commands {
12
  * Class constructor
13
  */
14
  public function __construct() {
15
- if (!class_exists('WP_Optimize_Commands')) include_once(WPO_PLUGIN_MAIN_PATH.'includes/class-commands.php');
16
  $this->commands = new WP_Optimize_Commands();
17
 
18
  }
12
  * Class constructor
13
  */
14
  public function __construct() {
 
15
  $this->commands = new WP_Optimize_Commands();
16
 
17
  }
includes/class-wp-optimize-admin.php ADDED
@@ -0,0 +1,729 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if (!defined('ABSPATH')) die('No direct access allowed');
3
+
4
+ if (!class_exists('WP_Optimize_Admin')) :
5
+
6
+ class WP_Optimize_Admin {
7
+
8
+ /**
9
+ * Class constructor
10
+ */
11
+ public function __construct() {
12
+ if (is_multisite()) {
13
+ add_action('network_admin_menu', array($this, 'admin_menu'));
14
+ } else {
15
+ add_action('admin_menu', array($this, 'admin_menu'));
16
+ }
17
+ }
18
+
19
+ /**
20
+ * Returns singleton instance object
21
+ *
22
+ * @return WP_Optimize_Admin Returns `WP_Optimize_Admin` object
23
+ */
24
+ public static function instance() {
25
+ static $_instance = null;
26
+ if (empty($_instance)) {
27
+ $_instance = new self();
28
+ }
29
+ return $_instance;
30
+ }
31
+
32
+
33
+ /**
34
+ * Builds the Tabs that should be displayed
35
+ *
36
+ * @return array Returns all tabs specified array
37
+ */
38
+ public function get_tabs($page) {
39
+ // define tabs for pages.
40
+ $pages_tabs = array(
41
+ 'WP-Optimize' => array(
42
+ 'optimize' => __('Optimizations', 'wp-optimize'),
43
+ 'tables' => __('Tables', 'wp-optimize'),
44
+ 'settings' => __('Settings', 'wp-optimize'),
45
+ ),
46
+ 'wpo_images' => array(
47
+ 'smush' => __('Compress images', 'wp-optimize'),
48
+ 'unused' => __('Unused images and sizes', 'wp-optimize').'<span class="menu-pill premium-only">Premium</span>',
49
+ 'lazyload' => __('Lazy-load', 'wp-optimize').'<span class="menu-pill premium-only">Premium</span>',
50
+ ),
51
+ 'wpo_cache' => array(
52
+ 'cache' => __('Page cache', 'wp-optimize'),
53
+ 'preload' => __('Preload', 'wp-optimize'),
54
+ 'advanced' => __('Advanced settings', 'wp-optimize'),
55
+ 'gzip' => __('Gzip compression', 'wp-optimize'),
56
+ 'settings' => __('Static file headers', 'wp-optimize') // Adds a settings tab
57
+ ),
58
+ 'wpo_minify' => array(
59
+ "status" => __('Minify status', 'wp-optimize'),
60
+ "js" => __('JavaScript', 'wp-optimize').'<span class="menu-pill disabled hidden">'.__('Disabled', 'wp-optimize').'</span>',
61
+ "css" => __('CSS', 'wp-optimize').'<span class="menu-pill disabled hidden">'.__('Disabled', 'wp-optimize').'</span>',
62
+ "font" => __('Fonts', 'wp-optimize'),
63
+ "settings" => __('Settings', 'wp-optimize'),
64
+ "advanced" => __('Advanced', 'wp-optimize')
65
+ ),
66
+ 'wpo_settings' => array(
67
+ 'settings' => array(
68
+ 'title' => __('Settings', 'wp-optimize'),
69
+ ),
70
+ ),
71
+ 'wpo_support' => array('support' => __('Support / FAQs', 'wp-optimize')),
72
+ 'wpo_mayalso' => array('may_also' => __('Premium / Plugin family', 'wp-optimize')),
73
+ );
74
+
75
+ $tabs = (array_key_exists($page, $pages_tabs)) ? $pages_tabs[$page] : array();
76
+
77
+ return apply_filters('wp_optimize_admin_page_'.$page.'_tabs', $tabs);
78
+ }
79
+
80
+ /**
81
+ * Main page structure.
82
+ */
83
+ public function display_admin() {
84
+ $capability_required = WP_Optimize()->capability_required();
85
+ $can_run_optimizations = WP_Optimize()->can_run_optimizations();
86
+ $can_manage_options = WP_Optimize()->can_manage_options();
87
+
88
+ if (!current_user_can($capability_required) || (!$can_run_optimizations && !$can_manage_options())) {
89
+ echo "Permission denied.";
90
+ return;
91
+ }
92
+
93
+ $this->register_admin_content();
94
+
95
+ echo '<div id="wp-optimize-wrap">';
96
+
97
+ WP_Optimize()->include_template('admin-page-header.php', false, array('show_notices' => !(WP_Optimize()->get_install_or_update_notice()->show_current_notice())));
98
+
99
+ do_action('wpo_admin_after_header');
100
+
101
+ echo '<div id="actions-results-area"></div>';
102
+
103
+ $pages = $this->get_submenu_items();
104
+
105
+ foreach ($pages as $page) {
106
+ if (isset($page['menu_slug'])) {
107
+ $this->display_admin_page($page['menu_slug']);
108
+ }
109
+ }
110
+
111
+ do_action('wpo_admin_before_closing_wrap');
112
+
113
+ // closes main plugin wrapper div. #wp-optimize-wrap
114
+ echo '</div><!-- END #wp-optimize-wrap -->';
115
+
116
+ }
117
+
118
+ /**
119
+ * Prepare and display admin page with $page id.
120
+ *
121
+ * @param string $page wp-optimize page id i.e. dashboard, database, images, cache, ...
122
+ */
123
+ public function display_admin_page($page) {
124
+
125
+ $active_page = !empty($_REQUEST['page']) ? $_REQUEST['page'] : '';
126
+
127
+ echo '<div class="wpo-page' . ($active_page == $page ? ' active' : '') . '" data-whichpage="'.$page.'">';
128
+
129
+ echo '<div class="wpo-main">';
130
+
131
+ // get defined tabs for $page.
132
+ $tabs = $this->get_tabs($page);
133
+
134
+ // if no tabs defined for $page then use $page as $active_tab for load template, doing related actions e t.c.
135
+ if (empty($tabs)) {
136
+ $active_tab = $page;
137
+ } else {
138
+ $tab_keys = array_keys($tabs);
139
+ $default_tab = apply_filters('wp_optimize_admin_'.$page.'_default_tab', $tab_keys[0]);
140
+ $active_tab = isset($_GET['tab']) ? substr($_GET['tab'], 12) : $default_tab;
141
+ if (!in_array($active_tab, array_keys($tabs))) $active_tab = $default_tab;
142
+ }
143
+
144
+ do_action('wp_optimize_admin_page_'.$page, $active_tab);
145
+
146
+ // if tabs defined then display
147
+ if (!empty($tabs)) {
148
+ WP_Optimize()->include_template('admin-page-header-tabs.php', false, array('page' => $page, 'active_tab' => $active_tab, 'tabs' => $tabs, 'wpo_is_premium' => WP_Optimize()::is_premium()));
149
+ }
150
+
151
+ foreach ($tabs as $tab_id => $tab_description) {
152
+ // output wrap div for tab with id #wp-optimize-nav-tab-contents-'.$page.'-'.$tab_id
153
+ echo '<div class="wp-optimize-nav-tab-contents" id="wp-optimize-nav-tab-'.$page.'-'.$tab_id.'-contents" '.(($tab_id == $active_tab) ? '' : 'style="display:none;"').'>';
154
+
155
+ echo '<div class="postbox wpo-tab-postbox">';
156
+ // call action for generate tab content.
157
+
158
+ do_action('wp_optimize_admin_page_'.$page.'_'.$tab_id);
159
+
160
+ // closes postbox.
161
+ echo '</div><!-- END .postbox -->';
162
+ // closes tab wrapper.
163
+ echo '</div><!-- END .wp-optimize-nav-tab-contents -->';
164
+ }
165
+
166
+ echo '</div><!-- END .wpo-main -->';
167
+
168
+ do_action('wp_optimize_admin_after_page_'.$page, $active_tab);
169
+
170
+ echo '</div><!-- END .wpo-page -->';
171
+
172
+ }
173
+
174
+ /**
175
+ * Define required actions for admin pages.
176
+ */
177
+ public function register_admin_content() {
178
+
179
+ do_action('wp_optimize_register_admin_content');
180
+
181
+ /**
182
+ * SETTINGS
183
+ */
184
+ add_action('wp_optimize_admin_page_wpo_settings_settings', array($this, 'output_dashboard_settings_tab'), 20);
185
+
186
+ /**
187
+ * Premium / other plugins
188
+ */
189
+ add_action('wp_optimize_admin_page_wpo_mayalso_may_also', array($this, 'output_dashboard_other_plugins_tab'), 20);
190
+
191
+ /**
192
+ * DATABASE
193
+ */
194
+ add_action('wp_optimize_admin_page_WP-Optimize_optimize', array($this, 'output_database_optimize_tab'), 20);
195
+ add_action('wp_optimize_admin_page_WP-Optimize_tables', array($this, 'output_database_tables_tab'), 20);
196
+ add_action('wp_optimize_admin_page_WP-Optimize_settings', array($this, 'output_database_settings_tab'), 20);
197
+
198
+ /**
199
+ * CACHE
200
+ */
201
+ add_action('wp_optimize_admin_page_wpo_cache_cache', array($this, 'output_page_cache_tab'), 20);
202
+ if (!WP_Optimize()->does_server_handles_cache()) {
203
+ add_action('wp_optimize_admin_page_wpo_cache_preload', array($this, 'output_page_cache_preload_tab'), 20);
204
+ add_action('wp_optimize_admin_page_wpo_cache_advanced', array($this, 'output_page_cache_advanced_tab'), 20);
205
+ }
206
+ add_action('wp_optimize_admin_page_wpo_cache_gzip', array($this, 'output_cache_gzip_tab'), 20);
207
+ add_action('wp_optimize_admin_page_wpo_cache_settings', array($this, 'output_cache_settings_tab'), 20);
208
+ add_action('wpo_page_cache_advanced_settings', array($this, 'output_cloudflare_settings'), 20);
209
+ /**
210
+ * SUPPORT
211
+ */
212
+ add_action('wp_optimize_admin_page_wpo_support_support', array($this, 'output_dashboard_support_tab'), 20);
213
+ // Display Support page.
214
+
215
+ if (!WP_Optimize()::is_premium()) {
216
+ /**
217
+ * Add action for display Images > Unused images and sizes tab.
218
+ */
219
+ add_action('wp_optimize_admin_page_wpo_images_unused', array($this, 'admin_page_wpo_images_unused'));
220
+
221
+ /**
222
+ * Add action for display Dashboard > Lazyload tab.
223
+ */
224
+ add_action('wp_optimize_admin_page_wpo_images_lazyload', array($this, 'admin_page_wpo_images_lazyload'));
225
+ } else {
226
+ /**
227
+ * Add filter for display footer review message and link.
228
+ */
229
+ add_filter('admin_footer_text', array($this, 'display_footer_review_message'));
230
+ }
231
+ }
232
+
233
+ /**
234
+ * Database settings
235
+ */
236
+ public function output_database_settings_tab() {
237
+
238
+ if (WP_Optimize()->can_manage_options()) {
239
+ WP_Optimize()->include_template('database/settings.php');
240
+ } else {
241
+ $this->prevent_manage_options_info();
242
+ }
243
+ }
244
+
245
+ /**
246
+ * Dashboard settings
247
+ */
248
+ public function output_dashboard_settings_tab() {
249
+ $options = WP_Optimize()->get_options();
250
+
251
+ if ('POST' == $_SERVER['REQUEST_METHOD']) {
252
+ // Nonce check.
253
+ check_admin_referer('wpo_settings');
254
+
255
+ $output = $options->save_settings($_POST);
256
+
257
+ if (isset($_POST['wp-optimize-settings'])) {
258
+ // save settings request sent.
259
+ $output = $options->save_settings($_POST);
260
+ }
261
+
262
+ $this->wpo_render_output_messages($output);
263
+ }
264
+
265
+ if (WP_Optimize()->can_manage_options()) {
266
+ WP_Optimize()->include_template('settings/settings.php');
267
+ } else {
268
+ $this->prevent_manage_options_info();
269
+ }
270
+ }
271
+
272
+ /**
273
+ * Dashboard support tab
274
+ */
275
+ public function output_dashboard_support_tab() {
276
+ WP_Optimize()->include_template('settings/support-and-faqs.php');
277
+ }
278
+
279
+ /**
280
+ * Dashboard Other plugins / premium tab
281
+ */
282
+ public function output_dashboard_other_plugins_tab() {
283
+ WP_Optimize()->include_template('settings/may-also-like.php');
284
+ }
285
+
286
+ /**
287
+ * Cache tab
288
+ */
289
+ public function output_page_cache_tab() {
290
+ $wpo_cache = WP_Optimize()->get_page_cache();
291
+ $wpo_cache_options = $wpo_cache->config->get();
292
+ $display = $wpo_cache->is_enabled() ? "style='display:block'" : "style='display:none'";
293
+
294
+ WP_Optimize()->include_template('cache/page-cache.php', false, array(
295
+ 'wpo_cache' => $wpo_cache,
296
+ 'active_cache_plugins' => WP_Optimize_Detect_Cache_Plugins::instance()->get_active_cache_plugins(),
297
+ 'wpo_cache_options' => $wpo_cache_options,
298
+ 'cache_size' => $wpo_cache->get_cache_size(),
299
+ 'display' => $display,
300
+ 'can_purge_the_cache' => WP_Optimize()->can_purge_the_cache(),
301
+ 'does_server_handles_cache' => WP_Optimize()->does_server_handles_cache(),
302
+ ));
303
+ }
304
+
305
+ /**
306
+ * Preload tab
307
+ */
308
+ public function output_page_cache_preload_tab() {
309
+ $wpo_cache = WP_Optimize()->get_page_cache();
310
+ $wpo_cache_options = $wpo_cache->config->get();
311
+ $wpo_cache_preloader = WP_Optimize_Page_Cache_Preloader::instance();
312
+ $is_running = $wpo_cache_preloader->is_running();
313
+ $status = $wpo_cache_preloader->get_status_info();
314
+
315
+ WP_Optimize()->include_template('cache/page-cache-preload.php', false, array(
316
+ 'wpo_cache_options' => $wpo_cache_options,
317
+ 'is_running' => $is_running,
318
+ 'status_message' => isset($status['message']) ? $status['message'] : '',
319
+ 'schedule_options' => array(
320
+ 'wpo_use_cache_lifespan' => __('Same as cache lifespan', 'wp-optimize'),
321
+ 'wpo_daily' => __('Daily', 'wp-optimize'),
322
+ 'wpo_weekly' => __('Weekly', 'wp-optimize'),
323
+ 'wpo_fortnightly' => __('Fortnightly', 'wp-optimize'),
324
+ 'wpo_monthly' => __('Monthly (approx. - every 30 days)', 'wp-optimize')
325
+ )
326
+ ));
327
+ }
328
+
329
+ /**
330
+ * Advanced tab
331
+ */
332
+ public function output_page_cache_advanced_tab() {
333
+ $wpo_cache = WP_Optimize()->get_page_cache();
334
+ $wpo_cache_options = $wpo_cache->config->get();
335
+
336
+ $cache_exception_conditional_tags = is_array($wpo_cache_options['cache_exception_conditional_tags']) ? join("\n", $wpo_cache_options['cache_exception_conditional_tags']) : '';
337
+ $cache_exception_urls = is_array($wpo_cache_options['cache_exception_urls']) ? join("\n", $wpo_cache_options['cache_exception_urls']) : '';
338
+ $cache_exception_cookies = is_array($wpo_cache_options['cache_exception_cookies']) ? join("\n", $wpo_cache_options['cache_exception_cookies']) : '';
339
+ $cache_exception_browser_agents = is_array($wpo_cache_options['cache_exception_browser_agents']) ? join("\n", $wpo_cache_options['cache_exception_browser_agents']) : '';
340
+
341
+ WP_Optimize()->include_template('cache/page-cache-advanced.php', false, array(
342
+ 'wpo_cache' => $wpo_cache,
343
+ 'wpo_cache_options' => $wpo_cache_options,
344
+ 'cache_exception_urls' => $cache_exception_urls,
345
+ 'cache_exception_conditional_tags' => $cache_exception_conditional_tags,
346
+ 'cache_exception_cookies' => $cache_exception_cookies,
347
+ 'cache_exception_browser_agents' => $cache_exception_browser_agents,
348
+ ));
349
+ }
350
+
351
+ /**
352
+ * Gzip tab
353
+ */
354
+ public function output_cache_gzip_tab() {
355
+ $wpo_gzip_compression = WP_Optimize()->get_gzip_compression();
356
+ $wpo_gzip_compression_enabled = $wpo_gzip_compression->is_gzip_compression_enabled(true);
357
+ $wpo_gzip_headers_information = $wpo_gzip_compression->get_headers_information();
358
+ $is_cloudflare_site = $this->is_cloudflare_site();
359
+ $is_gzip_compression_section_exists = $wpo_gzip_compression->is_gzip_compression_section_exists();
360
+ $wpo_gzip_compression_enabled_by_wpo = $is_gzip_compression_section_exists && $wpo_gzip_compression_enabled && !$is_cloudflare_site && !(is_array($wpo_gzip_headers_information) && 'brotli' == $wpo_gzip_headers_information['compression']);
361
+
362
+ WP_Optimize()->include_template('cache/gzip-compression.php', false, array(
363
+ 'wpo_gzip_headers_information' => $wpo_gzip_headers_information,
364
+ 'wpo_gzip_compression_enabled' => $wpo_gzip_compression_enabled,
365
+ 'is_cloudflare_site' => $is_cloudflare_site,
366
+ 'wpo_gzip_compression_enabled_by_wpo' => $wpo_gzip_compression_enabled_by_wpo,
367
+ 'wpo_gzip_compression_settings_added' => $is_gzip_compression_section_exists,
368
+ 'info_link' => 'https://getwpo.com/gzip-compression-explained/',
369
+ 'faq_link' => 'https://getwpo.com/gzip-faq-link/',
370
+ 'class_name' => (!is_wp_error($wpo_gzip_compression_enabled) && $wpo_gzip_compression_enabled ? 'wpo-enabled' : 'wpo-disabled')
371
+ ));
372
+ }
373
+
374
+ /**
375
+ * Cache tab
376
+ */
377
+ public function output_cache_settings_tab() {
378
+
379
+ $wpo_browser_cache = WP_Optimize()->get_browser_cache();
380
+ $wpo_browser_cache_enabled = $wpo_browser_cache->is_enabled();
381
+
382
+ WP_Optimize()->include_template('cache/browser-cache.php', false, array(
383
+ 'wpo_browser_cache_enabled' => $wpo_browser_cache_enabled,
384
+ 'is_cloudflare_site' => $this->is_cloudflare_site(),
385
+ 'wpo_browser_cache_settings_added' => $wpo_browser_cache->is_browser_cache_section_exists(),
386
+ 'class_name' => (true === $wpo_browser_cache_enabled ? 'wpo-enabled' : 'wpo-disabled'),
387
+ 'wpo_browser_cache_expire_days' => WP_Optimize()->get_options()->get_option('browser_cache_expire_days', '28'),
388
+ 'wpo_browser_cache_expire_hours' => WP_Optimize()->get_options()->get_option('browser_cache_expire_hours', '0'),
389
+ 'info_link' => 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching',
390
+ 'faq_link' => 'https://www.digitalocean.com/community/tutorials/how-to-implement-browser-caching-with-nginx-s-header-module-on-ubuntu-16-04',
391
+ ));
392
+ }
393
+
394
+ /**
395
+ * Check if is the current site handled with Cloudflare.
396
+ *
397
+ * @return bool
398
+ */
399
+ public function is_cloudflare_site() {
400
+ return isset($_SERVER['HTTP_CF_RAY']);
401
+ }
402
+
403
+ /**
404
+ * Include Cloudflare settings template.
405
+ */
406
+ public function output_cloudflare_settings() {
407
+ if (WP_Optimize()::is_premium() || !apply_filters('show_cloudflare_settings', $this->is_cloudflare_site())) return;
408
+
409
+ WP_Optimize()->include_template('cache/page-cache-cloudflare-placeholder.php');
410
+ }
411
+
412
+ /**
413
+ * Outputs the DB optimize Tab
414
+ */
415
+ public function output_database_optimize_tab() {
416
+ $optimizer = WP_Optimize()->get_optimizer();
417
+ $options = WP_Optimize()->get_options();
418
+
419
+ // check if nonce passed.
420
+ $nonce_passed = (!empty($_REQUEST['_wpnonce']) && wp_verify_nonce($_REQUEST['_wpnonce'], 'wpo_optimization')) ? true : false;
421
+
422
+ // save options.
423
+ if ($nonce_passed && isset($_POST['wp-optimize'])) $options->save_sent_manual_run_optimization_options($_POST, true);
424
+
425
+ $optimize_db = ($nonce_passed && isset($_POST["optimize-db"])) ? true : false;
426
+
427
+ $optimization_results = (($nonce_passed) ? $optimizer->do_optimizations($_POST) : false);
428
+
429
+ // display optimizations table or restricted access message.
430
+ if (WP_Optimize()->can_run_optimizations()) {
431
+ WP_Optimize()->include_template('database/optimize-table.php', false, array('optimize_db' => $optimize_db, 'optimization_results' => $optimization_results, 'load_data' => false, 'does_server_allows_table_optimization' => WP_Optimize()->does_server_allows_table_optimization()));
432
+ } else {
433
+ $this->prevent_run_optimizations_message();
434
+ }
435
+ }
436
+
437
+ /**
438
+ * Outputs the DB Tables Tab
439
+ */
440
+ public function output_database_tables_tab() {
441
+ // check if nonce passed.
442
+ $nonce_passed = (!empty($_REQUEST['_wpnonce']) && wp_verify_nonce($_REQUEST['_wpnonce'], 'wpo_optimization')) ? true : false;
443
+
444
+ $optimize_db = ($nonce_passed && isset($_POST["optimize-db"])) ? true : false;
445
+
446
+ if (!WP_Optimize()->does_server_allows_table_optimization()) {
447
+ $message = __('Your server takes care of table optimization', 'wp-optimize');
448
+ $this->prevent_run_optimizations_message($message);
449
+ } elseif (WP_Optimize()->can_run_optimizations()) {
450
+ WP_Optimize()->include_template('database/tables.php', false, array('optimize_db' => $optimize_db, 'load_data' => WP_Optimize()->template_should_include_data()));
451
+ } else {
452
+ $this->prevent_run_optimizations_message();
453
+ }
454
+ }
455
+
456
+ /**
457
+ * Runs upon the WP action admin_page_wpo_images_unused
458
+ */
459
+ public function admin_page_wpo_images_unused() {
460
+ WP_Optimize()->include_template('images/unused.php');
461
+ }
462
+
463
+ /**
464
+ * Runs upon the WP action wp_optimize_admin_page_wpo_images_lazyload
465
+ */
466
+ public function admin_page_wpo_images_lazyload() {
467
+ WP_Optimize()->include_template('images/lazyload.php');
468
+ }
469
+
470
+ /**
471
+ * Show footer review message and link.
472
+ *
473
+ * @return string
474
+ */
475
+ public function display_footer_review_message() {
476
+ $message = sprintf(
477
+ __('Enjoyed %s? Please leave us a %s rating. We really appreciate your support!', 'wp-optimize'),
478
+ '<b>WP-Optimize</b>',
479
+ '<a href="https://www.g2.com/products/wp-optimize/reviews" target="_blank">&starf;&starf;&starf;&starf;&starf;</a>'
480
+ );
481
+ return $message;
482
+ }
483
+
484
+ /**
485
+ * Adds menu in admin bar
486
+ */
487
+ public function wpo_admin_bar() {
488
+ $wp_admin_bar = $GLOBALS['wp_admin_bar'];
489
+
490
+ if (defined('WPOPTIMIZE_ADMINBAR_DISABLE') && WPOPTIMIZE_ADMINBAR_DISABLE) return;
491
+
492
+ // Show menu item in top bar only for super admins.
493
+ if (is_multisite() & !is_super_admin(get_current_user_id())) return;
494
+
495
+ // Add a link called at the top admin bar.
496
+ $args = array(
497
+ 'id' => 'wp-optimize-node',
498
+ 'title' => apply_filters('wpoptimize_admin_node_title', 'WP-Optimize')
499
+ );
500
+ $wp_admin_bar->add_node($args);
501
+
502
+ $pages = $this->get_submenu_items();
503
+
504
+ foreach ($pages as $page_id => $page) {
505
+
506
+ if (!isset($page['create_submenu']) || !$page['create_submenu']) {
507
+ if (isset($page['icon']) && 'separator' == $page['icon']) {
508
+ $args = array(
509
+ 'id' => 'wpo-separator-'.$page_id,
510
+ 'parent' => 'wp-optimize-node',
511
+ 'meta' => array(
512
+ 'class' => 'separator',
513
+ ),
514
+ );
515
+ $wp_admin_bar->add_node($args);
516
+ }
517
+ continue;
518
+ }
519
+
520
+ // 'menu_slug' => 'WP-Optimize',
521
+
522
+ $menu_page_url = menu_page_url($page['menu_slug'], false);
523
+
524
+ if (is_multisite()) {
525
+ $menu_page_url = network_admin_url('admin.php?page='.$page['menu_slug']);
526
+ }
527
+
528
+ $args = array(
529
+ 'id' => 'wpoptimize_admin_node_'.$page_id,
530
+ 'title' => $page['menu_title'],
531
+ 'parent' => 'wp-optimize-node',
532
+ 'href' => $menu_page_url,
533
+ );
534
+ $wp_admin_bar->add_node($args);
535
+ }
536
+
537
+ }
538
+
539
+ /**
540
+ * Manages the admin bar menu for caching (currently page and minify)
541
+ */
542
+ public function cache_admin_bar($wp_admin_bar) {
543
+
544
+ $options = WP_Optimize()->get_options();
545
+ if (!$options->get_option('enable_cache_in_admin_bar', true)) return;
546
+
547
+ /**
548
+ * The "purge cache" menu items
549
+ *
550
+ * @param array $menu_items - The menu items, in the format required by $wp_admin_bar->add_menu()
551
+ * @param object $wp_admin_bar
552
+ */
553
+ $menu_items = apply_filters('wpo_cache_admin_bar_menu_items', array(), $wp_admin_bar);
554
+
555
+ if (empty($menu_items) || !is_array($menu_items)) return;
556
+
557
+ $wp_admin_bar->add_menu(array(
558
+ 'id' => 'wpo_purge_cache',
559
+ 'title' => __('Purge cache', 'wp-optimize'),
560
+ 'href' => '#',
561
+ 'meta' => array(
562
+ 'title' => __('Purge cache', 'wp-optimize'),
563
+ ),
564
+ 'parent' => false,
565
+ ));
566
+
567
+ foreach ($menu_items as $item) {
568
+ $wp_admin_bar->add_menu($item);
569
+ }
570
+ }
571
+
572
+ /**
573
+ * Adds and displays menu and submenu pages
574
+ */
575
+ public function admin_menu() {
576
+
577
+ $capability_required = WP_Optimize()->capability_required();
578
+ $can_run_optimizations = WP_Optimize()->can_run_optimizations();
579
+ $can_manage_options = WP_Optimize()->can_manage_options();
580
+
581
+ if (!current_user_can($capability_required) || (!$can_run_optimizations && !$can_manage_options)) return;
582
+
583
+ $icon_svg = 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmlld0JveD0iMCAwIDE2IDE2IgogICB2ZXJzaW9uPSIxLjEiCiAgIGlkPSJzdmc0MzE2IgogICBoZWlnaHQ9IjE2IgogICB3aWR0aD0iMTYiPgogIDxkZWZzCiAgICAgaWQ9ImRlZnM0MzE4IiAvPgogIDxtZXRhZGF0YQogICAgIGlkPSJtZXRhZGF0YTQzMjEiPgogICAgPHJkZjpSREY+CiAgICAgIDxjYzpXb3JrCiAgICAgICAgIHJkZjphYm91dD0iIj4KICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4KICAgICAgICA8ZGM6dHlwZQogICAgICAgICAgIHJkZjpyZXNvdXJjZT0iaHR0cDovL3B1cmwub3JnL2RjL2RjbWl0eXBlL1N0aWxsSW1hZ2UiIC8+CiAgICAgICAgPGRjOnRpdGxlPjwvZGM6dGl0bGU+CiAgICAgIDwvY2M6V29yaz4KICAgIDwvcmRmOlJERj4KICA8L21ldGFkYXRhPgogIDxnCiAgICAgaWQ9ImxheWVyMSI+CiAgICA8cGF0aAogICAgICAgc3R5bGU9ImZpbGw6I2EwYTVhYTtmaWxsLW9wYWNpdHk6MSIKICAgICAgIGlkPSJwYXRoNTciCiAgICAgICBkPSJtIDEwLjc2ODgwOSw2Ljc2MTYwNTEgMCwwIGMgLTAuMDE2ODgsLTAuMDE2ODc4IC0wLjAyNTMxLC0wLjA0MjE4MSAtMC4wMzM3NCwtMC4wNjc0OTkgLTAuMDA4NCwtMC4wMDgzOSAtMC4wMDg0LC0wLjAxNjg3OCAtMC4wMTY4OCwtMC4wMzM3NDMgQyA5Ljk5MjYxMTIsNS4xOTIzMzY2IDguMjIwODU1Nyw0LjU4NDg3ODEgNi43NDQzOTEyLDUuMjkzNTc5NyA1LjY3MjkwMDUsNS44MDgyMzI4IDUuMDU3MDA0Myw2Ljg4ODE2MTMgNS4wNjU0NDIsOC4wMDE4MzY1IDQuNDU3OTgyMiw3LjMxMDAwNzYgMy42OTg2NTg0LDYuNzk1MzU0NSAyLjg1NDk2NDIsNi40OTE2MjUzIDMuMjY4Mzc0Myw1LjA2NTc4MzEgNC4yNTU0OTYsMy44MTcxMTY2IDUuNjg5Nzc0NiwzLjEyNTI4NzggOC4zNjQyODMyLDEuODM0NDM2OCAxMS41NzAzMTksMi45Mzk2NzQ0IDEyLjg4NjQ4MSw1LjU4ODg3MjYgMTMuNDUxNzU1LDYuNzI3ODU5NiAxNC42NDk4MDEsNy4zNTIxOTIxIDE1Ljg0Nzg0Niw3LjIzNDA3NSAxNS43NjM0ODIsNi4zMzk3NiAxNS41MTg4MDUsNS40MzcwMDg2IDE1LjEwNTM5Niw0LjU3NjQ0MDQgMTMuMjE1NTIxLDAuNjg3MDEzNCA4LjUzMzAyMjYsLTAuOTQxMzE2MjcgNC42NDM1OTQzLDAuOTQwMTIxNzkgMi4zMjM0MzcsMi4wNjIyMzM0IDAuODA0Nzg4MTQsNC4xNzk5MDQ0IDAuMzU3NjMxMzIsNi41MzM4MDk4IDIuNDE2MjQzOCw2LjQyNDEyOSA0LjQzMjY3MTcsNy41MDQwNTc0IDUuNDM2NjY2Miw5LjQzNjExNjcgbCAwLjAwODM5LDAgYyAwLjc1OTMxOTIsMS4zNzUyMjAzIDIuNDcyMDE3OCwxLjk0MDQ5NTMgMy45MDYyOTYsMS4yNDg2NjczIDEuMDQ2MTc5OCwtMC41MDYyMTggMS42NTM2NDA4LC0xLjUzNTUyMzggMS42Nzg5NTA4LC0yLjYxNTQ1MTIgMC41ODIxNDgsMC43MDg3MDE4IDEuMzMzMDM1LDEuMjQ4NjY2OCAyLjE1OTg1NiwxLjU3NzcwNjQgLTAuNDM4NzIxLDEuMzU4MzQ3OCAtMS40MDA1MzMsMi41NDc5NTQ4IC0yLjc5MjYyNywzLjIxNDQ3ODggLTIuNTkwMTM4NywxLjI0ODY1OCAtNS42NzgwNTc0LDAuMjUzMTA0IC03LjA2MTcxNTEsLTIuMjI3MzU3IGwgMCwwIEMgMi43NjIxMDQ4LDkuNDUyOTg5NCAxLjUxMzQzODMsOC44MjAyMTkxIDAuMjgxNjQ1OTIsOC45NzIwODQ0IDAuMzgyODg3NjUsOS43OTg5MDQ2IDAuNjE5MTIzMzEsMTAuNjE3Mjg3IDAuOTk4Nzg1MiwxMS40MDE5MjIgYyAxLjg4MTQzNjgsMy44OTc4NjQgNi41NjM5MzcsNS41MjYxOTggMTAuNDYxODAwOCwzLjY0NDc2IDIuMjQ0MjI2LC0xLjA4ODM2OSAzLjczNzU2MiwtMy4xMDQ3OTYgNC4yMzUzNDIsLTUuMzc0MzMyMyAtMS45OTk1NTQsMC4wNDIxODEgLTMuOTQ4NDg2LC0xLjAyOTMwNjMgLTQuOTI3MTcsLTIuOTEwNzQzMyB6IgogICAgICAgY2xhc3M9InN0MTciIC8+CiAgPC9nPgo8L3N2Zz4K';
584
+
585
+ // Removes the admin menu items on the left WP bar.
586
+ if (!is_multisite() || (is_multisite() && is_network_admin())) {
587
+ add_menu_page("WP-Optimize", "WP-Optimize", $capability_required, "WP-Optimize", array($this, "display_admin"), $icon_svg);
588
+
589
+ $sub_menu_items = $this->get_submenu_items();
590
+
591
+ foreach ($sub_menu_items as $menu_item) {
592
+ if ($menu_item['create_submenu']) add_submenu_page('WP-Optimize', $menu_item['page_title'], $menu_item['menu_title'], $capability_required, $menu_item['menu_slug'], $menu_item['function']);
593
+ }
594
+ }
595
+
596
+ $options = WP_Optimize()->get_options();
597
+
598
+ if ('true' == $options->get_option('enable-admin-menu', 'false')) {
599
+ add_action('wp_before_admin_bar_render', array($this, 'wpo_admin_bar'));
600
+ }
601
+ }
602
+
603
+ /**
604
+ * Get the submenu items
605
+ *
606
+ * @return array
607
+ */
608
+ public function get_submenu_items() {
609
+ $sub_menu_items = array(
610
+ array(
611
+ 'page_title' => __('Database', 'wp-optimize'),
612
+ 'menu_title' => __('Database', 'wp-optimize'),
613
+ 'menu_slug' => 'WP-Optimize',
614
+ 'function' => array($this, 'display_admin'),
615
+ 'icon' => 'cloud',
616
+ 'create_submenu' => true,
617
+ 'order' => 20,
618
+ ),
619
+ array(
620
+ 'page_title' => __('Images', 'wp-optimize'),
621
+ 'menu_title' => __('Images', 'wp-optimize'),
622
+ 'menu_slug' => 'wpo_images',
623
+ 'function' => array($this, 'display_admin'),
624
+ 'icon' => 'images-alt2',
625
+ 'create_submenu' => true,
626
+ 'order' => 30,
627
+ ),
628
+ array(
629
+ 'page_title' => __('Cache', 'wp-optimize'),
630
+ 'menu_title' => __('Cache', 'wp-optimize'),
631
+ 'menu_slug' => 'wpo_cache',
632
+ 'function' => array($this, 'display_admin'),
633
+ 'icon' => 'archive',
634
+ 'create_submenu' => true,
635
+ 'order' => 40,
636
+ ),
637
+ array(
638
+ 'page_title' => __('Minify', 'wp-optimize'),
639
+ 'menu_title' => __('Minify', 'wp-optimize'),
640
+ 'menu_slug' => 'wpo_minify',
641
+ 'function' => array($this, 'display_admin'),
642
+ 'icon' => 'dashboard',
643
+ 'create_submenu' => true,
644
+ 'order' => 50,
645
+ ),
646
+ array(
647
+ 'create_submenu' => false,
648
+ 'order' => 55,
649
+ 'icon' => 'separator',
650
+ ),
651
+ array(
652
+ 'page_title' => __('Settings', 'wp-optimize'),
653
+ 'menu_title' => __('Settings', 'wp-optimize'),
654
+ 'menu_slug' => 'wpo_settings',
655
+ 'function' => array($this, 'display_admin'),
656
+ 'icon' => 'admin-settings',
657
+ 'create_submenu' => true,
658
+ 'order' => 60,
659
+ ),
660
+ array(
661
+ 'page_title' => __('Support & FAQs', 'wp-optimize'),
662
+ 'menu_title' => __('Help', 'wp-optimize'),
663
+ 'menu_slug' => 'wpo_support',
664
+ 'function' => array($this, 'display_admin'),
665
+ 'icon' => 'sos',
666
+ 'create_submenu' => true,
667
+ 'order' => 60,
668
+ ),
669
+ array(
670
+ 'page_title' => __('Premium Upgrade', 'wp-optimize'),
671
+ 'menu_title' => __('Premium Upgrade', 'wp-optimize'),
672
+ 'menu_slug' => 'wpo_mayalso',
673
+ 'function' => array($this, 'display_admin'),
674
+ 'icon' => 'admin-plugins',
675
+ 'create_submenu' => true,
676
+ 'order' => 70,
677
+ ),
678
+ );
679
+
680
+ $sub_menu_items = apply_filters('wp_optimize_sub_menu_items', $sub_menu_items);
681
+
682
+ usort($sub_menu_items, array($this, 'order_sort'));
683
+
684
+ return $sub_menu_items;
685
+ }
686
+
687
+ /**
688
+ * Order sorting function
689
+ */
690
+ public function order_sort($a, $b) {
691
+ if ($a['order'] == $b['order']) return 0;
692
+ return ($a['order'] > $b['order']) ? 1 : -1;
693
+ }
694
+
695
+ /**
696
+ * Output information message for users who have no permissions to run optimizations.
697
+ *
698
+ * @param string $message Message to display
699
+ */
700
+ public function prevent_run_optimizations_message($message = '') {
701
+ if (empty($message)) {
702
+ $message = __('You have no permissions to run optimizations.', 'wp-optimize');
703
+ }
704
+ WP_Optimize()->include_template('info-message.php', false, array('message' => $message));
705
+ }
706
+
707
+ /**
708
+ * Output information message for users who have no permissions to manage settings.
709
+ */
710
+ public function prevent_manage_options_info() {
711
+ WP_Optimize()->include_template('info-message.php', false, array('message' => __('You have no permissions to manage WP-Optimize settings.', 'wp-optimize')));
712
+ }
713
+
714
+ /**
715
+ * Output success/error messages from $output array.
716
+ *
717
+ * @param array $output ['messages' => success messages, 'errors' => error messages]
718
+ */
719
+ private function wpo_render_output_messages($output) {
720
+ foreach ($output['messages'] as $item) {
721
+ echo '<div class="updated fade below-h2"><strong>'.$item.'</strong></div>';
722
+ }
723
+
724
+ foreach ($output['errors'] as $item) {
725
+ echo '<div class="error fade below-h2"><strong>'.$item.'</strong></div>';
726
+ }
727
+ }
728
+ }
729
+ endif;
includes/{class-commands.php → class-wp-optimize-commands.php} RENAMED
File without changes
includes/{wp-optimize-database-information.php → class-wp-optimize-database-information.php} RENAMED
@@ -122,6 +122,11 @@ class WP_Optimize_Database_Information {
122
  if ($update || empty($tables_info) || !is_array($tables_info) || !$fetched_all_tables) {
123
  $tables_info = $wpdb->get_results('SHOW TABLE STATUS');
124
  $fetched_all_tables = true;
 
 
 
 
 
125
  }
126
  }
127
 
@@ -624,4 +629,16 @@ class WP_Optimize_Database_Information {
624
  file_put_contents($this->get_plugin_json_file_path(), $json_content);
625
  }
626
  }
 
 
 
 
 
 
 
 
 
 
 
 
627
  }
122
  if ($update || empty($tables_info) || !is_array($tables_info) || !$fetched_all_tables) {
123
  $tables_info = $wpdb->get_results('SHOW TABLE STATUS');
124
  $fetched_all_tables = true;
125
+ foreach ($tables_info as $i => $table) {
126
+ $rows_count = get_transient($table->Name . '_count');
127
+ if (false === $rows_count) break;
128
+ $tables_info[$i]->Rows = $rows_count;
129
+ }
130
  }
131
  }
132
 
629
  file_put_contents($this->get_plugin_json_file_path(), $json_content);
630
  }
631
  }
632
+
633
+ /**
634
+ * Cache all table rows count
635
+ */
636
+ public function wpo_update_record_count() {
637
+ global $wpdb;
638
+ $tables_info = $wpdb->get_results('SHOW TABLE STATUS');
639
+ foreach ($tables_info as $table) {
640
+ $rows_count = $wpdb->get_var("SELECT COUNT(*) FROM `$table->Name`");
641
+ set_transient($table->Name . '_count', $rows_count, 24*60*60);
642
+ }
643
+ }
644
  }
includes/class-wp-optimize-htaccess.php CHANGED
@@ -215,7 +215,7 @@ class WP_Optimize_Htaccess {
215
  */
216
  public function remove_commented_section($comment = 'WP-Optimize Browser Cache') {
217
  $section_index = $this->search_commented_section($comment);
218
-
219
  if (false === $section_index) return false;
220
 
221
  $remove_length = (false === $section_index['end']) ? null : ($section_index['end'] - $section_index['begin'] + 1);
215
  */
216
  public function remove_commented_section($comment = 'WP-Optimize Browser Cache') {
217
  $section_index = $this->search_commented_section($comment);
218
+ WP_Optimize()->log(print_r($section_index, true));
219
  if (false === $section_index) return false;
220
 
221
  $remove_length = (false === $section_index['end']) ? null : ($section_index['end'] - $section_index['begin'] + 1);
includes/{wp-optimize-notices.php → class-wp-optimize-notices.php} RENAMED
File without changes
includes/{class-wpo-preloader.php → class-wp-optimize-preloader.php} RENAMED
File without changes
js/{cache-3-2-3.min.js → cache-3-2-5.min.js} RENAMED
File without changes
js/{loadAsync-3-2-3.min.js → loadAsync-3-2-5.min.js} RENAMED
File without changes
js/{loadCSS-3-2-3.min.js → loadCSS-3-2-5.min.js} RENAMED
File without changes
js/{minify-3-2-3.min.js → minify-3-2-5.min.js} RENAMED
File without changes
js/{modal-3-2-3.min.js → modal-3-2-5.min.js} RENAMED
File without changes
js/{queue-3-2-3.min.js → queue-3-2-5.min.js} RENAMED
File without changes
js/{send-command-3-2-3.min.js → send-command-3-2-5.min.js} RENAMED
File without changes
js/{wpo-images-view-3-2-3.min.js → wpo-images-view-3-2-5.min.js} RENAMED
File without changes
js/{wpoadmin-3-2-3.min.js → wpoadmin-3-2-5.min.js} RENAMED
File without changes
js/wposmush-3-2-3.min.js DELETED
@@ -1 +0,0 @@
1
- function wpo_parse_json(s){if("object"==typeof s)return s;try{var e=JSON.parse(s);return e}catch(o){console.log("WPO: Exception when trying to parse JSON (1) - will attempt to fix/re-parse"),console.log(s)}var i=s.indexOf("{"),a=s.lastIndexOf("}");if(i>-1&&a>-1){var n=s.slice(i,a+1);try{var t=JSON.parse(n);return t}catch(o){console.log("WPO: Exception when trying to parse JSON (2) - will attempt to fix/re-parse based upon bracket counting");for(var m=i,_=0,r="",u=!1;(_>0||m==i)&&m<=a;){var c=s.charAt(m);u||"{"!=c?u||"}"!=c?'"'==c&&"\\"!=r&&(u=!u):_--:_++,r=c,m++}console.log("Started at cursor="+i+", ended at cursor="+m+" with result following:"),console.log(s.substring(i,m));try{var t=JSON.parse(s.substring(i,m));return t}catch(o){throw o}}}throw"WPO: could not parse the JSON"}jQuery(function(s){WP_Optimize_Smush=WP_Optimize_Smush()});var WP_Optimize_Smush=function(){function s(){var s=0==U('input[type="checkbox"]:checked',z).length;K.prop("disabled",s),M.prop("disabled",s)}function e(s,o){if(H){var i=U("#smush-information-modal-cancel-btn .smush-information");I("mark_all_as_uncompressed",{restore_backup:s?1:0,delete_only_backups_meta:o?1:0},function(o){if(H)return o.hasOwnProperty("error")?(x(U("#smush-information-modal"),U.unblockUI),U("#smush-information-modal .smush-information").text(o.error),void a()):void(o.completed?(x(U("#smush-information-modal"),U.unblockUI),U("#smush-information-modal .smush-information").text(o.message),a()):(i.text(o.message),e(s)))})}}function o(){U(this).toggleClass("opened"),U(this).hasClass("opened")?U(this).text(wposmush.less):U(this).text(wposmush.more)}function a(e){var e="undefined"==typeof e||e,o={use_cache:e};P.html("..."),j.hide(),w(!0),I("get_ui_update",o,function(e){O(e,u),f(),w(!1),s()})}function n(){U("#wpo_smush_images_grid input:checked").each(function(){image={attachment_id:U(this).val(),blog_id:U(this).data("blog")},F.push(image)}),data={optimization_id:"smush",selected_images:F,smush_options:{compression_server:U("input[name='compression_server']:checked").val(),image_quality:U("#image_quality").val(),lossy_compression:U("#smush-lossy-compression").is(":checked"),back_up_original:U("#smush-backup-original").is(":checked"),preserve_exif:U("#smush-preserve-exif").is(":checked")}},c(),I("process_bulk_smush",data)}function t(){if(U("#wp-optimize-wrap").length){U("#wpo_smush_images_save_options_spinner").show().delay(3e3).fadeOut(),U("#enable_custom_compression").is(":checked")?(image_quality=U("#custom_compression_slider").val(),lossy_compression=image_quality<100):(image_quality=U("#enable_lossy_compression").is(":checked")?90:100,lossy_compression=image_quality<100);var s={compression_server:U("input[name='compression_server']:checked").val(),image_quality:image_quality,lossy_compression:lossy_compression,back_up_original:U("#smush-backup-original").is(":checked"),back_up_delete_after:U("#smush-backup-delete").is(":checked"),back_up_delete_after_days:U("#smush-backup-delete-days").val(),preserve_exif:U("#smush-preserve-exif").is(":checked"),autosmush:U("#smush-automatically").is(":checked"),show_smush_metabox:U("#smush-show-metabox").is(":checked"),webp_conversion:U("#enable_webp_conversion").is(":checked")};I("update_smush_options",s,function(s){U("#wpo_smush_images_save_options_spinner").hide(),s.hasOwnProperty("saved")&&s.saved?(U("#wpo_smush_images_save_options_done").show().delay(3e3).fadeOut(),S.hide()):(U("#wpo_smush_images_save_options_fail").show().delay(3e3).fadeOut(),S.show())})}}function m(){Z=!0,X++,seconds=X%60+""<10?"0"+X%60:X%60,minutes=parseInt(X/60)+""<10?"0"+parseInt(X/60):parseInt(X/60),U("#smush_stats_timer").text(minutes+":"+seconds),_(X)}function _(s){0==s%3&&r(),0==s%60&&I("process_pending_images",{},function(s){O(s,l)})}function r(s){data={update_ui:!0,use_cache:!1},I("get_ui_update",data,function(s){O(s,l)})}function u(s){if(z.html(""),s&&s.hasOwnProperty("unsmushed_images")){s.unsmushed_images,s.pending_tasks;0==s.unsmushed_images.length&&0==s.pending_tasks&&z.text(wposmush.all_images_compressed).wrapInner("<div class='wpo-fieldgroup'> </div>"),0!=s.pending_tasks&&j.show().find(".red").text(s.pending);var e="post.php?post=",o="&action=edit";for(blog_id in s.unsmushed_images){s.unsmushed_images[blog_id].sort(function(s,e){return s.id-e.id});for(i in s.unsmushed_images[blog_id])s.unsmushed_images[blog_id].hasOwnProperty(i)&&(image=s.unsmushed_images[blog_id][i],g(image,blog_id,s.admin_urls[blog_id]+e+image.id+o))}}}function c(){Z||(x(U("#wpo_smush_images_information_container")),service=U('.compression_server input[type="radio"]:checked + label small').text(),U("#wpo_smush_images_information_server").html(service),U("#smush_stats_pending_images").html("..."),U("#smush_stats_completed_images").html("..."),U("#smush_stats_bytes_saved").html("..."),U("#smush_stats_percent_saved").html("..."),U("#smush_stats_timer").html("..."),B=window.setInterval(m,1e3),w(!0))}function l(s){U("#smush_stats_pending_images").html(s.pending_tasks),U("#smush_stats_completed_images").html(s.completed_task_count),U("#smush_stats_bytes_saved").html(s.bytes_saved),U("#smush_stats_percent_saved").html(s.percent_saved),1==s.smush_complete&&setTimeout(p,1500)}function p(){data={update_ui:!0,use_cache:!1,image_list:F},I("get_ui_update",data,function(s){summary=s.session_stats,0!=s.completed_task_count&&(summary+="<hr>"+s.summary),h(summary)})}function h(s){G||(U("#summary-message").html(s),d(),x(U("#smush-complete-summary")),G=!0)}function d(){X=0,Z=!1,G=!1,F=[],window.clearInterval(B),w(!1)}function g(s,e,o){var i=["wpo_smush_",e,"_",s.id].join("");image_html='<div class="wpo_smush_image" data-filesize="'+s.filesize+'">',image_html+='<a class="button" href="'+o+'" target="_blank"> '+wposmush.view_image+" </a>",image_html+='<input id="'+i+'" type="checkbox" data-blog="'+e+'" class="wpo_smush_image__input" value="'+s.id+'">',image_html+='<label for="'+i+'"></a>',image_html+='<div class="thumbnail">',image_html+='<img class="lazyload" src="'+s.thumb_url+'">',image_html+="</div></label></div>",z.append(image_html)}function f(){features=wposmush.features,service=U("input[name^='compression_server']:checked").val();for(feature in features[service])U("."+feature).prop("disabled",!features[service][feature]);U(".wpo_smush_image").each(function(){U(this).data("filesize")>wposmush.features[service].max_filesize?U(this).hide():U(this).show()})}function w(s){U.each([K,J,N,S,C,q,M],function(e,o){o.prop("disabled",s)}),s?(U("#wpo_smush_images_refresh").hide(),U(".wpo_smush_images_loader").show()):(U("#wpo_smush_images_refresh").show(),U(".wpo_smush_images_loader").hide())}function b(s,e){0!=s.length&&(data={selected_image:s,smush_options:e},x(wposmush.compress_single_image_dialog),I("compress_single_image",data,function(s){O(s,v)}))}function k(s,e){if(0!=e.length){x(wposmush.please_wait,U.unblockUI);var o={blog_id:s,selected_image:e};I("restore_single_image",o,function(s){O(s,v)})}}function v(s){if(s.hasOwnProperty("success")&&s.success){U(".smush-information").text(s.summary),x(U("#smush-information-modal"),U.unblockUI),U(".wpo-toggle-advanced-options.wpo_smush_single_image").removeClass("opened"),y(s.operation,s.summary,s.restore_possible,s);var e=s.blog_id||s.options.blog_id,o=s.image||s.options.attachment_id;L.hasOwnProperty(e)||(L[e]={}),L[e].hasOwnProperty(o)||(L[e][o]={}),"compress"==s.operation?L[e][o]={operation:s.operation,summary:s.summary,restore_possible:s.restore_possible}:L[e][o]={operation:s.operation}}else U(".smush-information").text(s.error_message),x(U("#smush-information-modal"),U.unblockUI)}function y(s,e,o,i){var a=U("#smush_info").closest("#smush-metabox-inside-wrapper");"compress"==s?(U(".wpo_smush_single_image").hide(),U(".wpo_restore_single_image").show(),i&&i.hasOwnProperty("sizes-info")?(U("#smush_info").text(e),U("#wpo_smush_details").html(i["sizes-info"])):(U("#smush_info").text(e),U("#wpo_smush_details").text("").hide()),U(".wpo_smush_mark_single_image").hide(),o?U(".restore_possible").show():U(".restore_possible").hide()):(U(".wpo_smush_single_image").show(),U(".wpo_restore_single_image").hide(),U(".wpo_smush_mark_single_image").show(),U(".wpo_smush_unmark_single_image",a).hide())}function x(s,e){U.blockUI({message:s,onOverlayClick:e,baseZ:160001,css:{width:"400px",padding:"20px",cursor:"pointer"}})}function O(s,e){s&&s.hasOwnProperty("status")&&s.status?e&&e(s):(alert(wposmush.error_unexpected_response),console.log(s))}function I(s,e,o,i){i="undefined"==typeof i||i,e=U.isEmptyObject(e)?{use_cache:!1}:e;var a={action:"updraft_smush_ajax",subaction:s,nonce:wposmush.smush_ajax_nonce,data:e},n={type:"POST",url:ajaxurl,data:a,success:function(s){if(i){try{var e=wpo_parse_json(s)}catch(a){console.log("smush_manager_send_command JSON parse error"),console.log(a),console.log(s),alert(wposmush.error_unexpected_response)}"undefined"!=typeof o&&o(e)}else"undefined"!=typeof o&&o(s)},error:function(s,e,i){console.log("smush_manager_send_command AJAX parse error: "+e+" ("+i+")"),"undefined"!=typeof o?o(s):(console.log(s),alert(wposmush.error_unexpected_response))},dataType:"text"};U.ajax(n)}var U=jQuery,z=(U("#wp-optimize-images-nav-tab-smush"),U("#wpo_smush_images_grid")),P=U("#smush_info_images"),j=U("#wpo_smush_images_pending_tasks_container"),q=U("#wpo_smush_images_pending_tasks_button"),S=U(".wpo-fieldgroup #wpo_smush_images_save_options_button"),C=U("#wpo_smush_images_refresh"),J=U("#wpo_smush_images_select_all"),N=U("#wpo_smush_images_select_none"),W=U("#wpo_smush_clear_stats_btn"),K=U("#wpo_smush_images_btn"),M=U("#wpo_smush_mark_as_compressed"),T=(U(".wpo_smush_single_image .button"),U(".wpo_restore_single_image .button"),U("#wpo_smush_mark_all_as_uncompressed_btn")),A=U("#wpo_smush_restore_all_compressed_images_btn"),E=U(".wpo_smush_get_logs"),Q=U("#wpo_smush_delete_backup_btn"),D=U(".compression_server"),X=0,Z=!1,B=0,F=[],G=!1,H=!1,L={},R=U("#wpo_smush_images_pending_tasks_cancel_button");z.on("click",".thumbnail",function(s){U(this).closest('input[type="checkbox"]').prop("checked",!0)});var V=!1;z.on("mousedown",".thumbnail",function(s){V=s.shiftKey||s.ctrlKey}),z.on("mouseup",".thumbnail",function(s){V=s.shiftKey||s.ctrlKey}),U("#wp-optimize-nav-tab-wrapper__wpo_images .nav-tab").on("click",function(){U(this).is("#wp-optimize-nav-tab-wpo_images-smush")&&a()}),U("#wp-optimize-wrap").on("page-change",function(s,e){"wpo_images"==e.page&&U("#wp-optimize-nav-tab-wrapper__wpo_images .nav-tab-active").is("#wp-optimize-nav-tab-wpo_images-smush")&&a()}),U("#smush-metabox").length>0&&f();var Y=null;z.on("click",".wpo_smush_image",function(e){var o=U('#wpo_smush_images_grid input[type="checkbox"]'),i=U(this).find(".wpo_smush_image__input"),a=!i.prop("checked");if(Y||(U(this).find(".wpo_smush_image__input").prop("checked",a),Y=i),!0===V){var n=o.index(i),t=o.index(Y);n===t?o.slice(Math.min(n,t),Math.max(n,t)+1).prop("checked",a):!0===Y.prop("checked")&&o.slice(Math.min(n,t),Math.max(n,t)+1).prop("checked",a)}Y=i,s()}),s(),D.on("change",function(s){f(),t()}),K.off().on("click",function(){return 0==U('#wpo_smush_images_grid input[type="checkbox"]:checked').length?(U("#smush-information-modal .smush-information").text(wposmush.please_select_images),void x(U("#smush-information-modal"),U.unblockUI)):(U("#smush-information-modal .smush-information").text(wposmush.server_check),x(U("#smush-information-modal")),data={server:U("input[name='compression_server']:checked").val()},void I("check_server_status",data,function(s){s.online?n():(s.error?(error_message=s.error+"<br>"+wposmush.server_error,U("#smush-information-modal .smush-information").html(error_message)):U("#smush-information-modal .smush-information").text(wposmush.server_error),x(U("#smush-information-modal"),U.unblockUI))}))}),M.off().on("click",function(){if(0==U('#wpo_smush_images_grid input[type="checkbox"]:checked').length)return U("#smush-information-modal .smush-information").text(wposmush.please_select_compressed_images),void x(U("#smush-information-modal"),U.unblockUI);var s,e=[];U("#wpo_smush_images_grid input:checked").each(function(){s={attachment_id:U(this).val(),blog_id:U(this).data("blog")},e.push(s)}),x(wposmush.please_updating_images_info),I("mark_as_compressed",{selected_images:e},function(s){U("#smush-information-modal .smush-information").text(s.summary),x(U("#smush-information-modal"),U.unblockUI),a()})}),T.on("click",function(){if(confirm(wposmush.mark_all_images_uncompressed)){var s=confirm(wposmush.restore_images_from_backup);x(U("#smush-information-modal-cancel-btn")),U("#smush-information-modal-cancel-btn .smush-information").text(wposmush.please_wait),H=!0,e(s)}}),A.on("click",function(){confirm(wposmush.restore_all_compressed_images)&&(x(U("#smush-information-modal-cancel-btn")),U("#smush-information-modal-cancel-btn .smush-information").text(wposmush.please_wait),H=!0,e(!0,!0))}),U('#smush-information-modal-cancel-btn input[type="button"]').on("click",function(){H=!1,a(),U.unblockUI()}),C.off().on("click",function(){a()}),J.off().on("click",function(){U('#wpo_smush_images_grid input[type="checkbox"]').prop("checked",!0),Y=null,s()}),N.off().on("click",function(){U('#wpo_smush_images_grid input[type="checkbox"]').prop("checked",!1),Y=null,s()}),E.off().on("click",function(){U("#log-panel").text("Please wait, fetching logs."),I("get_smush_logs",{},function(s){U.blockUI({message:U("#smush-log-modal"),onOverlayClick:U.unblockUI(),css:{width:"80%",height:"80%",top:"15%",left:"15%"}}),U("#log-panel").html("<pre>"+s+"</pre>"),download_link=ajaxurl+"?action=updraft_smush_ajax&subaction=get_smush_logs&nonce="+wposmush.smush_ajax_nonce,U("#smush-log-modal a").attr("href",download_link)},!1)}),Q.on("click",function(){if(confirm(wposmush.delete_image_backup_confirm)){Q.prop("disabled",!0);var s=U("#wpo_smush_delete_backup_spinner"),e=U("#wpo_smush_delete_backup_done");s.show(),I("clean_all_backup_images",{},function(){s.hide(),Q.prop("disabled",!1),e.css("display","inline-block").delay(3e3).fadeOut()})}}),S.off().on("click",function(s){t()}),W.off().on("click",function(s){U("#wpo_smush_images_clear_stats_spinner").show().delay(3e3).fadeOut(),I("clear_smush_stats",{},function(s){U("#wpo_smush_images_clear_stats_spinner").hide(),U("#wpo_smush_images_clear_stats_done").show().delay(3e3).fadeOut()})}),q.off().on("click",function(s){U("#smush-information-modal .smush-information").text(wposmush.server_check),x(U("#smush-information-modal"),U.unblockUI),data={server:U("input[name='compression_server']:checked").val()},I("check_server_status",data,function(s){s.online?(c(),I("process_pending_images",{},function(s){O(s,l)})):(s.error?(error_message=s.error+"<br>"+wposmush.server_error,U("#smush-information-modal .smush-information").html(error_message)):U("#smush-information-modal .smush-information").text(wposmush.server_error),x(U("#smush-information-modal"),U.unblockUI))})}),U("body").on("click","#wpo_smush_images_pending_tasks_cancel_button",function(s){wpoptimize.cancel===R.val()&&(R.val(wpoptimize.cancelling),R.prop("disabled",!0)),I("clear_pending_images",{},function(s){U.unblockUI(),s.status?(a(),d()):console.log("Cancelling pending images apparently failed.",s),R.val(wpoptimize.cancel),R.prop("disabled",!1)})}),U("body").on("click",".wpo_smush_single_image .button",function(){image={attachment_id:U(this).data("id"),blog_id:U(this).data("blog")},U("#enable_custom_compression").is(":checked")?(image_quality=U("#custom_compression_slider").val(),lossy_compression=image_quality<100):(image_quality=U("#enable_lossy_compression").is(":checked")?90:100,lossy_compression=image_quality<100),smush_options={compression_server:U("input[name='compression_server_"+image.attachment_id+"']:checked").val(),image_quality:image_quality,lossy_compression:lossy_compression,back_up_original:U("#smush_backup_"+image.attachment_id).is(":checked"),preserve_exif:U("#smush_exif_"+image.attachment_id).is(":checked")},data={server:U("input[name='compression_server_"+U(this).attr("id").substring(15)+"']:checked").val()},x(wposmush.server_check),I("check_server_status",data,function(s){s.online?b(image,smush_options):s.error?(error_message=s.error+"<br>"+wposmush.server_error,x(error_message,U.unblockUI)):x(wposmush.server_error,U.unblockUI)})}),U("body").on("click",".wpo_restore_single_image .button",function(){var s=U(this);blog_id=s.data("blog"),image_id=s.data("id"),image_id&&blog_id&&k(blog_id,image_id)}),U("body").on("click",".wpo_smush_mark_single_image .button",function(){var s={attachment_id:U(this).data("id"),blog_id:U(this).data("blog")},e=U(this).closest("#smush-metabox-inside-wrapper");x(wposmush.please_updating_images_info),I("mark_as_compressed",{selected_images:[s]},function(s){U("#smush-information-modal .smush-information").text(s.summary),x(U("#smush-information-modal"),U.unblockUI),s.status&&(U(".wpo_smush_single_image",e).hide(),U(".wpo-toggle-advanced-options",e).removeClass("opened"),U(".wpo_smush_mark_single_image",e).hide(),U(".wpo_smush_unmark_single_image",e).show(),U(".wpo_restore_single_image",e).show(),U("#smush_info",e).text(s.info))})}),U("body").on("click",".wpo_smush_unmark_single_image .button",function(){var s={attachment_id:U(this).data("id"),blog_id:U(this).data("blog")},e=U(this).closest("#smush-metabox-inside-wrapper");x(wposmush.please_updating_images_info),I("mark_as_compressed",{selected_images:[s],unmark:!0},function(s){U("#smush-information-modal .smush-information").text(s.summary),x(U("#smush-information-modal"),U.unblockUI),s.status&&(U(".wpo_smush_single_image",e).show(),U(".wpo_smush_mark_single_image",e).show(),U(".wpo_smush_unmark_single_image",e).hide(),U(".wpo_restore_single_image",e).hide(),U("#smush_info",e).text(""))})}),U("body").on("click","#wpo_smush_details .wpo-collapsible",o),U("body").on("click",".column-wpo_smush .wpo-collapsible",o),U("body").on("click","#smush-log-modal .close, #smush-information-modal .information-modal-close",function(){U.unblockUI()}),U("body").on("click",".wpo_smush_stats_cta_btn, .wpo_smush_get_logs, #smush-complete-summary .close",function(){U.unblockUI(),a(),setTimeout(d,500)}),U("body").on("click",".wpo-toggle-advanced-options",function(s){s.preventDefault(),U(this).toggleClass("opened")}),U(".wpo-fieldgroup .autosmush input, .wpo-fieldgroup .compression_level, .wpo-fieldgroup .image_options, #smush-show-metabox, #enable_webp_conversion").on("change",function(s){t()}),U("body").on("change",".smush-options.compression_level",function(){U("#enable_custom_compression").is(":checked")?U(".smush-options.custom_compression").show():U(".smush-options.custom_compression").hide()}),U("body").on("change",'.smush-advanced input[type="radio"]',function(){f()}),U(document).on("admin-metabox-smush-loaded",function(){var s=U('.wpo_restore_single_image input[type="button"]').first().data();if(s&&L.hasOwnProperty(s.blog)&&L[s.blog].hasOwnProperty(s.id)){var e=L[s.blog][s.id];"compress"==e.operation?y(e.operation,e.summary,e.restore_possible,e):y(e.operation)}})};
 
js/wposmush-3-2-5.min.js ADDED
@@ -0,0 +1 @@
 
1
+ function wpo_parse_json(s){if("object"==typeof s)return s;try{var e=JSON.parse(s);return e}catch(o){console.log("WPO: Exception when trying to parse JSON (1) - will attempt to fix/re-parse"),console.log(s)}var i=s.indexOf("{"),a=s.lastIndexOf("}");if(i>-1&&a>-1){var n=s.slice(i,a+1);try{var t=JSON.parse(n);return t}catch(o){console.log("WPO: Exception when trying to parse JSON (2) - will attempt to fix/re-parse based upon bracket counting");for(var m=i,_=0,r="",u=!1;(_>0||m==i)&&m<=a;){var c=s.charAt(m);u||"{"!=c?u||"}"!=c?'"'==c&&"\\"!=r&&(u=!u):_--:_++,r=c,m++}console.log("Started at cursor="+i+", ended at cursor="+m+" with result following:"),console.log(s.substring(i,m));try{var t=JSON.parse(s.substring(i,m));return t}catch(o){throw o}}}throw"WPO: could not parse the JSON"}jQuery(function(s){WP_Optimize_Smush=WP_Optimize_Smush()});var WP_Optimize_Smush=function(){function s(){var s=0==U('input[type="checkbox"]:checked',z).length;K.prop("disabled",s),M.prop("disabled",s)}function e(s,o){if(L){var i=U("#smush-information-modal-cancel-btn .smush-information");I("mark_all_as_uncompressed",{restore_backup:s?1:0,delete_only_backups_meta:o?1:0},function(o){if(L)return o.hasOwnProperty("error")?(x(U("#smush-information-modal"),U.unblockUI),U("#smush-information-modal .smush-information").text(o.error),void a()):void(o.completed?(x(U("#smush-information-modal"),U.unblockUI),U("#smush-information-modal .smush-information").text(o.message),a()):(i.text(o.message),e(s)))})}}function o(){U(this).toggleClass("opened"),U(this).hasClass("opened")?U(this).text(wposmush.less):U(this).text(wposmush.more)}function a(e){var e="undefined"==typeof e||e,o={use_cache:e};P.html("..."),j.hide(),w(!0),I("get_ui_update",o,function(e){O(e,u),f(),w(!1),s()})}function n(){U("#wpo_smush_images_grid input:checked").each(function(){image={attachment_id:U(this).val(),blog_id:U(this).data("blog")},G.push(image)}),data={optimization_id:"smush",selected_images:G,smush_options:{compression_server:U("input[name='compression_server']:checked").val(),image_quality:U("#image_quality").val(),lossy_compression:U("#smush-lossy-compression").is(":checked"),back_up_original:U("#smush-backup-original").is(":checked"),preserve_exif:U("#smush-preserve-exif").is(":checked")}},c(),I("process_bulk_smush",data)}function t(){if(U("#wp-optimize-wrap").length){U("#wpo_smush_images_save_options_spinner").show().delay(3e3).fadeOut(),U("#enable_custom_compression").is(":checked")?image_quality=U("#custom_compression_slider").val():image_quality=U("#enable_lossy_compression").is(":checked")?60:100,lossy_compression=image_quality<100;var s={compression_server:U("input[name='compression_server']:checked").val(),image_quality:image_quality,lossy_compression:lossy_compression,back_up_original:U("#smush-backup-original").is(":checked"),back_up_delete_after:U("#smush-backup-delete").is(":checked"),back_up_delete_after_days:U("#smush-backup-delete-days").val(),preserve_exif:U("#smush-preserve-exif").is(":checked"),autosmush:U("#smush-automatically").is(":checked"),show_smush_metabox:U("#smush-show-metabox").is(":checked"),webp_conversion:U("#enable_webp_conversion").is(":checked")};I("update_smush_options",s,function(s){U("#wpo_smush_images_save_options_spinner").hide(),s.hasOwnProperty("saved")&&s.saved?(U("#wpo_smush_images_save_options_done").show().delay(3e3).fadeOut(),S.hide()):(U("#wpo_smush_images_save_options_fail").show().delay(3e3).fadeOut(),S.show())})}}function m(){Z=!0,X++,seconds=X%60+""<10?"0"+X%60:X%60,minutes=parseInt(X/60)+""<10?"0"+parseInt(X/60):parseInt(X/60),U("#smush_stats_timer").text(minutes+":"+seconds),_(X)}function _(s){0==s%3&&r(),0==s%60&&I("process_pending_images",{},function(s){O(s,l)})}function r(s){data={update_ui:!0,use_cache:!1},I("get_ui_update",data,function(s){O(s,l)})}function u(s){if(z.html(""),s&&s.hasOwnProperty("unsmushed_images")){s.unsmushed_images,s.pending_tasks;0==s.unsmushed_images.length&&0==s.pending_tasks&&z.text(wposmush.all_images_compressed).wrapInner("<div class='wpo-fieldgroup'> </div>"),0!=s.pending_tasks&&j.show().find(".red").text(s.pending);var e="post.php?post=",o="&action=edit";for(blog_id in s.unsmushed_images){s.unsmushed_images[blog_id].sort(function(s,e){return s.id-e.id});for(i in s.unsmushed_images[blog_id])s.unsmushed_images[blog_id].hasOwnProperty(i)&&(image=s.unsmushed_images[blog_id][i],g(image,blog_id,s.admin_urls[blog_id]+e+image.id+o))}}}function c(){Z||(x(U("#wpo_smush_images_information_container")),service=U('.compression_server input[type="radio"]:checked + label small').text(),U("#wpo_smush_images_information_server").html(service),U("#smush_stats_pending_images").html("..."),U("#smush_stats_completed_images").html("..."),U("#smush_stats_bytes_saved").html("..."),U("#smush_stats_percent_saved").html("..."),U("#smush_stats_timer").html("..."),B=window.setInterval(m,1e3),w(!0))}function l(s){U("#smush_stats_pending_images").html(s.pending_tasks),U("#smush_stats_completed_images").html(s.completed_task_count),U("#smush_stats_bytes_saved").html(s.bytes_saved),U("#smush_stats_percent_saved").html(s.percent_saved),1==s.smush_complete&&setTimeout(p,1500)}function p(){data={update_ui:!0,use_cache:!1,image_list:G},I("get_ui_update",data,function(s){summary=s.session_stats,0!=s.completed_task_count&&(summary+="<hr>"+s.summary),h(summary)})}function h(s){H||(U("#summary-message").html(s),d(),x(U("#smush-complete-summary")),H=!0)}function d(){X=0,Z=!1,H=!1,G=[],window.clearInterval(B),w(!1)}function g(s,e,o){var i=["wpo_smush_",e,"_",s.id].join("");image_html='<div class="wpo_smush_image" data-filesize="'+s.filesize+'">',image_html+='<a class="button" href="'+o+'" target="_blank"> '+wposmush.view_image+" </a>",image_html+='<input id="'+i+'" type="checkbox" data-blog="'+e+'" class="wpo_smush_image__input" value="'+s.id+'">',image_html+='<label for="'+i+'"></a>',image_html+='<div class="thumbnail">',image_html+='<img class="lazyload" src="'+s.thumb_url+'">',image_html+="</div></label></div>",z.append(image_html)}function f(){features=wposmush.features,service=U("input[name^='compression_server']:checked").val();for(feature in features[service])U("."+feature).prop("disabled",!features[service][feature]);U(".wpo_smush_image").each(function(){U(this).data("filesize")>wposmush.features[service].max_filesize?U(this).hide():U(this).show()})}function w(s){U.each([K,J,N,S,C,q,M],function(e,o){o.prop("disabled",s)}),s?(U("#wpo_smush_images_refresh").hide(),U(".wpo_smush_images_loader").show()):(U("#wpo_smush_images_refresh").show(),U(".wpo_smush_images_loader").hide())}function b(s,e){0!=s.length&&(data={selected_image:s,smush_options:e},x(wposmush.compress_single_image_dialog),I("compress_single_image",data,function(s){O(s,v)}))}function k(s,e){if(0!=e.length){x(wposmush.please_wait,U.unblockUI);var o={blog_id:s,selected_image:e};I("restore_single_image",o,function(s){O(s,v)})}}function v(s){if(s.hasOwnProperty("success")&&s.success){U(".smush-information").text(s.summary),x(U("#smush-information-modal"),U.unblockUI),U(".wpo-toggle-advanced-options.wpo_smush_single_image").removeClass("opened"),y(s.operation,s.summary,s.restore_possible,s);var e=s.blog_id||s.options.blog_id,o=s.image||s.options.attachment_id;R.hasOwnProperty(e)||(R[e]={}),R[e].hasOwnProperty(o)||(R[e][o]={}),"compress"==s.operation?R[e][o]={operation:s.operation,summary:s.summary,restore_possible:s.restore_possible}:R[e][o]={operation:s.operation}}else U(".smush-information").text(s.error_message),x(U("#smush-information-modal"),U.unblockUI)}function y(s,e,o,i){var a=U("#smush_info").closest("#smush-metabox-inside-wrapper");"compress"==s?(U(".wpo_smush_single_image").hide(),U(".wpo_restore_single_image").show(),i&&i.hasOwnProperty("sizes-info")?(U("#smush_info").text(e),U("#wpo_smush_details").html(i["sizes-info"])):(U("#smush_info").text(e),U("#wpo_smush_details").text("").hide()),U(".wpo_smush_mark_single_image").hide(),o?U(".restore_possible").show():U(".restore_possible").hide()):(U(".wpo_smush_single_image").show(),U(".wpo_restore_single_image").hide(),U(".wpo_smush_mark_single_image").show(),U(".wpo_smush_unmark_single_image",a).hide())}function x(s,e){U.blockUI({message:s,onOverlayClick:e,baseZ:160001,css:{width:"400px",padding:"20px",cursor:"pointer"}})}function O(s,e){s&&s.hasOwnProperty("status")&&s.status?e&&e(s):(alert(wposmush.error_unexpected_response),console.log(s))}function I(s,e,o,i){i="undefined"==typeof i||i,e=U.isEmptyObject(e)?{use_cache:!1}:e;var a={action:"updraft_smush_ajax",subaction:s,nonce:wposmush.smush_ajax_nonce,data:e},n={type:"POST",url:ajaxurl,data:a,success:function(s){if(i){try{var e=wpo_parse_json(s)}catch(a){console.log("smush_manager_send_command JSON parse error"),console.log(a),console.log(s),alert(wposmush.error_unexpected_response)}"undefined"!=typeof o&&o(e)}else"undefined"!=typeof o&&o(s)},error:function(s,e,i){console.log("smush_manager_send_command AJAX parse error: "+e+" ("+i+")"),"undefined"!=typeof o?o(s):(console.log(s),alert(wposmush.error_unexpected_response))},dataType:"text"};U.ajax(n)}var U=jQuery,z=(U("#wp-optimize-images-nav-tab-smush"),U("#wpo_smush_images_grid")),P=U("#smush_info_images"),j=U("#wpo_smush_images_pending_tasks_container"),q=U("#wpo_smush_images_pending_tasks_button"),S=U(".wpo-fieldgroup #wpo_smush_images_save_options_button"),C=U("#wpo_smush_images_refresh"),J=U("#wpo_smush_images_select_all"),N=U("#wpo_smush_images_select_none"),W=U("#wpo_smush_clear_stats_btn"),K=U("#wpo_smush_images_btn"),M=U("#wpo_smush_mark_as_compressed"),T=(U(".wpo_smush_single_image .button"),U(".wpo_restore_single_image .button"),U("#wpo_smush_mark_all_as_uncompressed_btn")),A=U("#wpo_smush_restore_all_compressed_images_btn"),E=U(".wpo_smush_get_logs"),D=U("#wpo_smush_delete_backup_btn"),Q=U(".compression_server"),F=U("#wpo_reset_webp_serving_method"),X=0,Z=!1,B=0,G=[],H=!1,L=!1,R={},V=U("#wpo_smush_images_pending_tasks_cancel_button");z.on("click",".thumbnail",function(s){U(this).closest('input[type="checkbox"]').prop("checked",!0)});var Y=!1;z.on("mousedown",".thumbnail",function(s){Y=s.shiftKey||s.ctrlKey}),z.on("mouseup",".thumbnail",function(s){Y=s.shiftKey||s.ctrlKey}),F.on("click",function(s){s.preventDefault(),I("reset_webp_serving_method",{},function(s){s.success?U("#wpo_reset_webp_serving_method_done").show().delay(3e3).fadeOut():console.log("[Failed] WebP server capability detection")})}),U("#wp-optimize-nav-tab-wrapper__wpo_images .nav-tab").on("click",function(){U(this).is("#wp-optimize-nav-tab-wpo_images-smush")&&a()}),U("#wp-optimize-wrap").on("page-change",function(s,e){"wpo_images"==e.page&&U("#wp-optimize-nav-tab-wrapper__wpo_images .nav-tab-active").is("#wp-optimize-nav-tab-wpo_images-smush")&&a()}),U("#smush-metabox").length>0&&f();var $=null;z.on("click",".wpo_smush_image",function(e){var o=U('#wpo_smush_images_grid input[type="checkbox"]'),i=U(this).find(".wpo_smush_image__input"),a=!i.prop("checked");if($||(U(this).find(".wpo_smush_image__input").prop("checked",a),$=i),!0===Y){var n=o.index(i),t=o.index($);n===t?o.slice(Math.min(n,t),Math.max(n,t)+1).prop("checked",a):!0===$.prop("checked")&&o.slice(Math.min(n,t),Math.max(n,t)+1).prop("checked",a)}$=i,s()}),s(),Q.on("change",function(s){f(),t()}),K.off().on("click",function(){return 0==U('#wpo_smush_images_grid input[type="checkbox"]:checked').length?(U("#smush-information-modal .smush-information").text(wposmush.please_select_images),void x(U("#smush-information-modal"),U.unblockUI)):(U("#smush-information-modal .smush-information").text(wposmush.server_check),x(U("#smush-information-modal")),data={server:U("input[name='compression_server']:checked").val()},void I("check_server_status",data,function(s){s.online?n():(s.error?(error_message=s.error+"<br>"+wposmush.server_error,U("#smush-information-modal .smush-information").html(error_message)):U("#smush-information-modal .smush-information").text(wposmush.server_error),x(U("#smush-information-modal"),U.unblockUI))}))}),M.off().on("click",function(){if(0==U('#wpo_smush_images_grid input[type="checkbox"]:checked').length)return U("#smush-information-modal .smush-information").text(wposmush.please_select_compressed_images),void x(U("#smush-information-modal"),U.unblockUI);var s,e=[];U("#wpo_smush_images_grid input:checked").each(function(){s={attachment_id:U(this).val(),blog_id:U(this).data("blog")},e.push(s)}),x(wposmush.please_updating_images_info),I("mark_as_compressed",{selected_images:e},function(s){U("#smush-information-modal .smush-information").text(s.summary),x(U("#smush-information-modal"),U.unblockUI),a()})}),T.on("click",function(){if(confirm(wposmush.mark_all_images_uncompressed)){var s=confirm(wposmush.restore_images_from_backup);x(U("#smush-information-modal-cancel-btn")),U("#smush-information-modal-cancel-btn .smush-information").text(wposmush.please_wait),L=!0,e(s)}}),A.on("click",function(){confirm(wposmush.restore_all_compressed_images)&&(x(U("#smush-information-modal-cancel-btn")),U("#smush-information-modal-cancel-btn .smush-information").text(wposmush.please_wait),L=!0,e(!0,!0))}),U('#smush-information-modal-cancel-btn input[type="button"]').on("click",function(){L=!1,a(),U.unblockUI()}),C.off().on("click",function(){a()}),J.off().on("click",function(){U('#wpo_smush_images_grid input[type="checkbox"]').prop("checked",!0),$=null,s()}),N.off().on("click",function(){U('#wpo_smush_images_grid input[type="checkbox"]').prop("checked",!1),$=null,s()}),E.off().on("click",function(){U("#log-panel").text("Please wait, fetching logs."),I("get_smush_logs",{},function(s){U.blockUI({message:U("#smush-log-modal"),onOverlayClick:U.unblockUI(),css:{width:"80%",height:"80%",top:"15%",left:"15%"}}),U("#log-panel").html("<pre>"+s+"</pre>"),download_link=ajaxurl+"?action=updraft_smush_ajax&subaction=get_smush_logs&nonce="+wposmush.smush_ajax_nonce,U("#smush-log-modal a").attr("href",download_link)},!1)}),D.on("click",function(){if(confirm(wposmush.delete_image_backup_confirm)){D.prop("disabled",!0);var s=U("#wpo_smush_delete_backup_spinner"),e=U("#wpo_smush_delete_backup_done");s.show(),I("clean_all_backup_images",{},function(){s.hide(),D.prop("disabled",!1),e.css("display","inline-block").delay(3e3).fadeOut()})}}),S.off().on("click",function(s){t()}),W.off().on("click",function(s){U("#wpo_smush_images_clear_stats_spinner").show().delay(3e3).fadeOut(),I("clear_smush_stats",{},function(s){U("#wpo_smush_images_clear_stats_spinner").hide(),U("#wpo_smush_images_clear_stats_done").show().delay(3e3).fadeOut()})}),q.off().on("click",function(s){U("#smush-information-modal .smush-information").text(wposmush.server_check),x(U("#smush-information-modal"),U.unblockUI),data={server:U("input[name='compression_server']:checked").val()},I("check_server_status",data,function(s){s.online?(c(),I("process_pending_images",{},function(s){O(s,l)})):(s.error?(error_message=s.error+"<br>"+wposmush.server_error,U("#smush-information-modal .smush-information").html(error_message)):U("#smush-information-modal .smush-information").text(wposmush.server_error),x(U("#smush-information-modal"),U.unblockUI))})}),U("body").on("click","#wpo_smush_images_pending_tasks_cancel_button",function(s){wpoptimize.cancel===V.val()&&(V.val(wpoptimize.cancelling),V.prop("disabled",!0)),I("clear_pending_images",{},function(s){U.unblockUI(),s.status?(a(),d()):console.log("Cancelling pending images apparently failed.",s),V.val(wpoptimize.cancel),V.prop("disabled",!1)})}),U("body").on("click",".wpo_smush_single_image .button",function(){image={attachment_id:U(this).data("id"),blog_id:U(this).data("blog")},U("#enable_custom_compression").is(":checked")?image_quality=U("#custom_compression_slider").val():image_quality=U("#enable_lossy_compression").is(":checked")?60:100,lossy_compression=image_quality<100,smush_options={compression_server:U("input[name='compression_server_"+image.attachment_id+"']:checked").val(),image_quality:image_quality,lossy_compression:lossy_compression,back_up_original:U("#smush_backup_"+image.attachment_id).is(":checked"),preserve_exif:U("#smush_exif_"+image.attachment_id).is(":checked")},data={server:U("input[name='compression_server_"+U(this).attr("id").substring(15)+"']:checked").val()},x(wposmush.server_check),I("check_server_status",data,function(s){s.online?b(image,smush_options):s.error?(error_message=s.error+"<br>"+wposmush.server_error,x(error_message,U.unblockUI)):x(wposmush.server_error,U.unblockUI)})}),U("body").on("click",".wpo_restore_single_image .button",function(){var s=U(this);blog_id=s.data("blog"),image_id=s.data("id"),image_id&&blog_id&&k(blog_id,image_id)}),U("body").on("click",".wpo_smush_mark_single_image .button",function(){var s={attachment_id:U(this).data("id"),blog_id:U(this).data("blog")},e=U(this).closest("#smush-metabox-inside-wrapper");x(wposmush.please_updating_images_info),I("mark_as_compressed",{selected_images:[s]},function(s){U("#smush-information-modal .smush-information").text(s.summary),x(U("#smush-information-modal"),U.unblockUI),s.status&&(U(".wpo_smush_single_image",e).hide(),U(".wpo-toggle-advanced-options",e).removeClass("opened"),U(".wpo_smush_mark_single_image",e).hide(),U(".wpo_smush_unmark_single_image",e).show(),U(".wpo_restore_single_image",e).show(),U("#smush_info",e).text(s.info))})}),U("body").on("click",".wpo_smush_unmark_single_image .button",function(){var s={attachment_id:U(this).data("id"),blog_id:U(this).data("blog")},e=U(this).closest("#smush-metabox-inside-wrapper");x(wposmush.please_updating_images_info),I("mark_as_compressed",{selected_images:[s],unmark:!0},function(s){U("#smush-information-modal .smush-information").text(s.summary),x(U("#smush-information-modal"),U.unblockUI),s.status&&(U(".wpo_smush_single_image",e).show(),U(".wpo_smush_mark_single_image",e).show(),U(".wpo_smush_unmark_single_image",e).hide(),U(".wpo_restore_single_image",e).hide(),U("#smush_info",e).text(""))})}),U("body").on("click","#wpo_smush_details .wpo-collapsible",o),U("body").on("click",".column-wpo_smush .wpo-collapsible",o),U("body").on("click","#smush-log-modal .close, #smush-information-modal .information-modal-close",function(){U.unblockUI()}),U("body").on("click",".wpo_smush_stats_cta_btn, .wpo_smush_get_logs, #smush-complete-summary .close",function(){U.unblockUI(),a(),setTimeout(d,500)}),U("body").on("click",".wpo-toggle-advanced-options",function(s){s.preventDefault(),U(this).toggleClass("opened")}),U(".wpo-fieldgroup .autosmush input, .wpo-fieldgroup .compression_level, .wpo-fieldgroup .image_options, #smush-show-metabox, #enable_webp_conversion").on("change",function(s){t()}),U("body").on("change",".smush-options.compression_level",function(){U("#enable_custom_compression").is(":checked")?U(".smush-options.custom_compression").show():U(".smush-options.custom_compression").hide()}),U("body").on("change",'.smush-advanced input[type="radio"]',function(){f()}),U(document).on("admin-metabox-smush-loaded",function(){var s=U('.wpo_restore_single_image input[type="button"]').first().data();if(s&&R.hasOwnProperty(s.blog)&&R[s.blog].hasOwnProperty(s.id)){var e=R[s.blog][s.id];"compress"==e.operation?y(e.operation,e.summary,e.restore_possible,e):y(e.operation)}})};
js/wposmush.js CHANGED
@@ -28,6 +28,7 @@ var WP_Optimize_Smush = function() {
28
  smush_view_logs_btn = $('.wpo_smush_get_logs'),
29
  smush_delete_backup_images_btn = $('#wpo_smush_delete_backup_btn'),
30
  compression_server_select = $('.compression_server'),
 
31
  smush_images_tab_loaded = false,
32
  smush_service_features = [],
33
  smush_total_seconds = 0,
@@ -62,6 +63,18 @@ var WP_Optimize_Smush = function() {
62
  ctrl_shift_on_image_held = e.shiftKey || e.ctrlKey;
63
  });
64
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  /**
66
  * Checks if smush is active and loads images if yes - image tabs change.
67
  */
@@ -415,12 +428,11 @@ var WP_Optimize_Smush = function() {
415
 
416
  if ($('#enable_custom_compression').is(":checked")) {
417
  image_quality = $('#custom_compression_slider').val();
418
- lossy_compression = image_quality < 100 ? true : false;
419
  } else {
420
- // The '90' here has to be kept in sync with WP_Optimize::admin_page_wpo_images_smush()
421
- image_quality = $('#enable_lossy_compression').is(":checked") ? 90 : 100;
422
- lossy_compression = image_quality < 100 ? true : false;
423
  }
 
424
 
425
  smush_options = {
426
  'compression_server': $("input[name='compression_server_" + image.attachment_id + "']:checked").val(),
@@ -625,12 +637,11 @@ var WP_Optimize_Smush = function() {
625
 
626
  if ($('#enable_custom_compression').is(":checked")) {
627
  image_quality = $('#custom_compression_slider').val();
628
- lossy_compression = image_quality < 100 ? true : false;
629
  } else {
630
  // The '90' here has to be kept in sync with WP_Optimize::admin_page_wpo_images_smush()
631
- image_quality = $('#enable_lossy_compression').is(":checked") ? 90 : 100;
632
- lossy_compression = image_quality < 100 ? true : false;
633
  }
 
634
 
635
  var smush_options = {
636
  'compression_server': $("input[name='compression_server']:checked").val(),
28
  smush_view_logs_btn = $('.wpo_smush_get_logs'),
29
  smush_delete_backup_images_btn = $('#wpo_smush_delete_backup_btn'),
30
  compression_server_select = $('.compression_server'),
31
+ reset_webp_serving_method_btn = $('#wpo_reset_webp_serving_method'),
32
  smush_images_tab_loaded = false,
33
  smush_service_features = [],
34
  smush_total_seconds = 0,
63
  ctrl_shift_on_image_held = e.shiftKey || e.ctrlKey;
64
  });
65
 
66
+ // Resets server rewrite capability
67
+ reset_webp_serving_method_btn.on('click', function(e) {
68
+ e.preventDefault();
69
+ smush_manager_send_command('reset_webp_serving_method', {}, function(resp) {
70
+ if (!resp.success) {
71
+ console.log('[Failed] WebP server capability detection');
72
+ } else {
73
+ $('#wpo_reset_webp_serving_method_done').show().delay(3000).fadeOut();
74
+ }
75
+ });
76
+ });
77
+
78
  /**
79
  * Checks if smush is active and loads images if yes - image tabs change.
80
  */
428
 
429
  if ($('#enable_custom_compression').is(":checked")) {
430
  image_quality = $('#custom_compression_slider').val();
 
431
  } else {
432
+ // The '60' here has to be kept in sync with WP_Optimize::admin_page_wpo_images_smush()
433
+ image_quality = $('#enable_lossy_compression').is(":checked") ? 60 : 100;
 
434
  }
435
+ lossy_compression = image_quality < 100 ? true : false;
436
 
437
  smush_options = {
438
  'compression_server': $("input[name='compression_server_" + image.attachment_id + "']:checked").val(),
637
 
638
  if ($('#enable_custom_compression').is(":checked")) {
639
  image_quality = $('#custom_compression_slider').val();
 
640
  } else {
641
  // The '90' here has to be kept in sync with WP_Optimize::admin_page_wpo_images_smush()
642
+ image_quality = $('#enable_lossy_compression').is(":checked") ? 60 : 100;
 
643
  }
644
+ lossy_compression = image_quality < 100 ? true : false;
645
 
646
  var smush_options = {
647
  'compression_server': $("input[name='compression_server']:checked").val(),
languages/wp-optimize.pot CHANGED
@@ -17,184 +17,188 @@ msgstr ""
17
  "X-Poedit-SearchPathExcluded-0: *.js\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
- #: src/cache/class-cache-commands.php:62
21
  msgid "Page caching was disabled, but with some warnings:"
22
  msgstr ""
23
 
24
- #: src/cache/class-cache-commands.php:82
25
  msgid "Page caching was enabled, but with some warnings:"
26
  msgstr ""
27
 
28
- #: src/cache/class-cache-commands.php:127
29
  msgid "Caching is enabled"
30
  msgstr ""
31
 
32
- #: src/cache/class-cache-commands.php:127
33
  msgid "Caching is disabled"
34
  msgstr ""
35
 
36
- #: src/cache/class-cache-commands.php:130
37
  msgid "Current cache size: %s"
38
  msgstr ""
39
 
40
- #: src/cache/class-cache-commands.php:131
41
  msgid "Number of files: %s"
42
  msgstr ""
43
 
44
- #: src/cache/class-cache-commands.php:168, src/minify/class-wp-optimize-minify-commands.php:73
45
  msgid "You do not have permission to purge the cache"
46
  msgstr ""
47
 
48
- #: src/cache/class-cache-commands.php:193
49
  msgid "Page cache purged successfully"
50
  msgstr ""
51
 
52
- #: src/cache/class-cache-commands.php:217
53
  msgid "Preloading is currently running in another process."
54
  msgstr ""
55
 
56
- #: src/cache/class-cache-commands.php:224
57
  msgid "All URLs were preloaded into cache successfully"
58
  msgstr ""
59
 
60
- #: src/cache/class-cache-commands.php:227
61
  msgid "Preloading URLs into cache..."
62
  msgstr ""
63
 
64
- #: src/cache/class-cache-commands.php:287
65
  msgid "Page cache settings updated successfully."
66
  msgstr ""
67
 
68
- #: src/cache/class-wpo-cache-config.php:183
69
- msgid "The cache configuration file could not be saved to the disk; please check the file/folder permissions of %s ."
70
- msgstr ""
71
-
72
- #: src/cache/class-wpo-cache-preloader.php:186
73
  msgid "Creating tasks for preload site urls."
74
  msgstr ""
75
 
76
- #: src/cache/class-wpo-cache-preloader.php:202
77
  msgid "Tasks for preload site urls created."
78
  msgstr ""
79
 
80
- #: src/cache/class-wpo-cache-preloader.php:280, src/includes/class-wpo-preloader.php:356
81
  msgid "%d url found."
82
  msgid_plural "%d urls found."
83
  msgstr[0] ""
84
  msgstr[1] ""
85
 
86
- #: src/cache/class-wpo-cache-preloader.php:646
87
  msgid "Page cache is disabled."
88
  msgstr ""
89
 
90
- #: src/cache/class-wpo-cache-preloader.php:658
91
  msgid "Probably page cache preload is running already."
92
  msgstr ""
93
 
94
- #: src/cache/class-wpo-cache-preloader.php:669, src/minify/class-wpo-minify-preloader.php:132, src/wp-optimize.php:1297
95
  msgid "Loading URLs..."
96
  msgstr ""
97
 
98
- #: src/cache/class-wpo-cache-preloader.php:678, src/minify/class-wpo-minify-preloader.php:141
99
  msgid "Last preload finished at %s"
100
  msgstr ""
101
 
102
- #: src/cache/class-wpo-page-cache.php:170, src/wp-optimize.php:839
 
 
 
 
103
  msgid "Page cache"
104
  msgstr ""
105
 
106
- #: src/cache/class-wpo-page-cache.php:171, src/minify/class-wp-optimize-minify.php:70
107
  msgid "Cache size:"
108
  msgstr ""
109
 
110
- #: src/cache/class-wpo-page-cache.php:171
111
  msgid "(%d files)"
112
  msgstr ""
113
 
114
- #: src/cache/class-wpo-page-cache.php:184, src/cache/class-wpo-page-cache.php:187
115
  msgid "Purge cache for all pages"
116
  msgstr ""
117
 
118
- #: src/cache/class-wpo-page-cache.php:195, src/cache/class-wpo-page-cache.php:198
119
  msgid "Purge cache for this page"
120
  msgstr ""
121
 
122
- #: src/cache/class-wpo-page-cache.php:258, src/cache/class-wpo-page-cache.php:272
123
  msgid "The page cache was successfully purged."
124
  msgstr ""
125
 
126
- #: src/cache/class-wpo-page-cache.php:265, src/cache/class-wpo-page-cache.php:279
127
  msgid "The page cache was not purged."
128
  msgstr ""
129
 
130
- #: src/cache/class-wpo-page-cache.php:345, src/cache/class-wpo-page-cache.php:1223
131
  msgid "Please check file and directory permissions on the file paths up to this point, and your PHP error log."
132
  msgstr ""
133
 
134
- #: src/cache/class-wpo-page-cache.php:348
135
  msgid "1. Please navigate, via FTP, to the folder - %s"
136
  msgstr ""
137
 
138
- #: src/cache/class-wpo-page-cache.php:349
139
  msgid "2. Edit or create a file with the name advanced-cache.php"
140
  msgstr ""
141
 
142
- #: src/cache/class-wpo-page-cache.php:350
143
  msgid "3. Copy and paste the following lines into the file:"
144
  msgstr ""
145
 
146
- #: src/cache/class-wpo-page-cache.php:387
147
  msgid "Could not turn off the WP_CACHE constant in wp-config.php"
148
  msgstr ""
149
 
150
- #: src/cache/class-wpo-page-cache.php:397
151
  msgid "The request to the filesystem to remove or empty advanced-cache.php failed"
152
  msgstr ""
153
 
154
- #: src/cache/class-wpo-page-cache.php:403
155
  msgid "The page caching could not be disabled: the WP_CACHE constant could not be removed from wp-config.php and the request to the filesystem to remove or empty advanced-cache.php failed."
156
  msgstr ""
157
 
158
- #: src/cache/class-wpo-page-cache.php:666
159
  msgid "The file advanced-cache.php needs to be updated, but the automatic process failed."
160
  msgstr ""
161
 
162
- #: src/cache/class-wpo-page-cache.php:667
163
  msgid "Please try to disable and then re-enable the WP-Optimize cache manually."
164
  msgstr ""
165
 
166
- #: src/cache/class-wpo-page-cache.php:765
167
  msgid "Unable to write to or find wp-config.php; please check file/folder permissions."
168
  msgstr ""
169
 
170
- #: src/cache/class-wpo-page-cache.php:773
171
  msgid "Unable to write the file advanced-cache.php inside the wp-content folder; please check file/folder permissions"
172
  msgstr ""
173
 
174
- #: src/cache/class-wpo-page-cache.php:780
175
  msgid "Unable to write inside the cache files folder (%s); please check file/folder permissions (no cache files will be able to be created otherwise)"
176
  msgstr ""
177
 
178
- #: src/cache/class-wpo-page-cache.php:793
179
  msgid "Unable to write inside the cache configuration folder (%s); please check file/folder permissions"
180
  msgstr ""
181
 
182
- #: src/cache/class-wpo-page-cache.php:1194, src/cache/class-wpo-page-cache.php:1215
183
  msgid "WP-Optimize:"
184
  msgstr ""
185
 
186
- #: src/cache/class-wpo-page-cache.php:1194
187
  msgid "Please disable the feature \"Gzip compression\" in PageSpeed Ninja to prevent conflicts."
188
  msgstr ""
189
 
190
- #: src/cache/class-wpo-page-cache.php:1215
191
  msgid "Please disable the feature \"Gzip compression\" in Far Future Expiration to prevent conflicts."
192
  msgstr ""
193
 
194
- #: src/cache/class-wpo-page-cache.php:1222
195
  msgid "The request to write the file %s failed."
196
  msgstr ""
197
 
 
 
 
 
198
  #: src/cache/file-based-page-cache-functions.php:32
199
  msgid "Output is too small (less than %d bytes) to be worth caching"
200
  msgstr ""
@@ -203,80 +207,60 @@ msgstr ""
203
  msgid "User is logged in"
204
  msgstr ""
205
 
206
- #: src/cache/file-based-page-cache-functions.php:47
207
  msgid "WP-O cache parent directory was not found"
208
  msgstr ""
209
 
210
- #: src/cache/file-based-page-cache-functions.php:51
211
  msgid "WP-O cache directory was not found"
212
  msgstr ""
213
 
214
- #: src/cache/file-based-page-cache-functions.php:62
215
  msgid "Comments are opened and the visitor saved his information."
216
  msgstr ""
217
 
218
- #: src/cache/file-based-page-cache-functions.php:82
219
  msgid "wpo_can_cache_page filter forbade it"
220
  msgstr ""
221
 
222
- #: src/cache/file-based-page-cache-functions.php:84
223
  msgid "DONOTCACHEPAGE constant forbade it and wpo_can_cache_page filter did not over-ride it"
224
  msgstr ""
225
 
226
- #: src/cache/file-based-page-cache-functions.php:89
227
  msgid "This is a REST API request (identified by REST_REQUEST constant)"
228
  msgstr ""
229
 
230
- #: src/cache/file-based-page-cache-functions.php:95
231
  msgid "This page has a fatal error"
232
  msgstr ""
233
 
234
- #: src/cache/file-based-page-cache-functions.php:99
235
  msgid "This page has a critical error (HTTP code %s)"
236
  msgstr ""
237
 
238
- #: src/cache/file-based-page-cache-functions.php:101
239
  msgid "This page returned an HTTP unauthorised response code (%s)"
240
  msgstr ""
241
 
242
- #: src/cache/file-based-page-cache-functions.php:120
243
  msgid "Attempt to create subfolder within cache directory failed"
244
  msgstr ""
245
 
246
- #: src/cache/file-based-page-cache-functions.php:264
247
  msgid "Page type is not cacheable (search, 404 or password-protected)"
248
  msgstr ""
249
 
250
- #: src/cache/file-based-page-cache-functions.php:270
251
  msgid "In the settings, caching is disabled for the front page"
252
  msgstr ""
253
 
254
- #: src/cache/file-based-page-cache-functions.php:280
255
  msgid "We don't cache RSS feeds"
256
  msgstr ""
257
 
258
- #: src/includes/class-commands.php:200, src/includes/class-commands.php:248, src/includes/class-commands.php:290
259
- msgid "No optimization was indicated."
260
- msgstr ""
261
-
262
- #: src/includes/class-commands.php:428
263
- msgid "We could not determine if Gzip compression is enabled."
264
- msgstr ""
265
-
266
- #: src/includes/class-commands.php:440, src/includes/class-commands.php:449
267
- msgid "Please upload a valid settings file."
268
- msgstr ""
269
-
270
- #: src/includes/class-commands.php:513
271
- msgid "No such command found"
272
- msgstr ""
273
-
274
- #: src/includes/class-commands.php:519
275
- msgid "No tweak provided"
276
- msgstr ""
277
-
278
- #: src/includes/class-commands.php:538
279
- msgid "The command %s failed"
280
  msgstr ""
281
 
282
  #: src/includes/class-updraft-abstract-logger.php:82
@@ -295,7 +279,7 @@ msgstr ""
295
  msgid "Log events into a log file"
296
  msgstr ""
297
 
298
- #: src/includes/class-updraft-php-logger.php:25
299
  msgid "Log events into the PHP error log"
300
  msgstr ""
301
 
@@ -307,239 +291,239 @@ msgstr ""
307
  msgid "How many last records store?"
308
  msgstr ""
309
 
310
- #: src/includes/class-updraft-smush-manager-commands.php:63, src/includes/class-updraft-smush-manager.php:297
311
  msgid "The blog ID provided does not match the current blog."
312
  msgstr ""
313
 
314
- #: src/includes/class-updraft-smush-manager-commands.php:132
315
  msgid "The image was restored successfully"
316
  msgstr ""
317
 
318
- #: src/includes/class-updraft-smush-manager-commands.php:173
319
  msgid "Since your compression statistics were last reset, a total of %d image(s) were compressed on this site, saving approximately %s of space at an average of %02d percent per image."
320
  msgstr ""
321
 
322
- #: src/includes/class-updraft-smush-manager-commands.php:174
323
  msgid "%d image(s) could not be compressed. Please see the logs for more information, or try again later."
324
  msgstr ""
325
 
326
- #: src/includes/class-updraft-smush-manager-commands.php:175
327
  msgid "%d image(s) images were selected for compressing previously, but were not all processed. You can either complete them now or cancel and retry later."
328
  msgstr ""
329
 
330
- #: src/includes/class-updraft-smush-manager-commands.php:184
331
  msgid "A total of %d image(s) were successfully compressed in this iteration. "
332
  msgstr ""
333
 
334
- #: src/includes/class-updraft-smush-manager-commands.php:188
335
  msgid "%d selected image(s) could not be compressed. Please see the logs for more information, you may try again later."
336
  msgstr ""
337
 
338
- #: src/includes/class-updraft-smush-manager-commands.php:218
339
  msgid "Options could not be updated"
340
  msgstr ""
341
 
342
- #: src/includes/class-updraft-smush-manager-commands.php:224
343
  msgid "Options updated successfully"
344
  msgstr ""
345
 
346
- #: src/includes/class-updraft-smush-manager-commands.php:239
347
  msgid "Stats could not be cleared"
348
  msgstr ""
349
 
350
- #: src/includes/class-updraft-smush-manager-commands.php:244
351
  msgid "Stats cleared successfully"
352
  msgstr ""
353
 
354
- #: src/includes/class-updraft-smush-manager-commands.php:284
355
  msgid "Pending tasks could not be cleared"
356
  msgstr ""
357
 
358
- #: src/includes/class-updraft-smush-manager-commands.php:289
359
  msgid "Pending tasks cleared successfully"
360
  msgstr ""
361
 
362
- #: src/includes/class-updraft-smush-manager-commands.php:312
363
  msgid "This image is marked as already compressed by another tool."
364
  msgstr ""
365
 
366
- #: src/includes/class-updraft-smush-manager-commands.php:335
367
  msgid "The selected image was successfully marked as uncompressed"
368
  msgid_plural "The selected images were successfully marked as uncompressed"
369
  msgstr[0] ""
370
  msgstr[1] ""
371
 
372
- #: src/includes/class-updraft-smush-manager-commands.php:337
373
  msgid "The selected image was successfully marked as compressed"
374
  msgid_plural "The selected images were successfully marked as compressed"
375
  msgstr[0] ""
376
  msgstr[1] ""
377
 
378
- #: src/includes/class-updraft-smush-manager-commands.php:364, src/includes/class-updraft-smush-manager-commands.php:388, src/includes/class-updraft-smush-manager.php:449
379
  msgid "All the compressed images were successfully restored."
380
  msgstr ""
381
 
382
- #: src/includes/class-updraft-smush-manager-commands.php:390, src/includes/class-updraft-smush-manager.php:455
383
  msgid "All the compressed images were successfully marked as uncompressed."
384
  msgstr ""
385
 
386
- #: src/includes/class-updraft-smush-manager-commands.php:432
387
  msgid "Log file does not exist or could not be read"
388
  msgstr ""
389
 
390
- #: src/includes/class-updraft-smush-manager.php:130
391
  msgid "The file was either compressed using another tool or marked as compressed"
392
  msgstr ""
393
 
394
- #: src/includes/class-updraft-smush-manager.php:138, src/includes/class-updraft-smush-task.php:287
395
  msgid "The file was compressed to %s using WP-Optimize"
396
  msgstr ""
397
 
398
- #: src/includes/class-updraft-smush-manager.php:141
399
  msgid "The file was compressed from %s to %s, saving %s percent, using WP-Optimize"
400
  msgstr ""
401
 
402
- #: src/includes/class-updraft-smush-manager.php:343
403
  msgid "The backup was not found; it may have been deleted or was already restored"
404
  msgstr ""
405
 
406
- #: src/includes/class-updraft-smush-manager.php:345
407
  msgid "The destination could not be written to."
408
  msgstr ""
409
 
410
- #: src/includes/class-updraft-smush-manager.php:345
411
  msgid "Please check your folder's permissions"
412
  msgstr ""
413
 
414
- #: src/includes/class-updraft-smush-manager.php:347
415
  msgid "The file could not be copied; check your PHP error logs for details"
416
  msgstr ""
417
 
418
- #: src/includes/class-updraft-smush-manager.php:349
419
  msgid "The backup file %s could not be deleted."
420
  msgstr ""
421
 
422
- #: src/includes/class-updraft-smush-manager.php:433
423
  msgid "%s compressed images were restored from their backup for the site %s"
424
  msgstr ""
425
 
426
- #: src/includes/class-updraft-smush-manager.php:435
427
  msgid "%s compressed images were restored from their backup"
428
  msgstr ""
429
 
430
- #: src/includes/class-updraft-smush-manager.php:447
431
  msgid "All the compressed images for the site %s were successfully restored."
432
  msgstr ""
433
 
434
- #: src/includes/class-updraft-smush-manager.php:453
435
  msgid "All the compressed images for the site %s were successfully marked as uncompressed."
436
  msgstr ""
437
 
438
- #: src/includes/class-updraft-smush-manager.php:713
439
  msgid "No uncompressed images were found."
440
  msgstr ""
441
 
442
- #: src/includes/class-updraft-smush-manager.php:714
443
  msgid "An unexpected response was received from the server. More information has been logged in the browser console."
444
  msgstr ""
445
 
446
- #: src/includes/class-updraft-smush-manager.php:715
447
  msgid "Please wait: compressing the selected image."
448
  msgstr ""
449
 
450
- #: src/includes/class-updraft-smush-manager.php:716
451
  msgid "Please try again later."
452
  msgstr ""
453
 
454
- #: src/includes/class-updraft-smush-manager.php:717
455
  msgid "Connecting to the Smush API server, please wait"
456
  msgstr ""
457
 
458
- #: src/includes/class-updraft-smush-manager.php:718
459
  msgid "Please wait while the request is being processed"
460
  msgstr ""
461
 
462
- #: src/includes/class-updraft-smush-manager.php:719
463
  msgid "There was an error connecting to the image compression server. This could mean either the server is temporarily unavailable or there are connectivity issues with your internet connection. Please try later."
464
  msgstr ""
465
 
466
- #: src/includes/class-updraft-smush-manager.php:720
467
  msgid "Please select the images you want compressed from the \"Uncompressed images\" panel first"
468
  msgstr ""
469
 
470
- #: src/includes/class-updraft-smush-manager.php:721
471
  msgid "Please wait: updating information about the selected image."
472
  msgstr ""
473
 
474
- #: src/includes/class-updraft-smush-manager.php:722
475
  msgid "Please select the images you want to mark as already compressed from the \"Uncompressed images\" panel first"
476
  msgstr ""
477
 
478
- #: src/includes/class-updraft-smush-manager.php:723
479
  msgid "View Image"
480
  msgstr ""
481
 
482
- #: src/includes/class-updraft-smush-manager.php:724
483
  msgid "Do you really want to delete all backup images now? This action is irreversible."
484
  msgstr ""
485
 
486
- #: src/includes/class-updraft-smush-manager.php:725
487
  msgid "Do you really want to mark all the images as uncompressed? This action is irreversible."
488
  msgstr ""
489
 
490
- #: src/includes/class-updraft-smush-manager.php:726
491
  msgid "Do you want to restore the original images from the backup (where they exist?)"
492
  msgstr ""
493
 
494
- #: src/includes/class-updraft-smush-manager.php:727
495
  msgid "Do you really want to restore all the compressed images?"
496
  msgstr ""
497
 
498
- #: src/includes/class-updraft-smush-manager.php:728, src/templates/images/smush-details.php:2
499
  msgid "More"
500
  msgstr ""
501
 
502
- #: src/includes/class-updraft-smush-manager.php:729
503
  msgid "Less"
504
  msgstr ""
505
 
506
- #: src/includes/class-updraft-smush-manager.php:746
507
  msgid "Compress Image"
508
  msgstr ""
509
 
510
- #: src/includes/class-updraft-smush-manager.php:1529
511
  msgid "Compress image"
512
  msgstr ""
513
 
514
- #: src/includes/class-updraft-smush-task.php:290
515
  msgid "The file was compressed from %s to %s saving %s percent using WP-Optimize"
516
  msgstr ""
517
 
518
- #: src/includes/class-updraft-smush-task.php:329
519
  msgid "Failed with error code %s - %s"
520
  msgstr ""
521
 
522
- #: src/includes/class-updraft-smush-task.php:355
523
  msgid "Initialised"
524
  msgstr ""
525
 
526
- #: src/includes/class-updraft-smush-task.php:356
527
  msgid "Connecting to API server"
528
  msgstr ""
529
 
530
- #: src/includes/class-updraft-smush-task.php:357
531
  msgid "Processing response"
532
  msgstr ""
533
 
534
- #: src/includes/class-updraft-smush-task.php:358
535
  msgid "Backing up original image"
536
  msgstr ""
537
 
538
- #: src/includes/class-updraft-smush-task.php:359
539
  msgid "Saving optimized image"
540
  msgstr ""
541
 
542
- #: src/includes/class-updraft-smush-task.php:360
543
  msgid "Successful"
544
  msgstr ""
545
 
@@ -547,212 +531,376 @@ msgstr ""
547
  msgid "Preview found items"
548
  msgstr ""
549
 
550
- #: src/includes/class-wp-optimize-browser-cache.php:57
551
- msgid "We successfully updated your .htaccess file. But it seems one of Apache modules - mod_expires or mod_headers is not active."
552
  msgstr ""
553
 
554
- #: src/includes/class-wp-optimize-browser-cache.php:125
555
- msgid "Browser static caching settings already exists in the .htaccess file"
556
  msgstr ""
557
 
558
- #: src/includes/class-wp-optimize-browser-cache.php:168
559
- msgid "We successfully updated your .htaccess file."
560
  msgstr ""
561
 
562
- #: src/includes/class-wp-optimize-browser-cache.php:175, src/includes/class-wp-optimize-gzip-compression.php:209
563
- msgid "We can't update your %s file. Please try to add following lines manually:"
564
  msgstr ""
565
 
566
- #: src/includes/class-wp-optimize-browser-cache.php:180, src/includes/class-wp-optimize-gzip-compression.php:207
567
- msgid "We can't update your %s file. Please try to remove following lines manually:"
568
  msgstr ""
569
 
570
- #: src/includes/class-wp-optimize-gzip-compression.php:82, src/includes/class-wp-optimize-gzip-compression.php:86
571
- msgid "We can't definitely determine Gzip status as API doesn't return correct answer."
572
  msgstr ""
573
 
574
- #: src/includes/class-wp-optimize-gzip-compression.php:119, src/includes/class-wp-optimize-gzip-compression.php:121, src/includes/class-wp-optimize-gzip-compression.php:123
575
- msgid "We successfully added Gzip compression settings into .htaccess file."
576
  msgstr ""
577
 
578
- #: src/includes/class-wp-optimize-gzip-compression.php:119, src/includes/class-wp-optimize-gzip-compression.php:121, src/includes/class-wp-optimize-gzip-compression.php:123
579
- msgid "However, the test file we fetched was not Gzip-compressed."
580
  msgstr ""
581
 
582
- #: src/includes/class-wp-optimize-gzip-compression.php:119
583
- msgid "It seems one of Apache modules - mod_filter or mod_deflate - is not active."
584
  msgstr ""
585
 
586
- #: src/includes/class-wp-optimize-gzip-compression.php:121
587
- msgid "Possible causes include that Apache (your webserver) is not configured to allow .htaccess files to take effect, or one of Apache modules - mod_filter or mod_deflate - is not active, or the webserver is configured to disallow Gzip compression."
588
  msgstr ""
589
 
590
- #: src/includes/class-wp-optimize-gzip-compression.php:121, src/includes/class-wp-optimize-gzip-compression.php:123
591
- msgid "You should speak to your web hosting support to find how to enable it."
592
  msgstr ""
593
 
594
- #: src/includes/class-wp-optimize-options.php:144
595
- msgid "Auto backup option updated."
596
  msgstr ""
597
 
598
- #: src/includes/class-wp-optimize-options.php:272
599
- msgid "Settings updated."
600
  msgstr ""
601
 
602
- #: src/includes/class-wp-optimizer.php:134, src/includes/class-wp-optimizer.php:140
603
- msgid "No such optimization"
604
  msgstr ""
605
 
606
- #: src/includes/class-wp-optimizer.php:389, src/includes/wp-optimize-database-information.php:427, src/includes/wp-optimize-database-information.php:505, src/templates/database/tables-body.php:35
607
- msgid "WordPress core"
608
  msgstr ""
609
 
610
- #: src/includes/class-wp-optimizer.php:561
611
- msgid "Comments have now been disabled on all current and previously published posts."
612
  msgstr ""
613
 
614
- #: src/includes/class-wp-optimizer.php:562
615
- msgid "All comments on existing posts were disabled at %s."
616
  msgstr ""
617
 
618
- #: src/includes/class-wp-optimizer.php:565
619
- msgid "Comments have now been enabled on all current and previously published posts."
620
  msgstr ""
621
 
622
- #: src/includes/class-wp-optimizer.php:566
623
- msgid "All comments on existing posts were enabled at %s."
624
  msgstr ""
625
 
626
- #: src/includes/class-wp-optimizer.php:573
627
- msgid "Trackbacks have now been disabled on all current and previously published posts."
628
  msgstr ""
629
 
630
- #: src/includes/class-wp-optimizer.php:574
631
- msgid "All trackbacks on existing posts were disabled at %s."
632
  msgstr ""
633
 
634
- #: src/includes/class-wp-optimizer.php:577
635
- msgid "Trackbacks have now been enabled on all current and previously published posts."
636
  msgstr ""
637
 
638
- #: src/includes/class-wp-optimizer.php:578
639
- msgid "All trackbacks on existing posts were enabled at %s."
640
  msgstr ""
641
 
642
- #: src/includes/class-wpo-preloader.php:251
643
- msgid "%1$s out of %2$s URL preloaded"
644
- msgid_plural "%1$s out of %2$s URLs preloaded"
645
- msgstr[0] ""
646
- msgstr[1] ""
647
 
648
- #: src/includes/class-wpo-preloader.php:253
649
- msgid "Preloading posts found in sitemap:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
650
  msgstr ""
651
 
652
- #: src/includes/wp-optimize-notices.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
653
  msgid "Make sure you backup before you optimize your database"
654
  msgstr ""
655
 
656
- #: src/includes/wp-optimize-notices.php:42
657
  msgid "UpdraftPlus is the world's most trusted backup plugin from the owners of WP-Optimize"
658
  msgstr ""
659
 
660
- #: src/includes/wp-optimize-notices.php:52
661
  msgid "Save Time and Money. Manage multiple WordPress sites from one location."
662
  msgstr ""
663
 
664
- #: src/includes/wp-optimize-notices.php:53
665
  msgid "UpdraftCentral is a highly efficient way to take backup, update and manage multiple WP sites from one location."
666
  msgstr ""
667
 
668
- #: src/includes/wp-optimize-notices.php:62
669
  msgid "Hey - We noticed WP-Optimize has kept your site running fast for a while. If you like us, please consider leaving a positive review to spread the word. Or if you have any issues or questions please leave us a support message"
670
  msgstr ""
671
 
672
- #: src/includes/wp-optimize-notices.php:62
673
  msgid "here"
674
  msgstr ""
675
 
676
- #: src/includes/wp-optimize-notices.php:62
677
  msgid "Thank you so much!"
678
  msgstr ""
679
 
680
- #: src/includes/wp-optimize-notices.php:83
681
  msgid "Perform optimizations while your visitors sleep"
682
  msgstr ""
683
 
684
- #: src/includes/wp-optimize-notices.php:84
685
  msgid "WP-Optimize Premium features an advanced scheduling system that allows you to run optimizations at the quietest time of day (or night)."
686
  msgstr ""
687
 
688
- #: src/includes/wp-optimize-notices.php:94
689
  msgid "Manage a multisite installation? Need extra control?"
690
  msgstr ""
691
 
692
- #: src/includes/wp-optimize-notices.php:95
693
  msgid "WP-Optimize Premium's multisite feature includes a locking system that restricts optimization commands to users with the right permissions."
694
  msgstr ""
695
 
696
- #: src/includes/wp-optimize-notices.php:105
697
  msgid "WP-Optimize Premium offers unparalleled choice and flexibility"
698
  msgstr ""
699
 
700
- #: src/includes/wp-optimize-notices.php:106
701
  msgid "Upgrade today to combine over a dozen optimization options."
702
  msgstr ""
703
 
704
- #: src/includes/wp-optimize-notices.php:116
705
  msgid "Remove unwanted images for better site performance."
706
  msgstr ""
707
 
708
- #: src/includes/wp-optimize-notices.php:117
709
  msgid "WP-Optimize Premium comes with a feature to easily remove orphaned images, or images that exceed a certain size from your website."
710
  msgstr ""
711
 
712
- #: src/includes/wp-optimize-notices.php:127
713
  msgid "Power tweaks for advanced users and better site performance."
714
  msgstr ""
715
 
716
- #: src/includes/wp-optimize-notices.php:128
717
  msgid "WP-Optimize Premium comes with the power tweaks that will enable you to improve performance by targeting specific weak points, either in WordPress Core, or in popular plugins."
718
  msgstr ""
719
 
720
- #: src/includes/wp-optimize-notices.php:138
721
  msgid "by"
722
  msgstr ""
723
 
724
- #: src/includes/wp-optimize-notices.php:139
725
  msgid "The WordPress subscription extension for WooCommerce store owners."
726
  msgstr ""
727
 
728
- #: src/includes/wp-optimize-notices.php:150
729
  msgid "Black Friday - 20% off WP-Optimize Premium until November 30th"
730
  msgstr ""
731
 
732
- #: src/includes/wp-optimize-notices.php:151, src/includes/wp-optimize-notices.php:165, src/includes/wp-optimize-notices.php:179, src/includes/wp-optimize-notices.php:193
733
  msgid "To benefit, use this discount code:"
734
  msgstr ""
735
 
736
- #: src/includes/wp-optimize-notices.php:164
737
  msgid "Happy New Year - 20% off WP-Optimize Premium until January 14th"
738
  msgstr ""
739
 
740
- #: src/includes/wp-optimize-notices.php:178
741
  msgid "Spring sale - 20% off WP-Optimize Premium until May 31st"
742
  msgstr ""
743
 
744
- #: src/includes/wp-optimize-notices.php:192
745
  msgid "Summer sale - 20% off WP-Optimize Premium until July 31st"
746
  msgstr ""
747
 
748
- #: src/includes/wp-optimize-notices.php:206
749
  msgid "The Updraft Plugin Collection Sale"
750
  msgstr ""
751
 
752
- #: src/includes/wp-optimize-notices.php:207
753
  msgid "Get 20% off any of our plugins. But hurry - offer ends 30th September, use this discount code:"
754
  msgstr ""
755
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
756
  #: src/minify/class-wp-optimize-minify-admin.php:78
757
  msgid "WP-Optimize Minify requires PHP 5.4 or higher. You’re using version %s."
758
  msgstr ""
@@ -813,32 +961,32 @@ msgstr ""
813
  msgid "All caches from WP-Optimize Minify have been purged."
814
  msgstr ""
815
 
816
- #: src/minify/class-wp-optimize-minify.php:70
817
- msgid "Minify cache"
818
  msgstr ""
819
 
820
- #: src/minify/class-wp-optimize-minify.php:84
821
- msgid "Purge minify cache"
822
  msgstr ""
823
 
824
- #: src/minify/class-wp-optimize-minify.php:223
825
- msgid "The minify cache was successfully purged."
826
  msgstr ""
827
 
828
- #: src/minify/class-wpo-minify-preloader.php:67
829
- msgid "Minify: Creating tasks for preload site urls."
830
  msgstr ""
831
 
832
- #: src/minify/class-wpo-minify-preloader.php:79
833
- msgid "Minify: Tasks for preload site urls created."
834
  msgstr ""
835
 
836
- #: src/minify/class-wpo-minify-preloader.php:104
837
- msgid "Minify is disabled."
838
  msgstr ""
839
 
840
- #: src/minify/class-wpo-minify-preloader.php:116
841
- msgid "Probably minify preload is running already."
842
  msgstr ""
843
 
844
  #: src/optimizations/attachments.php:30
@@ -1325,59 +1473,59 @@ msgstr ""
1325
  msgid "Maximum compression"
1326
  msgstr ""
1327
 
1328
- #: src/templates/admin-metabox-smush.php:39, src/templates/images/smush.php:62
1329
  msgid "Best image quality"
1330
  msgstr ""
1331
 
1332
- #: src/templates/admin-metabox-smush.php:42, src/templates/images/smush.php:85
1333
  msgid "Show advanced options"
1334
  msgstr ""
1335
 
1336
- #: src/templates/admin-metabox-smush.php:44
1337
  msgid "Service provider"
1338
  msgstr ""
1339
 
1340
- #: src/templates/admin-metabox-smush.php:48, src/templates/images/smush.php:91
1341
  msgid "reSmush.it"
1342
  msgstr ""
1343
 
1344
- #: src/templates/admin-metabox-smush.php:51
1345
  msgid "Other options"
1346
  msgstr ""
1347
 
1348
- #: src/templates/admin-metabox-smush.php:55
1349
  msgid "Backup original"
1350
  msgstr ""
1351
 
1352
- #: src/templates/admin-metabox-smush.php:59
1353
  msgid "Keep EXIF data"
1354
  msgstr ""
1355
 
1356
- #: src/templates/admin-metabox-smush.php:65
1357
  msgid "Note: This image is already compressed by another plugin"
1358
  msgstr ""
1359
 
1360
- #: src/templates/admin-metabox-smush.php:69
1361
  msgid "Compress"
1362
  msgstr ""
1363
 
1364
- #: src/templates/admin-metabox-smush.php:73, src/templates/images/smush.php:143
1365
  msgid "Mark as already compressed"
1366
  msgstr ""
1367
 
1368
- #: src/templates/admin-metabox-smush.php:77
1369
  msgid "Mark as uncompressed"
1370
  msgstr ""
1371
 
1372
- #: src/templates/admin-metabox-smush.php:93
1373
  msgid "WP-Optimize image settings"
1374
  msgstr ""
1375
 
1376
- #: src/templates/admin-metabox-smush.php:99, src/templates/cache/page-cache.php:11, src/templates/images/smush.php:4, src/templates/images/smush.php:199, src/templates/images/smush.php:205, src/templates/images/smush.php:210, src/templates/minify/status-tab.php:5
1377
  msgid "Close"
1378
  msgstr ""
1379
 
1380
- #: src/templates/admin-metabox-smush.php:104, src/templates/cache/page-cache-preload.php:7, src/templates/database/tables-list-after.php:58, src/templates/images/smush.php:182, src/templates/images/smush.php:215, src/templates/minify/preload-tab.php:18, src/wp-optimize.php:1282
1381
  msgid "Cancel"
1382
  msgstr ""
1383
 
@@ -1433,7 +1581,7 @@ msgstr ""
1433
  msgid "More plugins"
1434
  msgstr ""
1435
 
1436
- #: src/templates/admin-page-header.php:29, src/templates/settings/may-also-like.php:26, src/wp-optimize.php:1413
1437
  msgid "Premium"
1438
  msgstr ""
1439
 
@@ -1469,11 +1617,11 @@ msgstr ""
1469
  msgid "disabled"
1470
  msgstr ""
1471
 
1472
- #: src/templates/cache/browser-cache.php:39, src/wp-optimize.php:1294
1473
  msgid "Update"
1474
  msgstr ""
1475
 
1476
- #: src/templates/cache/browser-cache.php:39, src/templates/cache/gzip-compression.php:47, src/templates/settings/settings-trackback-and-comments.php:18, src/templates/settings/settings-trackback-and-comments.php:49, src/wp-optimize.php:1284
1477
  msgid "Enable"
1478
  msgstr ""
1479
 
@@ -1537,7 +1685,7 @@ msgstr ""
1537
  msgid "Check status again"
1538
  msgstr ""
1539
 
1540
- #: src/templates/cache/gzip-compression.php:47, src/templates/settings/settings-trackback-and-comments.php:20, src/templates/settings/settings-trackback-and-comments.php:51, src/wp-optimize.php:1285
1541
  msgid "Disable"
1542
  msgstr ""
1543
 
@@ -1586,14 +1734,26 @@ msgid "List of cookies that will prevent caching when set."
1586
  msgstr ""
1587
 
1588
  #: src/templates/cache/page-cache-advanced.php:32
 
 
 
 
 
 
 
 
 
 
 
 
1589
  msgid "List of browser agent strings which, if detected, will prevent caching"
1590
  msgstr ""
1591
 
1592
- #: src/templates/cache/page-cache-advanced.php:37
1593
  msgid "List of browser agents strings or substrings that should not be served cached files (one per line)"
1594
  msgstr ""
1595
 
1596
- #: src/templates/cache/page-cache-advanced.php:41
1597
  msgid "If any of the above strings is found in the User-Agent HTTP header, then the requested page will not be cached."
1598
  msgstr ""
1599
 
@@ -1613,7 +1773,7 @@ msgstr ""
1613
  msgid "Preload now"
1614
  msgstr ""
1615
 
1616
- #: src/templates/cache/page-cache-preload.php:7, src/templates/minify/preload-tab.php:18, src/wp-optimize.php:1295
1617
  msgid "Run now"
1618
  msgstr ""
1619
 
@@ -1653,10 +1813,6 @@ msgstr ""
1653
  msgid "Page caching"
1654
  msgstr ""
1655
 
1656
- #: src/templates/cache/page-cache.php:6, src/wp-optimize.php:842
1657
- msgid "Gzip compression"
1658
- msgstr ""
1659
-
1660
  #: src/templates/cache/page-cache.php:7
1661
  msgid "Browser static file caching (via headers)"
1662
  msgstr ""
@@ -1709,19 +1865,15 @@ msgstr ""
1709
  msgid "Purge the cache"
1710
  msgstr ""
1711
 
1712
- #: src/templates/cache/page-cache.php:52, src/wp-optimize.php:1388, src/wp-optimize.php:1391
1713
- msgid "Purge cache"
1714
- msgstr ""
1715
-
1716
  #: src/templates/cache/page-cache.php:57
1717
  msgid "Deletes the entire cache contents but keeps the page cache enabled."
1718
  msgstr ""
1719
 
1720
- #: src/templates/cache/page-cache.php:60, src/wp-optimize.php:1298
1721
  msgid "Current cache size:"
1722
  msgstr ""
1723
 
1724
- #: src/templates/cache/page-cache.php:61, src/wp-optimize.php:1299
1725
  msgid "Number of files:"
1726
  msgstr ""
1727
 
@@ -1777,7 +1929,7 @@ msgstr ""
1777
  msgid "Go"
1778
  msgstr ""
1779
 
1780
- #: src/templates/database/optimize-table.php:8, src/templates/database/tables.php:5, src/wp-optimize.php:1306
1781
  msgid "Loading data..."
1782
  msgstr ""
1783
 
@@ -1785,10 +1937,6 @@ msgstr ""
1785
  msgid "Warning: This operation is permanent. Continue?"
1786
  msgstr ""
1787
 
1788
- #: src/templates/database/optimize-table.php:34, src/wp-optimize.php:829
1789
- msgid "Optimizations"
1790
- msgstr ""
1791
-
1792
  #: src/templates/database/optimize-table.php:38
1793
  msgid "Run all selected optimizations"
1794
  msgstr ""
@@ -1821,22 +1969,6 @@ msgstr ""
1821
  msgid "Select schedule type (default is Weekly)"
1822
  msgstr ""
1823
 
1824
- #: src/templates/database/settings-auto-cleanup.php:27, src/wp-optimize.php:1107
1825
- msgid "Daily"
1826
- msgstr ""
1827
-
1828
- #: src/templates/database/settings-auto-cleanup.php:28, src/wp-optimize.php:1108
1829
- msgid "Weekly"
1830
- msgstr ""
1831
-
1832
- #: src/templates/database/settings-auto-cleanup.php:29, src/wp-optimize.php:1109
1833
- msgid "Fortnightly"
1834
- msgstr ""
1835
-
1836
- #: src/templates/database/settings-auto-cleanup.php:30, src/wp-optimize.php:1110
1837
- msgid "Monthly (approx. - every 30 days)"
1838
- msgstr ""
1839
-
1840
  #: src/templates/database/settings-general.php:3, src/templates/settings/settings-general.php:3
1841
  msgid "General settings"
1842
  msgstr ""
@@ -1947,47 +2079,55 @@ msgstr ""
1947
  msgid "Belongs to:"
1948
  msgstr ""
1949
 
 
 
 
 
1950
  #: src/templates/database/tables-body.php:38
 
 
 
 
1951
  msgid "Known plugins that use this table name:"
1952
  msgstr ""
1953
 
1954
- #: src/templates/database/tables-body.php:49
1955
  msgid "not installed"
1956
  msgstr ""
1957
 
1958
- #: src/templates/database/tables-body.php:51
1959
  msgid "inactive"
1960
  msgstr ""
1961
 
1962
- #: src/templates/database/tables-body.php:60, src/templates/database/tables.php:41
1963
  msgid "Records"
1964
  msgstr ""
1965
 
1966
- #: src/templates/database/tables-body.php:61, src/templates/database/tables.php:42
1967
  msgid "Data Size"
1968
  msgstr ""
1969
 
1970
- #: src/templates/database/tables-body.php:62, src/templates/database/tables.php:43
1971
  msgid "Index Size"
1972
  msgstr ""
1973
 
1974
- #: src/templates/database/tables-body.php:65, src/templates/database/tables-body.php:78, src/templates/database/tables.php:44
1975
  msgid "Type"
1976
  msgstr ""
1977
 
1978
- #: src/templates/database/tables-body.php:67, src/templates/database/tables-body.php:79, src/templates/database/tables.php:45
1979
  msgid "Overhead"
1980
  msgstr ""
1981
 
1982
- #: src/templates/database/tables-body.php:86, src/templates/database/tables-body.php:115, src/templates/database/tables.php:46, src/templates/settings/settings-logging.php:25
1983
  msgid "Actions"
1984
  msgstr ""
1985
 
1986
- #: src/templates/database/tables-body.php:101
1987
  msgid "Total:"
1988
  msgstr ""
1989
 
1990
- #: src/templates/database/tables-body.php:102
1991
  msgid "%s Table"
1992
  msgid_plural "%s Tables"
1993
  msgstr[0] ""
@@ -2089,10 +2229,6 @@ msgstr ""
2089
  msgid "Follow this link to read more about lazy-loading images and video"
2090
  msgstr ""
2091
 
2092
- #: src/templates/images/lazyload.php:22, src/wp-optimize.php:1634, src/wp-optimize.php:1635
2093
- msgid "Images"
2094
- msgstr ""
2095
-
2096
  #: src/templates/images/lazyload.php:23
2097
  msgid "Iframes and Videos"
2098
  msgstr ""
@@ -2161,167 +2297,175 @@ msgstr ""
2161
  msgid "Uses lossless compression, which results in much better image quality but lower file size savings per image"
2162
  msgstr ""
2163
 
2164
- #: src/templates/images/smush.php:64
2165
  msgid "Not sure what to choose?"
2166
  msgstr ""
2167
 
2168
- #: src/templates/images/smush.php:64
2169
  msgid "Read our article \"Lossy vs Lossless image compression\""
2170
  msgstr ""
2171
 
2172
- #: src/templates/images/smush.php:66
2173
  msgid "WebP conversion"
2174
  msgstr ""
2175
 
2176
- #: src/templates/images/smush.php:70
2177
  msgid "Note: Local WebP conversion tools are not allowed on your server."
2178
  msgstr ""
2179
 
2180
- #: src/templates/images/smush.php:72
2181
  msgid "Available WebP conversion tools:"
2182
  msgstr ""
2183
 
2184
- #: src/templates/images/smush.php:75
2185
  msgid "Create WebP version of image"
2186
  msgstr ""
2187
 
2188
- #: src/templates/images/smush.php:76
2189
  msgid "Creates WebP image format and serves it whenever possible."
2190
  msgstr ""
2191
 
2192
- #: src/templates/images/smush.php:80
2193
  msgid "No WebP conversion tools are available on your web-server."
2194
  msgstr ""
2195
 
2196
- #: src/templates/images/smush.php:85
2197
  msgid "Hide advanced options"
2198
  msgstr ""
2199
 
2200
- #: src/templates/images/smush.php:88
 
 
 
 
 
 
 
 
2201
  msgid "Compression service"
2202
  msgstr ""
2203
 
2204
- #: src/templates/images/smush.php:92
2205
  msgid "Can keep EXIF data"
2206
  msgstr ""
2207
 
2208
- #: src/templates/images/smush.php:93
2209
  msgid "Service provided by reSmush.it"
2210
  msgstr ""
2211
 
2212
- #: src/templates/images/smush.php:98
2213
  msgid "More options"
2214
  msgstr ""
2215
 
2216
- #: src/templates/images/smush.php:101
2217
  msgid "Preserve EXIF data"
2218
  msgstr ""
2219
 
2220
- #: src/templates/images/smush.php:104
2221
  msgid "Backup original images"
2222
  msgstr ""
2223
 
2224
- #: src/templates/images/smush.php:105
2225
  msgid "The original images are stored alongside the compressed images, you can visit the edit screen of the individual images in the Media Library to restore them."
2226
  msgstr ""
2227
 
2228
- #: src/templates/images/smush.php:108
2229
  msgid "Automatically delete image backups after"
2230
  msgstr ""
2231
 
2232
- #: src/templates/images/smush.php:108, src/templates/minify/advanced-tab.php:90
2233
  msgid "days"
2234
  msgstr ""
2235
 
2236
- #: src/templates/images/smush.php:108
2237
  msgid "or"
2238
  msgstr ""
2239
 
2240
- #: src/templates/images/smush.php:108
2241
  msgid "Delete all backup images now"
2242
  msgstr ""
2243
 
2244
- #: src/templates/images/smush.php:112
2245
  msgid "Mark all images as uncompressed"
2246
  msgstr ""
2247
 
2248
- #: src/templates/images/smush.php:115
2249
  msgid "Restore all compressed images"
2250
  msgstr ""
2251
 
2252
- #: src/templates/images/smush.php:115
2253
  msgid "Only the original image will be restored. In order to restore the other sizes, you should use a plugin such as \"Regenerate Thumbnails\"."
2254
  msgstr ""
2255
 
2256
- #: src/templates/images/smush.php:119
2257
  msgid "Save options"
2258
  msgstr ""
2259
 
2260
- #: src/templates/images/smush.php:121
2261
  msgid "Saved options"
2262
  msgstr ""
2263
 
2264
- #: src/templates/images/smush.php:122
2265
  msgid "Failed to save options"
2266
  msgstr ""
2267
 
2268
- #: src/templates/images/smush.php:127
2269
  msgid "Uncompressed images"
2270
  msgstr ""
2271
 
2272
- #: src/templates/images/smush.php:130
2273
  msgid "Select all"
2274
  msgstr ""
2275
 
2276
- #: src/templates/images/smush.php:131
2277
  msgid "Select none"
2278
  msgstr ""
2279
 
2280
- #: src/templates/images/smush.php:134
2281
  msgid "Refresh image list"
2282
  msgstr ""
2283
 
2284
- #: src/templates/images/smush.php:142
2285
  msgid "Compress the selected images"
2286
  msgstr ""
2287
 
2288
- #: src/templates/images/smush.php:144, src/templates/images/smush.php:194
2289
  msgid "View logs"
2290
  msgstr ""
2291
 
2292
- #: src/templates/images/smush.php:151
2293
  msgid "Compressing images"
2294
  msgstr ""
2295
 
2296
- #: src/templates/images/smush.php:156
2297
  msgid "The selected images are being processed; please do not close the browser"
2298
  msgstr ""
2299
 
2300
- #: src/templates/images/smush.php:160
2301
  msgid "Images pending"
2302
  msgstr ""
2303
 
2304
- #: src/templates/images/smush.php:164
2305
  msgid "Images completed"
2306
  msgstr ""
2307
 
2308
- #: src/templates/images/smush.php:168
2309
  msgid "Size savings"
2310
  msgstr ""
2311
 
2312
- #: src/templates/images/smush.php:172
2313
  msgid "Average savings per image"
2314
  msgstr ""
2315
 
2316
- #: src/templates/images/smush.php:176
2317
  msgid "Time elapsed"
2318
  msgstr ""
2319
 
2320
- #: src/templates/images/smush.php:195
2321
  msgid "Clear compression statistics"
2322
  msgstr ""
2323
 
2324
- #: src/templates/images/smush.php:204
2325
  msgid "Download log file"
2326
  msgstr ""
2327
 
@@ -2601,15 +2745,15 @@ msgstr ""
2601
  msgid "Load asynchronously"
2602
  msgstr ""
2603
 
2604
- #: src/templates/minify/cached-file.php:4, src/wp-optimize.php:1300
2605
  msgid "Show information"
2606
  msgstr ""
2607
 
2608
- #: src/templates/minify/cached-file.php:6, src/wp-optimize.php:1302
2609
  msgid "The file was added to the list"
2610
  msgstr ""
2611
 
2612
- #: src/templates/minify/cached-file.php:7, src/wp-optimize.php:1303
2613
  msgid "Save the changes"
2614
  msgstr ""
2615
 
@@ -3104,10 +3248,6 @@ msgstr ""
3104
  msgid "The JavaScript files will be combined and minified to lower the number and size of requests."
3105
  msgstr ""
3106
 
3107
- #: src/templates/minify/status-tab.php:111, src/templates/minify/status-tab.php:133, src/wp-optimize.php:831, src/wp-optimize.php:851, src/wp-optimize.php:856, src/wp-optimize.php:1417, src/wp-optimize.php:1666, src/wp-optimize.php:1667
3108
- msgid "Settings"
3109
- msgstr ""
3110
-
3111
  #: src/templates/minify/status-tab.php:131
3112
  msgid "Process CSS files"
3113
  msgstr ""
@@ -3144,7 +3284,7 @@ msgstr ""
3144
  msgid "Current cache:"
3145
  msgstr ""
3146
 
3147
- #: src/templates/minify/status-tab.php:163, src/templates/minify/status-tab.php:176, src/wp-optimize.php:1312
3148
  msgid "No minified files are present"
3149
  msgstr ""
3150
 
@@ -3707,258 +3847,154 @@ msgstr ""
3707
  msgid "UpdraftPlus is installed but currently not active. Follow this link to activate UpdraftPlus, to take a backup before optimization."
3708
  msgstr ""
3709
 
3710
- #: src/wp-optimize.php:631
3711
  msgid "WP-Optimize (Free) has been de-activated, because WP-Optimize Premium is active."
3712
  msgstr ""
3713
 
3714
- #: src/wp-optimize.php:641
3715
  msgid "New feature: WP-Optimize Premium can now optimize all sites within a multisite install, not just the main one."
3716
  msgstr ""
3717
 
3718
- #: src/wp-optimize.php:694
3719
  msgid "The security check failed; try refreshing the page."
3720
  msgstr ""
3721
 
3722
- #: src/wp-optimize.php:705
3723
  msgid "You are not allowed to run this command."
3724
  msgstr ""
3725
 
3726
- #: src/wp-optimize.php:719
3727
  msgid "Options can only be saved by network admin"
3728
  msgstr ""
3729
 
3730
- #: src/wp-optimize.php:770
3731
- msgid "The command \"%s\" was not found"
3732
- msgstr ""
3733
-
3734
- #: src/wp-optimize.php:830
3735
- msgid "Tables"
3736
- msgstr ""
3737
-
3738
- #: src/wp-optimize.php:834
3739
- msgid "Compress images"
3740
- msgstr ""
3741
-
3742
  #: src/wp-optimize.php:835
3743
- msgid "Unused images and sizes"
3744
- msgstr ""
3745
-
3746
- #: src/wp-optimize.php:836
3747
- msgid "Lazy-load"
3748
- msgstr ""
3749
-
3750
- #: src/wp-optimize.php:840, src/wp-optimize.php:850
3751
- msgid "Preload"
3752
- msgstr ""
3753
-
3754
- #: src/wp-optimize.php:841
3755
- msgid "Advanced settings"
3756
- msgstr ""
3757
-
3758
- #: src/wp-optimize.php:843
3759
- msgid "Static file headers"
3760
- msgstr ""
3761
-
3762
- #: src/wp-optimize.php:846
3763
- msgid "Minify status"
3764
- msgstr ""
3765
-
3766
- #: src/wp-optimize.php:847
3767
- msgid "JavaScript"
3768
- msgstr ""
3769
-
3770
- #: src/wp-optimize.php:847, src/wp-optimize.php:848
3771
- msgid "Disabled"
3772
- msgstr ""
3773
-
3774
- #: src/wp-optimize.php:848
3775
- msgid "CSS"
3776
- msgstr ""
3777
-
3778
- #: src/wp-optimize.php:849
3779
- msgid "Fonts"
3780
- msgstr ""
3781
-
3782
- #: src/wp-optimize.php:852
3783
- msgid "Advanced"
3784
- msgstr ""
3785
-
3786
- #: src/wp-optimize.php:859
3787
- msgid "Support / FAQs"
3788
- msgstr ""
3789
-
3790
- #: src/wp-optimize.php:860
3791
- msgid "Premium / Plugin family"
3792
- msgstr ""
3793
-
3794
- #: src/wp-optimize.php:1106
3795
- msgid "Same as cache lifespan"
3796
- msgstr ""
3797
-
3798
- #: src/wp-optimize.php:1231
3799
- msgid "Your server takes care of table optimization"
3800
- msgstr ""
3801
-
3802
- #: src/wp-optimize.php:1261
3803
- msgid "Enjoyed %s? Please leave us a %s rating. We really appreciate your support!"
3804
  msgstr ""
3805
 
3806
- #: src/wp-optimize.php:1275
3807
  msgid "Automatic backup before optimizations"
3808
  msgstr ""
3809
 
3810
- #: src/wp-optimize.php:1276
3811
  msgid "An unexpected response was received."
3812
  msgstr ""
3813
 
3814
- #: src/wp-optimize.php:1277
3815
  msgid "Optimization complete"
3816
  msgstr ""
3817
 
3818
- #: src/wp-optimize.php:1278
3819
  msgid "(with warnings - open the browser console for more details)"
3820
  msgstr ""
3821
 
3822
- #: src/wp-optimize.php:1279
3823
  msgid "Optimizing table:"
3824
  msgstr ""
3825
 
3826
- #: src/wp-optimize.php:1280
3827
  msgid "Run optimizations"
3828
  msgstr ""
3829
 
3830
- #: src/wp-optimize.php:1283
3831
  msgid "Cancelling..."
3832
  msgstr ""
3833
 
3834
- #: src/wp-optimize.php:1286
3835
  msgid "Please, select settings file."
3836
  msgstr ""
3837
 
3838
- #: src/wp-optimize.php:1287
3839
  msgid "Are you sure you want to remove this logging destination?"
3840
  msgstr ""
3841
 
3842
- #: src/wp-optimize.php:1288
3843
  msgid "Before saving, you need to complete the currently incomplete settings (or remove them)."
3844
  msgstr ""
3845
 
3846
- #: src/wp-optimize.php:1289
3847
  msgid "%s was not repaired. For more details, please check the logs (configured in your logging destinations settings)."
3848
  msgstr ""
3849
 
3850
- #: src/wp-optimize.php:1290
3851
  msgid "%s was not deleted. For more details, please check your logs configured in logging destinations settings."
3852
  msgstr ""
3853
 
3854
- #: src/wp-optimize.php:1291
3855
  msgid "%s was not converted to InnoDB. For more details, please check your logs configured in logging destinations settings."
3856
  msgstr ""
3857
 
3858
- #: src/wp-optimize.php:1292
3859
  msgid "Please use positive integers."
3860
  msgstr ""
3861
 
3862
- #: src/wp-optimize.php:1293
3863
  msgid "Please use valid values."
3864
  msgstr ""
3865
 
3866
- #: src/wp-optimize.php:1296
3867
  msgid "Started preload..."
3868
  msgstr ""
3869
 
3870
- #: src/wp-optimize.php:1301
3871
  msgid "Added to the list"
3872
  msgstr ""
3873
 
3874
- #: src/wp-optimize.php:1304
3875
  msgid "Refreshing the page to reflect changes..."
3876
  msgstr ""
3877
 
3878
- #: src/wp-optimize.php:1305
3879
  msgid "WP-Optimize settings have been deleted successfully."
3880
  msgstr ""
3881
 
3882
- #: src/wp-optimize.php:1311
3883
  msgid "The tweak has been performed."
3884
  msgstr ""
3885
 
3886
- #: src/wp-optimize.php:1420
3887
  msgid "Optimize"
3888
  msgstr ""
3889
 
3890
- #: src/wp-optimize.php:1436
3891
  msgid "Repair"
3892
  msgstr ""
3893
 
3894
- #: src/wp-optimize.php:1445
3895
  msgid "Remove"
3896
  msgstr ""
3897
 
3898
- #: src/wp-optimize.php:1454
3899
  msgid "Convert to InnoDB"
3900
  msgstr ""
3901
 
3902
- #: src/wp-optimize.php:1586
3903
  msgid "Warning"
3904
  msgstr ""
3905
 
3906
- #: src/wp-optimize.php:1586
3907
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
3908
  msgstr ""
3909
 
3910
- #: src/wp-optimize.php:1586
3911
  msgid "Read this page for a guide to possible causes and how to fix it."
3912
  msgstr ""
3913
 
3914
- #: src/wp-optimize.php:1625, src/wp-optimize.php:1626
3915
- msgid "Database"
3916
- msgstr ""
3917
-
3918
- #: src/wp-optimize.php:1643, src/wp-optimize.php:1644
3919
- msgid "Cache"
3920
- msgstr ""
3921
-
3922
- #: src/wp-optimize.php:1652, src/wp-optimize.php:1653
3923
- msgid "Minify"
3924
- msgstr ""
3925
-
3926
- #: src/wp-optimize.php:1675
3927
- msgid "Support & FAQs"
3928
- msgstr ""
3929
-
3930
- #: src/wp-optimize.php:1676
3931
- msgid "Help"
3932
- msgstr ""
3933
-
3934
- #: src/wp-optimize.php:1684, src/wp-optimize.php:1685
3935
- msgid "Premium Upgrade"
3936
- msgstr ""
3937
-
3938
- #: src/wp-optimize.php:1756
3939
  msgid "Error:"
3940
  msgstr ""
3941
 
3942
- #: src/wp-optimize.php:1756
3943
  msgid "template not found"
3944
  msgstr ""
3945
 
3946
- #: src/wp-optimize.php:1820
3947
  msgid "N/A"
3948
  msgstr ""
3949
 
3950
- #: src/wp-optimize.php:2169
3951
- msgid "You have no permissions to run optimizations."
3952
- msgstr ""
3953
-
3954
- #: src/wp-optimize.php:2178
3955
- msgid "You have no permissions to manage WP-Optimize settings."
3956
- msgstr ""
3957
-
3958
- #: src/wp-optimize.php:2460
3959
  msgid "Only Network Administrator can activate WP-Optimize plugin."
3960
  msgstr ""
3961
 
3962
- #: src/wp-optimize.php:2461
3963
  msgid "go back"
3964
  msgstr ""
17
  "X-Poedit-SearchPathExcluded-0: *.js\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
+ #: src/cache/class-wp-optimize-cache-commands.php:62
21
  msgid "Page caching was disabled, but with some warnings:"
22
  msgstr ""
23
 
24
+ #: src/cache/class-wp-optimize-cache-commands.php:82
25
  msgid "Page caching was enabled, but with some warnings:"
26
  msgstr ""
27
 
28
+ #: src/cache/class-wp-optimize-cache-commands.php:127
29
  msgid "Caching is enabled"
30
  msgstr ""
31
 
32
+ #: src/cache/class-wp-optimize-cache-commands.php:127
33
  msgid "Caching is disabled"
34
  msgstr ""
35
 
36
+ #: src/cache/class-wp-optimize-cache-commands.php:130
37
  msgid "Current cache size: %s"
38
  msgstr ""
39
 
40
+ #: src/cache/class-wp-optimize-cache-commands.php:131
41
  msgid "Number of files: %s"
42
  msgstr ""
43
 
44
+ #: src/cache/class-wp-optimize-cache-commands.php:168, src/minify/class-wp-optimize-minify-commands.php:73
45
  msgid "You do not have permission to purge the cache"
46
  msgstr ""
47
 
48
+ #: src/cache/class-wp-optimize-cache-commands.php:193
49
  msgid "Page cache purged successfully"
50
  msgstr ""
51
 
52
+ #: src/cache/class-wp-optimize-cache-commands.php:217
53
  msgid "Preloading is currently running in another process."
54
  msgstr ""
55
 
56
+ #: src/cache/class-wp-optimize-cache-commands.php:224
57
  msgid "All URLs were preloaded into cache successfully"
58
  msgstr ""
59
 
60
+ #: src/cache/class-wp-optimize-cache-commands.php:227
61
  msgid "Preloading URLs into cache..."
62
  msgstr ""
63
 
64
+ #: src/cache/class-wp-optimize-cache-commands.php:287
65
  msgid "Page cache settings updated successfully."
66
  msgstr ""
67
 
68
+ #: src/cache/class-wp-optimize-page-cache-preloader.php:182
 
 
 
 
69
  msgid "Creating tasks for preload site urls."
70
  msgstr ""
71
 
72
+ #: src/cache/class-wp-optimize-page-cache-preloader.php:201
73
  msgid "Tasks for preload site urls created."
74
  msgstr ""
75
 
76
+ #: src/cache/class-wp-optimize-page-cache-preloader.php:279, src/includes/class-wp-optimize-preloader.php:356
77
  msgid "%d url found."
78
  msgid_plural "%d urls found."
79
  msgstr[0] ""
80
  msgstr[1] ""
81
 
82
+ #: src/cache/class-wp-optimize-page-cache-preloader.php:645
83
  msgid "Page cache is disabled."
84
  msgstr ""
85
 
86
+ #: src/cache/class-wp-optimize-page-cache-preloader.php:657
87
  msgid "Probably page cache preload is running already."
88
  msgstr ""
89
 
90
+ #: src/cache/class-wp-optimize-page-cache-preloader.php:668, src/minify/class-wp-optimize-minify-preloader.php:128, src/wp-optimize.php:914
91
  msgid "Loading URLs..."
92
  msgstr ""
93
 
94
+ #: src/cache/class-wp-optimize-page-cache-preloader.php:677, src/minify/class-wp-optimize-minify-preloader.php:137
95
  msgid "Last preload finished at %s"
96
  msgstr ""
97
 
98
+ #: src/cache/class-wpo-cache-config.php:177
99
+ msgid "The cache configuration file could not be saved to the disk; please check the file/folder permissions of %s ."
100
+ msgstr ""
101
+
102
+ #: src/cache/class-wpo-page-cache.php:175, src/includes/class-wp-optimize-admin.php:52
103
  msgid "Page cache"
104
  msgstr ""
105
 
106
+ #: src/cache/class-wpo-page-cache.php:176, src/minify/class-wp-optimize-minify.php:69
107
  msgid "Cache size:"
108
  msgstr ""
109
 
110
+ #: src/cache/class-wpo-page-cache.php:176
111
  msgid "(%d files)"
112
  msgstr ""
113
 
114
+ #: src/cache/class-wpo-page-cache.php:189, src/cache/class-wpo-page-cache.php:192
115
  msgid "Purge cache for all pages"
116
  msgstr ""
117
 
118
+ #: src/cache/class-wpo-page-cache.php:200, src/cache/class-wpo-page-cache.php:203
119
  msgid "Purge cache for this page"
120
  msgstr ""
121
 
122
+ #: src/cache/class-wpo-page-cache.php:263, src/cache/class-wpo-page-cache.php:277
123
  msgid "The page cache was successfully purged."
124
  msgstr ""
125
 
126
+ #: src/cache/class-wpo-page-cache.php:270, src/cache/class-wpo-page-cache.php:284
127
  msgid "The page cache was not purged."
128
  msgstr ""
129
 
130
+ #: src/cache/class-wpo-page-cache.php:350, src/cache/class-wpo-page-cache.php:1291
131
  msgid "Please check file and directory permissions on the file paths up to this point, and your PHP error log."
132
  msgstr ""
133
 
134
+ #: src/cache/class-wpo-page-cache.php:353
135
  msgid "1. Please navigate, via FTP, to the folder - %s"
136
  msgstr ""
137
 
138
+ #: src/cache/class-wpo-page-cache.php:354
139
  msgid "2. Edit or create a file with the name advanced-cache.php"
140
  msgstr ""
141
 
142
+ #: src/cache/class-wpo-page-cache.php:355
143
  msgid "3. Copy and paste the following lines into the file:"
144
  msgstr ""
145
 
146
+ #: src/cache/class-wpo-page-cache.php:399
147
  msgid "Could not turn off the WP_CACHE constant in wp-config.php"
148
  msgstr ""
149
 
150
+ #: src/cache/class-wpo-page-cache.php:409
151
  msgid "The request to the filesystem to remove or empty advanced-cache.php failed"
152
  msgstr ""
153
 
154
+ #: src/cache/class-wpo-page-cache.php:415
155
  msgid "The page caching could not be disabled: the WP_CACHE constant could not be removed from wp-config.php and the request to the filesystem to remove or empty advanced-cache.php failed."
156
  msgstr ""
157
 
158
+ #: src/cache/class-wpo-page-cache.php:718
159
  msgid "The file advanced-cache.php needs to be updated, but the automatic process failed."
160
  msgstr ""
161
 
162
+ #: src/cache/class-wpo-page-cache.php:719
163
  msgid "Please try to disable and then re-enable the WP-Optimize cache manually."
164
  msgstr ""
165
 
166
+ #: src/cache/class-wpo-page-cache.php:817
167
  msgid "Unable to write to or find wp-config.php; please check file/folder permissions."
168
  msgstr ""
169
 
170
+ #: src/cache/class-wpo-page-cache.php:825
171
  msgid "Unable to write the file advanced-cache.php inside the wp-content folder; please check file/folder permissions"
172
  msgstr ""
173
 
174
+ #: src/cache/class-wpo-page-cache.php:832
175
  msgid "Unable to write inside the cache files folder (%s); please check file/folder permissions (no cache files will be able to be created otherwise)"
176
  msgstr ""
177
 
178
+ #: src/cache/class-wpo-page-cache.php:845
179
  msgid "Unable to write inside the cache configuration folder (%s); please check file/folder permissions"
180
  msgstr ""
181
 
182
+ #: src/cache/class-wpo-page-cache.php:1262, src/cache/class-wpo-page-cache.php:1283
183
  msgid "WP-Optimize:"
184
  msgstr ""
185
 
186
+ #: src/cache/class-wpo-page-cache.php:1262
187
  msgid "Please disable the feature \"Gzip compression\" in PageSpeed Ninja to prevent conflicts."
188
  msgstr ""
189
 
190
+ #: src/cache/class-wpo-page-cache.php:1283
191
  msgid "Please disable the feature \"Gzip compression\" in Far Future Expiration to prevent conflicts."
192
  msgstr ""
193
 
194
+ #: src/cache/class-wpo-page-cache.php:1290
195
  msgid "The request to write the file %s failed."
196
  msgstr ""
197
 
198
+ #: src/cache/class-wpo-page-cache.php:1303
199
+ msgid "Every time after the cache has expired"
200
+ msgstr ""
201
+
202
  #: src/cache/file-based-page-cache-functions.php:32
203
  msgid "Output is too small (less than %d bytes) to be worth caching"
204
  msgstr ""
207
  msgid "User is logged in"
208
  msgstr ""
209
 
210
+ #: src/cache/file-based-page-cache-functions.php:52
211
  msgid "WP-O cache parent directory was not found"
212
  msgstr ""
213
 
214
+ #: src/cache/file-based-page-cache-functions.php:56
215
  msgid "WP-O cache directory was not found"
216
  msgstr ""
217
 
218
+ #: src/cache/file-based-page-cache-functions.php:67
219
  msgid "Comments are opened and the visitor saved his information."
220
  msgstr ""
221
 
222
+ #: src/cache/file-based-page-cache-functions.php:87
223
  msgid "wpo_can_cache_page filter forbade it"
224
  msgstr ""
225
 
226
+ #: src/cache/file-based-page-cache-functions.php:89
227
  msgid "DONOTCACHEPAGE constant forbade it and wpo_can_cache_page filter did not over-ride it"
228
  msgstr ""
229
 
230
+ #: src/cache/file-based-page-cache-functions.php:94
231
  msgid "This is a REST API request (identified by REST_REQUEST constant)"
232
  msgstr ""
233
 
234
+ #: src/cache/file-based-page-cache-functions.php:100
235
  msgid "This page has a fatal error"
236
  msgstr ""
237
 
238
+ #: src/cache/file-based-page-cache-functions.php:104
239
  msgid "This page has a critical error (HTTP code %s)"
240
  msgstr ""
241
 
242
+ #: src/cache/file-based-page-cache-functions.php:106
243
  msgid "This page returned an HTTP unauthorised response code (%s)"
244
  msgstr ""
245
 
246
+ #: src/cache/file-based-page-cache-functions.php:125
247
  msgid "Attempt to create subfolder within cache directory failed"
248
  msgstr ""
249
 
250
+ #: src/cache/file-based-page-cache-functions.php:273
251
  msgid "Page type is not cacheable (search, 404 or password-protected)"
252
  msgstr ""
253
 
254
+ #: src/cache/file-based-page-cache-functions.php:279
255
  msgid "In the settings, caching is disabled for the front page"
256
  msgstr ""
257
 
258
+ #: src/cache/file-based-page-cache-functions.php:289
259
  msgid "We don't cache RSS feeds"
260
  msgstr ""
261
 
262
+ #: src/cache/file-based-page-cache-functions.php:904
263
+ msgid "In the settings, caching is disabled for %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264
  msgstr ""
265
 
266
  #: src/includes/class-updraft-abstract-logger.php:82
279
  msgid "Log events into a log file"
280
  msgstr ""
281
 
282
+ #: src/includes/class-updraft-php-logger.php:24
283
  msgid "Log events into the PHP error log"
284
  msgstr ""
285
 
291
  msgid "How many last records store?"
292
  msgstr ""
293
 
294
+ #: src/includes/class-updraft-smush-manager-commands.php:64, src/includes/class-updraft-smush-manager.php:290
295
  msgid "The blog ID provided does not match the current blog."
296
  msgstr ""
297
 
298
+ #: src/includes/class-updraft-smush-manager-commands.php:133
299
  msgid "The image was restored successfully"
300
  msgstr ""
301
 
302
+ #: src/includes/class-updraft-smush-manager-commands.php:174
303
  msgid "Since your compression statistics were last reset, a total of %d image(s) were compressed on this site, saving approximately %s of space at an average of %02d percent per image."
304
  msgstr ""
305
 
306
+ #: src/includes/class-updraft-smush-manager-commands.php:175
307
  msgid "%d image(s) could not be compressed. Please see the logs for more information, or try again later."
308
  msgstr ""
309
 
310
+ #: src/includes/class-updraft-smush-manager-commands.php:176
311
  msgid "%d image(s) images were selected for compressing previously, but were not all processed. You can either complete them now or cancel and retry later."
312
  msgstr ""
313
 
314
+ #: src/includes/class-updraft-smush-manager-commands.php:185
315
  msgid "A total of %d image(s) were successfully compressed in this iteration. "
316
  msgstr ""
317
 
318
+ #: src/includes/class-updraft-smush-manager-commands.php:189
319
  msgid "%d selected image(s) could not be compressed. Please see the logs for more information, you may try again later."
320
  msgstr ""
321
 
322
+ #: src/includes/class-updraft-smush-manager-commands.php:222
323
  msgid "Options could not be updated"
324
  msgstr ""
325
 
326
+ #: src/includes/class-updraft-smush-manager-commands.php:230
327
  msgid "Options updated successfully"
328
  msgstr ""
329
 
330
+ #: src/includes/class-updraft-smush-manager-commands.php:245
331
  msgid "Stats could not be cleared"
332
  msgstr ""
333
 
334
+ #: src/includes/class-updraft-smush-manager-commands.php:250
335
  msgid "Stats cleared successfully"
336
  msgstr ""
337
 
338
+ #: src/includes/class-updraft-smush-manager-commands.php:290
339
  msgid "Pending tasks could not be cleared"
340
  msgstr ""
341
 
342
+ #: src/includes/class-updraft-smush-manager-commands.php:295
343
  msgid "Pending tasks cleared successfully"
344
  msgstr ""
345
 
346
+ #: src/includes/class-updraft-smush-manager-commands.php:318
347
  msgid "This image is marked as already compressed by another tool."
348
  msgstr ""
349
 
350
+ #: src/includes/class-updraft-smush-manager-commands.php:341
351
  msgid "The selected image was successfully marked as uncompressed"
352
  msgid_plural "The selected images were successfully marked as uncompressed"
353
  msgstr[0] ""
354
  msgstr[1] ""
355
 
356
+ #: src/includes/class-updraft-smush-manager-commands.php:343
357
  msgid "The selected image was successfully marked as compressed"
358
  msgid_plural "The selected images were successfully marked as compressed"
359
  msgstr[0] ""
360
  msgstr[1] ""
361
 
362
+ #: src/includes/class-updraft-smush-manager-commands.php:370, src/includes/class-updraft-smush-manager-commands.php:394, src/includes/class-updraft-smush-manager.php:442
363
  msgid "All the compressed images were successfully restored."
364
  msgstr ""
365
 
366
+ #: src/includes/class-updraft-smush-manager-commands.php:396, src/includes/class-updraft-smush-manager.php:448
367
  msgid "All the compressed images were successfully marked as uncompressed."
368
  msgstr ""
369
 
370
+ #: src/includes/class-updraft-smush-manager-commands.php:438
371
  msgid "Log file does not exist or could not be read"
372
  msgstr ""
373
 
374
+ #: src/includes/class-updraft-smush-manager.php:123
375
  msgid "The file was either compressed using another tool or marked as compressed"
376
  msgstr ""
377
 
378
+ #: src/includes/class-updraft-smush-manager.php:131, src/includes/class-updraft-smush-task.php:284
379
  msgid "The file was compressed to %s using WP-Optimize"
380
  msgstr ""
381
 
382
+ #: src/includes/class-updraft-smush-manager.php:134
383
  msgid "The file was compressed from %s to %s, saving %s percent, using WP-Optimize"
384
  msgstr ""
385
 
386
+ #: src/includes/class-updraft-smush-manager.php:336
387
  msgid "The backup was not found; it may have been deleted or was already restored"
388
  msgstr ""
389
 
390
+ #: src/includes/class-updraft-smush-manager.php:338
391
  msgid "The destination could not be written to."
392
  msgstr ""
393
 
394
+ #: src/includes/class-updraft-smush-manager.php:338
395
  msgid "Please check your folder's permissions"
396
  msgstr ""
397
 
398
+ #: src/includes/class-updraft-smush-manager.php:340
399
  msgid "The file could not be copied; check your PHP error logs for details"
400
  msgstr ""
401
 
402
+ #: src/includes/class-updraft-smush-manager.php:342
403
  msgid "The backup file %s could not be deleted."
404
  msgstr ""
405
 
406
+ #: src/includes/class-updraft-smush-manager.php:426
407
  msgid "%s compressed images were restored from their backup for the site %s"
408
  msgstr ""
409
 
410
+ #: src/includes/class-updraft-smush-manager.php:428
411
  msgid "%s compressed images were restored from their backup"
412
  msgstr ""
413
 
414
+ #: src/includes/class-updraft-smush-manager.php:440
415
  msgid "All the compressed images for the site %s were successfully restored."
416
  msgstr ""
417
 
418
+ #: src/includes/class-updraft-smush-manager.php:446
419
  msgid "All the compressed images for the site %s were successfully marked as uncompressed."
420
  msgstr ""
421
 
422
+ #: src/includes/class-updraft-smush-manager.php:702
423
  msgid "No uncompressed images were found."
424
  msgstr ""
425
 
426
+ #: src/includes/class-updraft-smush-manager.php:703
427
  msgid "An unexpected response was received from the server. More information has been logged in the browser console."
428
  msgstr ""
429
 
430
+ #: src/includes/class-updraft-smush-manager.php:704
431
  msgid "Please wait: compressing the selected image."
432
  msgstr ""
433
 
434
+ #: src/includes/class-updraft-smush-manager.php:705
435
  msgid "Please try again later."
436
  msgstr ""
437
 
438
+ #: src/includes/class-updraft-smush-manager.php:706
439
  msgid "Connecting to the Smush API server, please wait"
440
  msgstr ""
441
 
442
+ #: src/includes/class-updraft-smush-manager.php:707
443
  msgid "Please wait while the request is being processed"
444
  msgstr ""
445
 
446
+ #: src/includes/class-updraft-smush-manager.php:708
447
  msgid "There was an error connecting to the image compression server. This could mean either the server is temporarily unavailable or there are connectivity issues with your internet connection. Please try later."
448
  msgstr ""
449
 
450
+ #: src/includes/class-updraft-smush-manager.php:709
451
  msgid "Please select the images you want compressed from the \"Uncompressed images\" panel first"
452
  msgstr ""
453
 
454
+ #: src/includes/class-updraft-smush-manager.php:710
455
  msgid "Please wait: updating information about the selected image."
456
  msgstr ""
457
 
458
+ #: src/includes/class-updraft-smush-manager.php:711
459
  msgid "Please select the images you want to mark as already compressed from the \"Uncompressed images\" panel first"
460
  msgstr ""
461
 
462
+ #: src/includes/class-updraft-smush-manager.php:712
463
  msgid "View Image"
464
  msgstr ""
465
 
466
+ #: src/includes/class-updraft-smush-manager.php:713
467
  msgid "Do you really want to delete all backup images now? This action is irreversible."
468
  msgstr ""
469
 
470
+ #: src/includes/class-updraft-smush-manager.php:714
471
  msgid "Do you really want to mark all the images as uncompressed? This action is irreversible."
472
  msgstr ""
473
 
474
+ #: src/includes/class-updraft-smush-manager.php:715
475
  msgid "Do you want to restore the original images from the backup (where they exist?)"
476
  msgstr ""
477
 
478
+ #: src/includes/class-updraft-smush-manager.php:716
479
  msgid "Do you really want to restore all the compressed images?"
480
  msgstr ""
481
 
482
+ #: src/includes/class-updraft-smush-manager.php:717, src/templates/images/smush-details.php:2
483
  msgid "More"
484
  msgstr ""
485
 
486
+ #: src/includes/class-updraft-smush-manager.php:718
487
  msgid "Less"
488
  msgstr ""
489
 
490
+ #: src/includes/class-updraft-smush-manager.php:735
491
  msgid "Compress Image"
492
  msgstr ""
493
 
494
+ #: src/includes/class-updraft-smush-manager.php:1519
495
  msgid "Compress image"
496
  msgstr ""
497
 
498
+ #: src/includes/class-updraft-smush-task.php:287
499
  msgid "The file was compressed from %s to %s saving %s percent using WP-Optimize"
500
  msgstr ""
501
 
502
+ #: src/includes/class-updraft-smush-task.php:326
503
  msgid "Failed with error code %s - %s"
504
  msgstr ""
505
 
506
+ #: src/includes/class-updraft-smush-task.php:352
507
  msgid "Initialised"
508
  msgstr ""
509
 
510
+ #: src/includes/class-updraft-smush-task.php:353
511
  msgid "Connecting to API server"
512
  msgstr ""
513
 
514
+ #: src/includes/class-updraft-smush-task.php:354
515
  msgid "Processing response"
516
  msgstr ""
517
 
518
+ #: src/includes/class-updraft-smush-task.php:355
519
  msgid "Backing up original image"
520
  msgstr ""
521
 
522
+ #: src/includes/class-updraft-smush-task.php:356
523
  msgid "Saving optimized image"
524
  msgstr ""
525
 
526
+ #: src/includes/class-updraft-smush-task.php:357
527
  msgid "Successful"
528
  msgstr ""
529
 
531
  msgid "Preview found items"
532
  msgstr ""
533
 
534
+ #: src/includes/class-wp-optimize-admin.php:42, src/templates/database/optimize-table.php:34
535
+ msgid "Optimizations"
536
  msgstr ""
537
 
538
+ #: src/includes/class-wp-optimize-admin.php:43
539
+ msgid "Tables"
540
  msgstr ""
541
 
542
+ #: src/includes/class-wp-optimize-admin.php:44, src/includes/class-wp-optimize-admin.php:63, src/includes/class-wp-optimize-admin.php:68, src/includes/class-wp-optimize-admin.php:652, src/includes/class-wp-optimize-admin.php:653, src/templates/minify/status-tab.php:111, src/templates/minify/status-tab.php:133, src/wp-optimize.php:982
543
+ msgid "Settings"
544
  msgstr ""
545
 
546
+ #: src/includes/class-wp-optimize-admin.php:47
547
+ msgid "Compress images"
548
  msgstr ""
549
 
550
+ #: src/includes/class-wp-optimize-admin.php:48
551
+ msgid "Unused images and sizes"
552
  msgstr ""
553
 
554
+ #: src/includes/class-wp-optimize-admin.php:49
555
+ msgid "Lazy-load"
556
  msgstr ""
557
 
558
+ #: src/includes/class-wp-optimize-admin.php:53
559
+ msgid "Preload"
560
  msgstr ""
561
 
562
+ #: src/includes/class-wp-optimize-admin.php:54
563
+ msgid "Advanced settings"
564
  msgstr ""
565
 
566
+ #: src/includes/class-wp-optimize-admin.php:55, src/templates/cache/page-cache.php:6
567
+ msgid "Gzip compression"
568
  msgstr ""
569
 
570
+ #: src/includes/class-wp-optimize-admin.php:56
571
+ msgid "Static file headers"
572
  msgstr ""
573
 
574
+ #: src/includes/class-wp-optimize-admin.php:59
575
+ msgid "Minify status"
576
  msgstr ""
577
 
578
+ #: src/includes/class-wp-optimize-admin.php:60
579
+ msgid "JavaScript"
580
  msgstr ""
581
 
582
+ #: src/includes/class-wp-optimize-admin.php:60, src/includes/class-wp-optimize-admin.php:61
583
+ msgid "Disabled"
584
  msgstr ""
585
 
586
+ #: src/includes/class-wp-optimize-admin.php:61
587
+ msgid "CSS"
588
  msgstr ""
589
 
590
+ #: src/includes/class-wp-optimize-admin.php:62
591
+ msgid "Fonts"
592
  msgstr ""
593
 
594
+ #: src/includes/class-wp-optimize-admin.php:64
595
+ msgid "Advanced"
596
  msgstr ""
597
 
598
+ #: src/includes/class-wp-optimize-admin.php:71
599
+ msgid "Support / FAQs"
600
  msgstr ""
601
 
602
+ #: src/includes/class-wp-optimize-admin.php:72
603
+ msgid "Premium / Plugin family"
604
  msgstr ""
605
 
606
+ #: src/includes/class-wp-optimize-admin.php:320
607
+ msgid "Same as cache lifespan"
608
  msgstr ""
609
 
610
+ #: src/includes/class-wp-optimize-admin.php:321, src/templates/database/settings-auto-cleanup.php:27
611
+ msgid "Daily"
612
  msgstr ""
613
 
614
+ #: src/includes/class-wp-optimize-admin.php:322, src/templates/database/settings-auto-cleanup.php:28
615
+ msgid "Weekly"
616
  msgstr ""
617
 
618
+ #: src/includes/class-wp-optimize-admin.php:323, src/templates/database/settings-auto-cleanup.php:29
619
+ msgid "Fortnightly"
620
  msgstr ""
621
 
622
+ #: src/includes/class-wp-optimize-admin.php:324, src/templates/database/settings-auto-cleanup.php:30
623
+ msgid "Monthly (approx. - every 30 days)"
624
  msgstr ""
625
 
626
+ #: src/includes/class-wp-optimize-admin.php:447
627
+ msgid "Your server takes care of table optimization"
628
+ msgstr ""
 
 
629
 
630
+ #: src/includes/class-wp-optimize-admin.php:477
631
+ msgid "Enjoyed %s? Please leave us a %s rating. We really appreciate your support!"
632
+ msgstr ""
633
+
634
+ #: src/includes/class-wp-optimize-admin.php:559, src/includes/class-wp-optimize-admin.php:562, src/templates/cache/page-cache.php:52, src/wp-optimize.php:953, src/wp-optimize.php:956
635
+ msgid "Purge cache"
636
+ msgstr ""
637
+
638
+ #: src/includes/class-wp-optimize-admin.php:611, src/includes/class-wp-optimize-admin.php:612
639
+ msgid "Database"
640
+ msgstr ""
641
+
642
+ #: src/includes/class-wp-optimize-admin.php:620, src/includes/class-wp-optimize-admin.php:621, src/templates/images/lazyload.php:22
643
+ msgid "Images"
644
+ msgstr ""
645
+
646
+ #: src/includes/class-wp-optimize-admin.php:629, src/includes/class-wp-optimize-admin.php:630
647
+ msgid "Cache"
648
+ msgstr ""
649
+
650
+ #: src/includes/class-wp-optimize-admin.php:638, src/includes/class-wp-optimize-admin.php:639
651
+ msgid "Minify"
652
+ msgstr ""
653
+
654
+ #: src/includes/class-wp-optimize-admin.php:661
655
+ msgid "Support & FAQs"
656
+ msgstr ""
657
+
658
+ #: src/includes/class-wp-optimize-admin.php:662
659
+ msgid "Help"
660
+ msgstr ""
661
+
662
+ #: src/includes/class-wp-optimize-admin.php:670, src/includes/class-wp-optimize-admin.php:671
663
+ msgid "Premium Upgrade"
664
+ msgstr ""
665
+
666
+ #: src/includes/class-wp-optimize-admin.php:702
667
+ msgid "You have no permissions to run optimizations."
668
+ msgstr ""
669
+
670
+ #: src/includes/class-wp-optimize-admin.php:711
671
+ msgid "You have no permissions to manage WP-Optimize settings."
672
+ msgstr ""
673
+
674
+ #: src/includes/class-wp-optimize-browser-cache.php:57
675
+ msgid "We successfully updated your .htaccess file. But it seems one of Apache modules - mod_expires or mod_headers is not active."
676
+ msgstr ""
677
+
678
+ #: src/includes/class-wp-optimize-browser-cache.php:125
679
+ msgid "Browser static caching settings already exists in the .htaccess file"
680
+ msgstr ""
681
+
682
+ #: src/includes/class-wp-optimize-browser-cache.php:168
683
+ msgid "We successfully updated your .htaccess file."
684
+ msgstr ""
685
+
686
+ #: src/includes/class-wp-optimize-browser-cache.php:175, src/includes/class-wp-optimize-gzip-compression.php:209
687
+ msgid "We can't update your %s file. Please try to add following lines manually:"
688
  msgstr ""
689
 
690
+ #: src/includes/class-wp-optimize-browser-cache.php:180, src/includes/class-wp-optimize-gzip-compression.php:207
691
+ msgid "We can't update your %s file. Please try to remove following lines manually:"
692
+ msgstr ""
693
+
694
+ #: src/includes/class-wp-optimize-commands.php:200, src/includes/class-wp-optimize-commands.php:248, src/includes/class-wp-optimize-commands.php:290
695
+ msgid "No optimization was indicated."
696
+ msgstr ""
697
+
698
+ #: src/includes/class-wp-optimize-commands.php:428
699
+ msgid "We could not determine if Gzip compression is enabled."
700
+ msgstr ""
701
+
702
+ #: src/includes/class-wp-optimize-commands.php:440, src/includes/class-wp-optimize-commands.php:449
703
+ msgid "Please upload a valid settings file."
704
+ msgstr ""
705
+
706
+ #: src/includes/class-wp-optimize-commands.php:513
707
+ msgid "No such command found"
708
+ msgstr ""
709
+
710
+ #: src/includes/class-wp-optimize-commands.php:519
711
+ msgid "No tweak provided"
712
+ msgstr ""
713
+
714
+ #: src/includes/class-wp-optimize-commands.php:538
715
+ msgid "The command %s failed"
716
+ msgstr ""
717
+
718
+ #: src/includes/class-wp-optimize-database-information.php:432, src/includes/class-wp-optimize-database-information.php:510, src/includes/class-wp-optimizer.php:389, src/templates/database/tables-body.php:35
719
+ msgid "WordPress core"
720
+ msgstr ""
721
+
722
+ #: src/includes/class-wp-optimize-gzip-compression.php:82, src/includes/class-wp-optimize-gzip-compression.php:86
723
+ msgid "We can't definitely determine Gzip status as API doesn't return correct answer."
724
+ msgstr ""
725
+
726
+ #: src/includes/class-wp-optimize-gzip-compression.php:119, src/includes/class-wp-optimize-gzip-compression.php:121, src/includes/class-wp-optimize-gzip-compression.php:123
727
+ msgid "We successfully added Gzip compression settings into .htaccess file."
728
+ msgstr ""
729
+
730
+ #: src/includes/class-wp-optimize-gzip-compression.php:119, src/includes/class-wp-optimize-gzip-compression.php:121, src/includes/class-wp-optimize-gzip-compression.php:123
731
+ msgid "However, the test file we fetched was not Gzip-compressed."
732
+ msgstr ""
733
+
734
+ #: src/includes/class-wp-optimize-gzip-compression.php:119
735
+ msgid "It seems one of Apache modules - mod_filter or mod_deflate - is not active."
736
+ msgstr ""
737
+
738
+ #: src/includes/class-wp-optimize-gzip-compression.php:121
739
+ msgid "Possible causes include that Apache (your webserver) is not configured to allow .htaccess files to take effect, or one of Apache modules - mod_filter or mod_deflate - is not active, or the webserver is configured to disallow Gzip compression."
740
+ msgstr ""
741
+
742
+ #: src/includes/class-wp-optimize-gzip-compression.php:121, src/includes/class-wp-optimize-gzip-compression.php:123
743
+ msgid "You should speak to your web hosting support to find how to enable it."
744
+ msgstr ""
745
+
746
+ #: src/includes/class-wp-optimize-notices.php:41
747
  msgid "Make sure you backup before you optimize your database"
748
  msgstr ""
749
 
750
+ #: src/includes/class-wp-optimize-notices.php:42
751
  msgid "UpdraftPlus is the world's most trusted backup plugin from the owners of WP-Optimize"
752
  msgstr ""
753
 
754
+ #: src/includes/class-wp-optimize-notices.php:52
755
  msgid "Save Time and Money. Manage multiple WordPress sites from one location."
756
  msgstr ""
757
 
758
+ #: src/includes/class-wp-optimize-notices.php:53
759
  msgid "UpdraftCentral is a highly efficient way to take backup, update and manage multiple WP sites from one location."
760
  msgstr ""
761
 
762
+ #: src/includes/class-wp-optimize-notices.php:62
763
  msgid "Hey - We noticed WP-Optimize has kept your site running fast for a while. If you like us, please consider leaving a positive review to spread the word. Or if you have any issues or questions please leave us a support message"
764
  msgstr ""
765
 
766
+ #: src/includes/class-wp-optimize-notices.php:62
767
  msgid "here"
768
  msgstr ""
769
 
770
+ #: src/includes/class-wp-optimize-notices.php:62
771
  msgid "Thank you so much!"
772
  msgstr ""
773
 
774
+ #: src/includes/class-wp-optimize-notices.php:83
775
  msgid "Perform optimizations while your visitors sleep"
776
  msgstr ""
777
 
778
+ #: src/includes/class-wp-optimize-notices.php:84
779
  msgid "WP-Optimize Premium features an advanced scheduling system that allows you to run optimizations at the quietest time of day (or night)."
780
  msgstr ""
781
 
782
+ #: src/includes/class-wp-optimize-notices.php:94
783
  msgid "Manage a multisite installation? Need extra control?"
784
  msgstr ""
785
 
786
+ #: src/includes/class-wp-optimize-notices.php:95
787
  msgid "WP-Optimize Premium's multisite feature includes a locking system that restricts optimization commands to users with the right permissions."
788
  msgstr ""
789
 
790
+ #: src/includes/class-wp-optimize-notices.php:105
791
  msgid "WP-Optimize Premium offers unparalleled choice and flexibility"
792
  msgstr ""
793
 
794
+ #: src/includes/class-wp-optimize-notices.php:106
795
  msgid "Upgrade today to combine over a dozen optimization options."
796
  msgstr ""
797
 
798
+ #: src/includes/class-wp-optimize-notices.php:116
799
  msgid "Remove unwanted images for better site performance."
800
  msgstr ""
801
 
802
+ #: src/includes/class-wp-optimize-notices.php:117
803
  msgid "WP-Optimize Premium comes with a feature to easily remove orphaned images, or images that exceed a certain size from your website."
804
  msgstr ""
805
 
806
+ #: src/includes/class-wp-optimize-notices.php:127
807
  msgid "Power tweaks for advanced users and better site performance."
808
  msgstr ""
809
 
810
+ #: src/includes/class-wp-optimize-notices.php:128
811
  msgid "WP-Optimize Premium comes with the power tweaks that will enable you to improve performance by targeting specific weak points, either in WordPress Core, or in popular plugins."
812
  msgstr ""
813
 
814
+ #: src/includes/class-wp-optimize-notices.php:138
815
  msgid "by"
816
  msgstr ""
817
 
818
+ #: src/includes/class-wp-optimize-notices.php:139
819
  msgid "The WordPress subscription extension for WooCommerce store owners."
820
  msgstr ""
821
 
822
+ #: src/includes/class-wp-optimize-notices.php:150
823
  msgid "Black Friday - 20% off WP-Optimize Premium until November 30th"
824
  msgstr ""
825
 
826
+ #: src/includes/class-wp-optimize-notices.php:151, src/includes/class-wp-optimize-notices.php:165, src/includes/class-wp-optimize-notices.php:179, src/includes/class-wp-optimize-notices.php:193
827
  msgid "To benefit, use this discount code:"
828
  msgstr ""
829
 
830
+ #: src/includes/class-wp-optimize-notices.php:164
831
  msgid "Happy New Year - 20% off WP-Optimize Premium until January 14th"
832
  msgstr ""
833
 
834
+ #: src/includes/class-wp-optimize-notices.php:178
835
  msgid "Spring sale - 20% off WP-Optimize Premium until May 31st"
836
  msgstr ""
837
 
838
+ #: src/includes/class-wp-optimize-notices.php:192
839
  msgid "Summer sale - 20% off WP-Optimize Premium until July 31st"
840
  msgstr ""
841
 
842
+ #: src/includes/class-wp-optimize-notices.php:206
843
  msgid "The Updraft Plugin Collection Sale"
844
  msgstr ""
845
 
846
+ #: src/includes/class-wp-optimize-notices.php:207
847
  msgid "Get 20% off any of our plugins. But hurry - offer ends 30th September, use this discount code:"
848
  msgstr ""
849
 
850
+ #: src/includes/class-wp-optimize-options.php:144
851
+ msgid "Auto backup option updated."
852
+ msgstr ""
853
+
854
+ #: src/includes/class-wp-optimize-options.php:272
855
+ msgid "Settings updated."
856
+ msgstr ""
857
+
858
+ #: src/includes/class-wp-optimize-preloader.php:251
859
+ msgid "%1$s out of %2$s URL preloaded"
860
+ msgid_plural "%1$s out of %2$s URLs preloaded"
861
+ msgstr[0] ""
862
+ msgstr[1] ""
863
+
864
+ #: src/includes/class-wp-optimize-preloader.php:253
865
+ msgid "Preloading posts found in sitemap:"
866
+ msgstr ""
867
+
868
+ #: src/includes/class-wp-optimizer.php:134, src/includes/class-wp-optimizer.php:140
869
+ msgid "No such optimization"
870
+ msgstr ""
871
+
872
+ #: src/includes/class-wp-optimizer.php:561
873
+ msgid "Comments have now been disabled on all current and previously published posts."
874
+ msgstr ""
875
+
876
+ #: src/includes/class-wp-optimizer.php:562
877
+ msgid "All comments on existing posts were disabled at %s."
878
+ msgstr ""
879
+
880
+ #: src/includes/class-wp-optimizer.php:565
881
+ msgid "Comments have now been enabled on all current and previously published posts."
882
+ msgstr ""
883
+
884
+ #: src/includes/class-wp-optimizer.php:566
885
+ msgid "All comments on existing posts were enabled at %s."
886
+ msgstr ""
887
+
888
+ #: src/includes/class-wp-optimizer.php:573
889
+ msgid "Trackbacks have now been disabled on all current and previously published posts."
890
+ msgstr ""
891
+
892
+ #: src/includes/class-wp-optimizer.php:574
893
+ msgid "All trackbacks on existing posts were disabled at %s."
894
+ msgstr ""
895
+
896
+ #: src/includes/class-wp-optimizer.php:577
897
+ msgid "Trackbacks have now been enabled on all current and previously published posts."
898
+ msgstr ""
899
+
900
+ #: src/includes/class-wp-optimizer.php:578
901
+ msgid "All trackbacks on existing posts were enabled at %s."
902
+ msgstr ""
903
+
904
  #: src/minify/class-wp-optimize-minify-admin.php:78
905
  msgid "WP-Optimize Minify requires PHP 5.4 or higher. You’re using version %s."
906
  msgstr ""
961
  msgid "All caches from WP-Optimize Minify have been purged."
962
  msgstr ""
963
 
964
+ #: src/minify/class-wp-optimize-minify-preloader.php:63
965
+ msgid "Minify: Creating tasks for preload site urls."
966
  msgstr ""
967
 
968
+ #: src/minify/class-wp-optimize-minify-preloader.php:75
969
+ msgid "Minify: Tasks for preload site urls created."
970
  msgstr ""
971
 
972
+ #: src/minify/class-wp-optimize-minify-preloader.php:100
973
+ msgid "Minify is disabled."
974
  msgstr ""
975
 
976
+ #: src/minify/class-wp-optimize-minify-preloader.php:112
977
+ msgid "Probably minify preload is running already."
978
  msgstr ""
979
 
980
+ #: src/minify/class-wp-optimize-minify.php:69
981
+ msgid "Minify cache"
982
  msgstr ""
983
 
984
+ #: src/minify/class-wp-optimize-minify.php:83
985
+ msgid "Purge minify cache"
986
  msgstr ""
987
 
988
+ #: src/minify/class-wp-optimize-minify.php:212
989
+ msgid "The minify cache was successfully purged."
990
  msgstr ""
991
 
992
  #: src/optimizations/attachments.php:30
1473
  msgid "Maximum compression"
1474
  msgstr ""
1475
 
1476
+ #: src/templates/admin-metabox-smush.php:38, src/templates/images/smush.php:61
1477
  msgid "Best image quality"
1478
  msgstr ""
1479
 
1480
+ #: src/templates/admin-metabox-smush.php:41, src/templates/images/smush.php:82
1481
  msgid "Show advanced options"
1482
  msgstr ""
1483
 
1484
+ #: src/templates/admin-metabox-smush.php:43
1485
  msgid "Service provider"
1486
  msgstr ""
1487
 
1488
+ #: src/templates/admin-metabox-smush.php:47, src/templates/images/smush.php:90
1489
  msgid "reSmush.it"
1490
  msgstr ""
1491
 
1492
+ #: src/templates/admin-metabox-smush.php:50
1493
  msgid "Other options"
1494
  msgstr ""
1495
 
1496
+ #: src/templates/admin-metabox-smush.php:54
1497
  msgid "Backup original"
1498
  msgstr ""
1499
 
1500
+ #: src/templates/admin-metabox-smush.php:58
1501
  msgid "Keep EXIF data"
1502
  msgstr ""
1503
 
1504
+ #: src/templates/admin-metabox-smush.php:64
1505
  msgid "Note: This image is already compressed by another plugin"
1506
  msgstr ""
1507
 
1508
+ #: src/templates/admin-metabox-smush.php:68
1509
  msgid "Compress"
1510
  msgstr ""
1511
 
1512
+ #: src/templates/admin-metabox-smush.php:72, src/templates/images/smush.php:142
1513
  msgid "Mark as already compressed"
1514
  msgstr ""
1515
 
1516
+ #: src/templates/admin-metabox-smush.php:76
1517
  msgid "Mark as uncompressed"
1518
  msgstr ""
1519
 
1520
+ #: src/templates/admin-metabox-smush.php:92
1521
  msgid "WP-Optimize image settings"
1522
  msgstr ""
1523
 
1524
+ #: src/templates/admin-metabox-smush.php:98, src/templates/cache/page-cache.php:11, src/templates/images/smush.php:4, src/templates/images/smush.php:198, src/templates/images/smush.php:204, src/templates/images/smush.php:209, src/templates/minify/status-tab.php:5
1525
  msgid "Close"
1526
  msgstr ""
1527
 
1528
+ #: src/templates/admin-metabox-smush.php:103, src/templates/cache/page-cache-preload.php:7, src/templates/database/tables-list-after.php:58, src/templates/images/smush.php:181, src/templates/images/smush.php:214, src/templates/minify/preload-tab.php:18, src/wp-optimize.php:899
1529
  msgid "Cancel"
1530
  msgstr ""
1531
 
1581
  msgid "More plugins"
1582
  msgstr ""
1583
 
1584
+ #: src/templates/admin-page-header.php:29, src/templates/settings/may-also-like.php:26, src/wp-optimize.php:978
1585
  msgid "Premium"
1586
  msgstr ""
1587
 
1617
  msgid "disabled"
1618
  msgstr ""
1619
 
1620
+ #: src/templates/cache/browser-cache.php:39, src/wp-optimize.php:911
1621
  msgid "Update"
1622
  msgstr ""
1623
 
1624
+ #: src/templates/cache/browser-cache.php:39, src/templates/cache/gzip-compression.php:47, src/templates/settings/settings-trackback-and-comments.php:18, src/templates/settings/settings-trackback-and-comments.php:49, src/wp-optimize.php:901
1625
  msgid "Enable"
1626
  msgstr ""
1627
 
1685
  msgid "Check status again"
1686
  msgstr ""
1687
 
1688
+ #: src/templates/cache/gzip-compression.php:47, src/templates/settings/settings-trackback-and-comments.php:20, src/templates/settings/settings-trackback-and-comments.php:51, src/wp-optimize.php:902
1689
  msgid "Disable"
1690
  msgstr ""
1691
 
1734
  msgstr ""
1735
 
1736
  #: src/templates/cache/page-cache-advanced.php:32
1737
+ msgid "Conditional tags to exclude from caching"
1738
+ msgstr ""
1739
+
1740
+ #: src/templates/cache/page-cache-advanced.php:39
1741
+ msgid "List conditional tags (e.g. %s) that should not be cached (one per line)."
1742
+ msgstr ""
1743
+
1744
+ #: src/templates/cache/page-cache-advanced.php:41
1745
+ msgid "You can find more details about condtional tags from %s here"
1746
+ msgstr ""
1747
+
1748
+ #: src/templates/cache/page-cache-advanced.php:51
1749
  msgid "List of browser agent strings which, if detected, will prevent caching"
1750
  msgstr ""
1751
 
1752
+ #: src/templates/cache/page-cache-advanced.php:56
1753
  msgid "List of browser agents strings or substrings that should not be served cached files (one per line)"
1754
  msgstr ""
1755
 
1756
+ #: src/templates/cache/page-cache-advanced.php:60
1757
  msgid "If any of the above strings is found in the User-Agent HTTP header, then the requested page will not be cached."
1758
  msgstr ""
1759
 
1773
  msgid "Preload now"
1774
  msgstr ""
1775
 
1776
+ #: src/templates/cache/page-cache-preload.php:7, src/templates/minify/preload-tab.php:18, src/wp-optimize.php:912
1777
  msgid "Run now"
1778
  msgstr ""
1779
 
1813
  msgid "Page caching"
1814
  msgstr ""
1815
 
 
 
 
 
1816
  #: src/templates/cache/page-cache.php:7
1817
  msgid "Browser static file caching (via headers)"
1818
  msgstr ""
1865
  msgid "Purge the cache"
1866
  msgstr ""
1867
 
 
 
 
 
1868
  #: src/templates/cache/page-cache.php:57
1869
  msgid "Deletes the entire cache contents but keeps the page cache enabled."
1870
  msgstr ""
1871
 
1872
+ #: src/templates/cache/page-cache.php:60, src/wp-optimize.php:915
1873
  msgid "Current cache size:"
1874
  msgstr ""
1875
 
1876
+ #: src/templates/cache/page-cache.php:61, src/wp-optimize.php:916
1877
  msgid "Number of files:"
1878
  msgstr ""
1879
 
1929
  msgid "Go"
1930
  msgstr ""
1931
 
1932
+ #: src/templates/database/optimize-table.php:8, src/templates/database/tables.php:5, src/wp-optimize.php:923
1933
  msgid "Loading data..."
1934
  msgstr ""
1935
 
1937
  msgid "Warning: This operation is permanent. Continue?"
1938
  msgstr ""
1939
 
 
 
 
 
1940
  #: src/templates/database/optimize-table.php:38
1941
  msgid "Run all selected optimizations"
1942
  msgstr ""
1969
  msgid "Select schedule type (default is Weekly)"
1970
  msgstr ""
1971
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1972
  #: src/templates/database/settings-general.php:3, src/templates/settings/settings-general.php:3
1973
  msgid "General settings"
1974
  msgstr ""
2079
  msgid "Belongs to:"
2080
  msgstr ""
2081
 
2082
+ #: src/templates/database/tables-body.php:37
2083
+ msgid "This table is used by many plugins for batch processing. "
2084
+ msgstr ""
2085
+
2086
  #: src/templates/database/tables-body.php:38
2087
+ msgid "Thus, it cannot be deleted."
2088
+ msgstr ""
2089
+
2090
+ #: src/templates/database/tables-body.php:41
2091
  msgid "Known plugins that use this table name:"
2092
  msgstr ""
2093
 
2094
+ #: src/templates/database/tables-body.php:52
2095
  msgid "not installed"
2096
  msgstr ""
2097
 
2098
+ #: src/templates/database/tables-body.php:54
2099
  msgid "inactive"
2100
  msgstr ""
2101
 
2102
+ #: src/templates/database/tables-body.php:63, src/templates/database/tables.php:41
2103
  msgid "Records"
2104
  msgstr ""
2105
 
2106
+ #: src/templates/database/tables-body.php:64, src/templates/database/tables.php:42
2107
  msgid "Data Size"
2108
  msgstr ""
2109
 
2110
+ #: src/templates/database/tables-body.php:65, src/templates/database/tables.php:43
2111
  msgid "Index Size"
2112
  msgstr ""
2113
 
2114
+ #: src/templates/database/tables-body.php:68, src/templates/database/tables-body.php:81, src/templates/database/tables.php:44
2115
  msgid "Type"
2116
  msgstr ""
2117
 
2118
+ #: src/templates/database/tables-body.php:70, src/templates/database/tables-body.php:82, src/templates/database/tables.php:45
2119
  msgid "Overhead"
2120
  msgstr ""
2121
 
2122
+ #: src/templates/database/tables-body.php:89, src/templates/database/tables-body.php:118, src/templates/database/tables.php:46, src/templates/settings/settings-logging.php:25
2123
  msgid "Actions"
2124
  msgstr ""
2125
 
2126
+ #: src/templates/database/tables-body.php:104
2127
  msgid "Total:"
2128
  msgstr ""
2129
 
2130
+ #: src/templates/database/tables-body.php:105
2131
  msgid "%s Table"
2132
  msgid_plural "%s Tables"
2133
  msgstr[0] ""
2229
  msgid "Follow this link to read more about lazy-loading images and video"
2230
  msgstr ""
2231
 
 
 
 
 
2232
  #: src/templates/images/lazyload.php:23
2233
  msgid "Iframes and Videos"
2234
  msgstr ""
2297
  msgid "Uses lossless compression, which results in much better image quality but lower file size savings per image"
2298
  msgstr ""
2299
 
2300
+ #: src/templates/images/smush.php:63
2301
  msgid "Not sure what to choose?"
2302
  msgstr ""
2303
 
2304
+ #: src/templates/images/smush.php:63
2305
  msgid "Read our article \"Lossy vs Lossless image compression\""
2306
  msgstr ""
2307
 
2308
+ #: src/templates/images/smush.php:64
2309
  msgid "WebP conversion"
2310
  msgstr ""
2311
 
2312
+ #: src/templates/images/smush.php:68
2313
  msgid "Note: Local WebP conversion tools are not allowed on your server."
2314
  msgstr ""
2315
 
2316
+ #: src/templates/images/smush.php:70
2317
  msgid "Available WebP conversion tools:"
2318
  msgstr ""
2319
 
2320
+ #: src/templates/images/smush.php:73
2321
  msgid "Create WebP version of image"
2322
  msgstr ""
2323
 
2324
+ #: src/templates/images/smush.php:74
2325
  msgid "Creates WebP image format and serves it whenever possible."
2326
  msgstr ""
2327
 
2328
+ #: src/templates/images/smush.php:78
2329
  msgid "No WebP conversion tools are available on your web-server."
2330
  msgstr ""
2331
 
2332
+ #: src/templates/images/smush.php:82
2333
  msgid "Hide advanced options"
2334
  msgstr ""
2335
 
2336
+ #: src/templates/images/smush.php:84
2337
+ msgid "Reset WebP serving method"
2338
+ msgstr ""
2339
+
2340
+ #: src/templates/images/smush.php:85
2341
+ msgid "The WebP serving method has been reset"
2342
+ msgstr ""
2343
+
2344
+ #: src/templates/images/smush.php:87
2345
  msgid "Compression service"
2346
  msgstr ""
2347
 
2348
+ #: src/templates/images/smush.php:91
2349
  msgid "Can keep EXIF data"
2350
  msgstr ""
2351
 
2352
+ #: src/templates/images/smush.php:92
2353
  msgid "Service provided by reSmush.it"
2354
  msgstr ""
2355
 
2356
+ #: src/templates/images/smush.php:97
2357
  msgid "More options"
2358
  msgstr ""
2359
 
2360
+ #: src/templates/images/smush.php:100
2361
  msgid "Preserve EXIF data"
2362
  msgstr ""
2363
 
2364
+ #: src/templates/images/smush.php:103
2365
  msgid "Backup original images"
2366
  msgstr ""
2367
 
2368
+ #: src/templates/images/smush.php:104
2369
  msgid "The original images are stored alongside the compressed images, you can visit the edit screen of the individual images in the Media Library to restore them."
2370
  msgstr ""
2371
 
2372
+ #: src/templates/images/smush.php:107
2373
  msgid "Automatically delete image backups after"
2374
  msgstr ""
2375
 
2376
+ #: src/templates/images/smush.php:107, src/templates/minify/advanced-tab.php:90
2377
  msgid "days"
2378
  msgstr ""
2379
 
2380
+ #: src/templates/images/smush.php:107
2381
  msgid "or"
2382
  msgstr ""
2383
 
2384
+ #: src/templates/images/smush.php:107
2385
  msgid "Delete all backup images now"
2386
  msgstr ""
2387
 
2388
+ #: src/templates/images/smush.php:111
2389
  msgid "Mark all images as uncompressed"
2390
  msgstr ""
2391
 
2392
+ #: src/templates/images/smush.php:114
2393
  msgid "Restore all compressed images"
2394
  msgstr ""
2395
 
2396
+ #: src/templates/images/smush.php:114
2397
  msgid "Only the original image will be restored. In order to restore the other sizes, you should use a plugin such as \"Regenerate Thumbnails\"."
2398
  msgstr ""
2399
 
2400
+ #: src/templates/images/smush.php:118
2401
  msgid "Save options"
2402
  msgstr ""
2403
 
2404
+ #: src/templates/images/smush.php:120
2405
  msgid "Saved options"
2406
  msgstr ""
2407
 
2408
+ #: src/templates/images/smush.php:121
2409
  msgid "Failed to save options"
2410
  msgstr ""
2411
 
2412
+ #: src/templates/images/smush.php:126
2413
  msgid "Uncompressed images"
2414
  msgstr ""
2415
 
2416
+ #: src/templates/images/smush.php:129
2417
  msgid "Select all"
2418
  msgstr ""
2419
 
2420
+ #: src/templates/images/smush.php:130
2421
  msgid "Select none"
2422
  msgstr ""
2423
 
2424
+ #: src/templates/images/smush.php:133
2425
  msgid "Refresh image list"
2426
  msgstr ""
2427
 
2428
+ #: src/templates/images/smush.php:141
2429
  msgid "Compress the selected images"
2430
  msgstr ""
2431
 
2432
+ #: src/templates/images/smush.php:143, src/templates/images/smush.php:193
2433
  msgid "View logs"
2434
  msgstr ""
2435
 
2436
+ #: src/templates/images/smush.php:150
2437
  msgid "Compressing images"
2438
  msgstr ""
2439
 
2440
+ #: src/templates/images/smush.php:155
2441
  msgid "The selected images are being processed; please do not close the browser"
2442
  msgstr ""
2443
 
2444
+ #: src/templates/images/smush.php:159
2445
  msgid "Images pending"
2446
  msgstr ""
2447
 
2448
+ #: src/templates/images/smush.php:163
2449
  msgid "Images completed"
2450
  msgstr ""
2451
 
2452
+ #: src/templates/images/smush.php:167
2453
  msgid "Size savings"
2454
  msgstr ""
2455
 
2456
+ #: src/templates/images/smush.php:171
2457
  msgid "Average savings per image"
2458
  msgstr ""
2459
 
2460
+ #: src/templates/images/smush.php:175
2461
  msgid "Time elapsed"
2462
  msgstr ""
2463
 
2464
+ #: src/templates/images/smush.php:194
2465
  msgid "Clear compression statistics"
2466
  msgstr ""
2467
 
2468
+ #: src/templates/images/smush.php:203
2469
  msgid "Download log file"
2470
  msgstr ""
2471
 
2745
  msgid "Load asynchronously"
2746
  msgstr ""
2747
 
2748
+ #: src/templates/minify/cached-file.php:4, src/wp-optimize.php:917
2749
  msgid "Show information"
2750
  msgstr ""
2751
 
2752
+ #: src/templates/minify/cached-file.php:6, src/wp-optimize.php:919
2753
  msgid "The file was added to the list"
2754
  msgstr ""
2755
 
2756
+ #: src/templates/minify/cached-file.php:7, src/wp-optimize.php:920
2757
  msgid "Save the changes"
2758
  msgstr ""
2759
 
3248
  msgid "The JavaScript files will be combined and minified to lower the number and size of requests."
3249
  msgstr ""
3250
 
 
 
 
 
3251
  #: src/templates/minify/status-tab.php:131
3252
  msgid "Process CSS files"
3253
  msgstr ""
3284
  msgid "Current cache:"
3285
  msgstr ""
3286
 
3287
+ #: src/templates/minify/status-tab.php:163, src/templates/minify/status-tab.php:176, src/wp-optimize.php:929
3288
  msgid "No minified files are present"
3289
  msgstr ""
3290
 
3847
  msgid "UpdraftPlus is installed but currently not active. Follow this link to activate UpdraftPlus, to take a backup before optimization."
3848
  msgstr ""
3849
 
3850
+ #: src/wp-optimize.php:675
3851
  msgid "WP-Optimize (Free) has been de-activated, because WP-Optimize Premium is active."
3852
  msgstr ""
3853
 
3854
+ #: src/wp-optimize.php:685
3855
  msgid "New feature: WP-Optimize Premium can now optimize all sites within a multisite install, not just the main one."
3856
  msgstr ""
3857
 
3858
+ #: src/wp-optimize.php:764
3859
  msgid "The security check failed; try refreshing the page."
3860
  msgstr ""
3861
 
3862
+ #: src/wp-optimize.php:775
3863
  msgid "You are not allowed to run this command."
3864
  msgstr ""
3865
 
3866
+ #: src/wp-optimize.php:789
3867
  msgid "Options can only be saved by network admin"
3868
  msgstr ""
3869
 
 
 
 
 
 
 
 
 
 
 
 
 
3870
  #: src/wp-optimize.php:835
3871
+ msgid "The command \"%s\" was not found"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3872
  msgstr ""
3873
 
3874
+ #: src/wp-optimize.php:892
3875
  msgid "Automatic backup before optimizations"
3876
  msgstr ""
3877
 
3878
+ #: src/wp-optimize.php:893
3879
  msgid "An unexpected response was received."
3880
  msgstr ""
3881
 
3882
+ #: src/wp-optimize.php:894
3883
  msgid "Optimization complete"
3884
  msgstr ""
3885
 
3886
+ #: src/wp-optimize.php:895
3887
  msgid "(with warnings - open the browser console for more details)"
3888
  msgstr ""
3889
 
3890
+ #: src/wp-optimize.php:896
3891
  msgid "Optimizing table:"
3892
  msgstr ""
3893
 
3894
+ #: src/wp-optimize.php:897
3895
  msgid "Run optimizations"
3896
  msgstr ""
3897
 
3898
+ #: src/wp-optimize.php:900
3899
  msgid "Cancelling..."
3900
  msgstr ""
3901
 
3902
+ #: src/wp-optimize.php:903
3903
  msgid "Please, select settings file."
3904
  msgstr ""
3905
 
3906
+ #: src/wp-optimize.php:904
3907
  msgid "Are you sure you want to remove this logging destination?"
3908
  msgstr ""
3909
 
3910
+ #: src/wp-optimize.php:905
3911
  msgid "Before saving, you need to complete the currently incomplete settings (or remove them)."
3912
  msgstr ""
3913
 
3914
+ #: src/wp-optimize.php:906
3915
  msgid "%s was not repaired. For more details, please check the logs (configured in your logging destinations settings)."
3916
  msgstr ""
3917
 
3918
+ #: src/wp-optimize.php:907
3919
  msgid "%s was not deleted. For more details, please check your logs configured in logging destinations settings."
3920
  msgstr ""
3921
 
3922
+ #: src/wp-optimize.php:908
3923
  msgid "%s was not converted to InnoDB. For more details, please check your logs configured in logging destinations settings."
3924
  msgstr ""
3925
 
3926
+ #: src/wp-optimize.php:909
3927
  msgid "Please use positive integers."
3928
  msgstr ""
3929
 
3930
+ #: src/wp-optimize.php:910
3931
  msgid "Please use valid values."
3932
  msgstr ""
3933
 
3934
+ #: src/wp-optimize.php:913
3935
  msgid "Started preload..."
3936
  msgstr ""
3937
 
3938
+ #: src/wp-optimize.php:918
3939
  msgid "Added to the list"
3940
  msgstr ""
3941
 
3942
+ #: src/wp-optimize.php:921
3943
  msgid "Refreshing the page to reflect changes..."
3944
  msgstr ""
3945
 
3946
+ #: src/wp-optimize.php:922
3947
  msgid "WP-Optimize settings have been deleted successfully."
3948
  msgstr ""
3949
 
3950
+ #: src/wp-optimize.php:928
3951
  msgid "The tweak has been performed."
3952
  msgstr ""
3953
 
3954
+ #: src/wp-optimize.php:985
3955
  msgid "Optimize"
3956
  msgstr ""
3957
 
3958
+ #: src/wp-optimize.php:1001
3959
  msgid "Repair"
3960
  msgstr ""
3961
 
3962
+ #: src/wp-optimize.php:1010
3963
  msgid "Remove"
3964
  msgstr ""
3965
 
3966
+ #: src/wp-optimize.php:1019
3967
  msgid "Convert to InnoDB"
3968
  msgstr ""
3969
 
3970
+ #: src/wp-optimize.php:1158
3971
  msgid "Warning"
3972
  msgstr ""
3973
 
3974
+ #: src/wp-optimize.php:1158
3975
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
3976
  msgstr ""
3977
 
3978
+ #: src/wp-optimize.php:1158
3979
  msgid "Read this page for a guide to possible causes and how to fix it."
3980
  msgstr ""
3981
 
3982
+ #: src/wp-optimize.php:1213
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3983
  msgid "Error:"
3984
  msgstr ""
3985
 
3986
+ #: src/wp-optimize.php:1213
3987
  msgid "template not found"
3988
  msgstr ""
3989
 
3990
+ #: src/wp-optimize.php:1277
3991
  msgid "N/A"
3992
  msgstr ""
3993
 
3994
+ #: src/wp-optimize.php:1883
 
 
 
 
 
 
 
 
3995
  msgid "Only Network Administrator can activate WP-Optimize plugin."
3996
  msgstr ""
3997
 
3998
+ #: src/wp-optimize.php:1884
3999
  msgid "go back"
4000
  msgstr ""
minify/class-wp-optimize-minify-admin.php CHANGED
@@ -136,9 +136,6 @@ class WP_Optimize_Minify_Admin {
136
  * @return void
137
  */
138
  public function output_status() {
139
- if (!class_exists('WP_Optimize_Detect_Minify_Plugins')) {
140
- require_once(WP_OPTIMIZE_MINIFY_DIR.'/class-wp-optimize-detect-minify-plugins.php');
141
- }
142
  $this->found_incompatible_plugins = WP_Optimize_Detect_Minify_Plugins::get_instance()->get_active_minify_plugins();
143
  $wpo_minify_options = wp_optimize_minify_config()->get();
144
  $cache_path = WP_Optimize_Minify_Cache_Functions::cache_path();
@@ -245,7 +242,6 @@ class WP_Optimize_Minify_Admin {
245
  $wpo_minify_preloader = WP_Optimize_Minify_Preloader::instance();
246
  $is_running = $wpo_minify_preloader->is_running();
247
  $status = $wpo_minify_preloader->get_status_info();
248
- if (!class_exists('WPO_Cache_Config')) require_once(WPO_PLUGIN_MAIN_PATH . '/cache/class-wpo-cache-config.php');
249
  $cache_config = WPO_Cache_Config::instance();
250
  WP_Optimize()->include_template(
251
  'minify/preload-tab.php',
136
  * @return void
137
  */
138
  public function output_status() {
 
 
 
139
  $this->found_incompatible_plugins = WP_Optimize_Detect_Minify_Plugins::get_instance()->get_active_minify_plugins();
140
  $wpo_minify_options = wp_optimize_minify_config()->get();
141
  $cache_path = WP_Optimize_Minify_Cache_Functions::cache_path();
242
  $wpo_minify_preloader = WP_Optimize_Minify_Preloader::instance();
243
  $is_running = $wpo_minify_preloader->is_running();
244
  $status = $wpo_minify_preloader->get_status_info();
 
245
  $cache_config = WPO_Cache_Config::instance();
246
  WP_Optimize()->include_template(
247
  'minify/preload-tab.php',
minify/class-wp-optimize-minify-front-end.php CHANGED
@@ -127,10 +127,10 @@ class WP_Optimize_Minify_Front_End {
127
  * @return String
128
  */
129
  public function inline_css($html, $handle, $href, $media) {
130
- $exclude_css = array_map('trim', explode("\n", trim($this->options['exclude_css'])));
131
  $ignore_list = WP_Optimize_Minify_Functions::compile_ignore_list($exclude_css);
132
  $blacklist = WP_Optimize_Minify_Functions::get_ie_blacklist();
133
- $async_css = array_map('trim', explode("\n", trim($this->options['async_css'])));
134
  $master_ignore = array_merge($ignore_list, $blacklist);
135
 
136
  // make sure href is complete
@@ -328,7 +328,7 @@ class WP_Optimize_Minify_Front_End {
328
  */
329
  public function defer_js($tag, $handle, $src) {
330
  $wp_domain = trim(str_ireplace(array('http://', 'https://'), '', trim(site_url(), '/')));
331
- $exclude_js = array_map('trim', explode("\n", trim($this->options['exclude_js'])));
332
  $ignore_list = WP_Optimize_Minify_Functions::compile_ignore_list($exclude_js);
333
  // Should this defer the Poly fills for IE?
334
  $blacklist = WP_Optimize_Minify_Functions::get_ie_blacklist();
@@ -456,9 +456,9 @@ class WP_Optimize_Minify_Front_End {
456
  $cache_path = WP_Optimize_Minify_Cache_Functions::cache_path();
457
  $cache_dir = $cache_path['cachedir'];
458
  $cache_dir_url = $cache_path['cachedirurl'];
459
- $exclude_css = array_map('trim', explode("\n", trim($this->options['exclude_css'])));
460
  $ignore_list = WP_Optimize_Minify_Functions::compile_ignore_list($exclude_css);
461
- $async_css = array_map('trim', explode("\n", trim($this->options['async_css'])));
462
 
463
  $minify_css = $this->options['enable_css_minification'];
464
  $merge_css = $this->options['enable_merging_of_css'];
@@ -866,9 +866,9 @@ class WP_Optimize_Minify_Front_End {
866
  $cache_dir_url = $cache_path['cachedirurl'];
867
 
868
 
869
- $exclude_js = array_map('trim', explode("\n", trim($this->options['exclude_js'])));
870
  $ignore_list = WP_Optimize_Minify_Functions::compile_ignore_list($exclude_js);
871
- $async_js = trim($this->options['async_js']) ? array_map('trim', explode("\n", trim($this->options['async_js']))) : array();
872
  $scripts = clone $wp_scripts;
873
  $scripts->all_deps($scripts->queue);
874
  $footer = array();
@@ -1134,9 +1134,9 @@ class WP_Optimize_Minify_Front_End {
1134
  $cache_path = WP_Optimize_Minify_Cache_Functions::cache_path();
1135
  $cache_dir = $cache_path['cachedir'];
1136
  $cache_dir_url = $cache_path['cachedirurl'];
1137
- $exclude_js = array_map('trim', explode("\n", trim($this->options['exclude_js'])));
1138
  $ignore_list = WP_Optimize_Minify_Functions::compile_ignore_list($exclude_js);
1139
- $async_js = trim($this->options['async_js']) ? array_map('trim', explode("\n", trim($this->options['async_js']))) : array();
1140
  $scripts = clone $wp_scripts;
1141
  $scripts->all_deps($scripts->queue);
1142
  $minify_js = $this->options['enable_js_minification'];
@@ -1434,9 +1434,9 @@ class WP_Optimize_Minify_Front_End {
1434
  $cache_path = WP_Optimize_Minify_Cache_Functions::cache_path();
1435
  $cache_dir = $cache_path['cachedir'];
1436
  $cache_dir_url = $cache_path['cachedirurl'];
1437
- $exclude_css = array_map('trim', explode("\n", trim($this->options['exclude_css'])));
1438
  $ignore_list = WP_Optimize_Minify_Functions::compile_ignore_list($exclude_css);
1439
- $async_css = array_map('trim', explode("\n", trim($this->options['async_css'])));
1440
  $minify_css = $this->options['enable_css_minification'];
1441
  $merge_css = $this->options['enable_merging_of_css'];
1442
  $process_css = $minify_css || $merge_css;
@@ -2057,7 +2057,7 @@ class WP_Optimize_Minify_Front_End {
2057
  if (!$this->run_on_page('extra_preload_headers')) return;
2058
 
2059
  // fetch headers
2060
- $pre_connect = array_map('trim', explode("\n", trim($this->options['hpreconnect'])));
2061
 
2062
  // preload
2063
  if (is_array($pre_connect) && count($pre_connect) > 0) {
@@ -2136,7 +2136,7 @@ class WP_Optimize_Minify_Front_End {
2136
  }
2137
 
2138
  // add the LoadAsync JavaScript function
2139
- $async_js = trim($this->options['async_js']) ? array_map('trim', explode("\n", trim($this->options['async_js']))) : array();
2140
  if (count($async_js) > 0
2141
  || ( 'all' === $this->options['enable_defer_js'] && 'async_using_js' === $this->options['defer_js_type'] )
2142
  ) {
@@ -2201,4 +2201,64 @@ class WP_Optimize_Minify_Front_End {
2201
  private function remove_query_string_from_static_assets() {
2202
  add_filter('style_loader_src', array('WP_Optimize_Minify_Functions', 'remove_cssjs_ver'), 10, 2);
2203
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2204
  }
127
  * @return String
128
  */
129
  public function inline_css($html, $handle, $href, $media) {
130
+ $exclude_css = $this->get_excluded_css_list();
131
  $ignore_list = WP_Optimize_Minify_Functions::compile_ignore_list($exclude_css);
132
  $blacklist = WP_Optimize_Minify_Functions::get_ie_blacklist();
133
+ $async_css = $this->get_async_css_list();
134
  $master_ignore = array_merge($ignore_list, $blacklist);
135
 
136
  // make sure href is complete
328
  */
329
  public function defer_js($tag, $handle, $src) {
330
  $wp_domain = trim(str_ireplace(array('http://', 'https://'), '', trim(site_url(), '/')));
331
+ $exclude_js = $this->get_excluded_js_list();
332
  $ignore_list = WP_Optimize_Minify_Functions::compile_ignore_list($exclude_js);
333
  // Should this defer the Poly fills for IE?
334
  $blacklist = WP_Optimize_Minify_Functions::get_ie_blacklist();
456
  $cache_path = WP_Optimize_Minify_Cache_Functions::cache_path();
457
  $cache_dir = $cache_path['cachedir'];
458
  $cache_dir_url = $cache_path['cachedirurl'];
459
+ $exclude_css = $this->get_excluded_css_list();
460
  $ignore_list = WP_Optimize_Minify_Functions::compile_ignore_list($exclude_css);
461
+ $async_css = $this->get_async_css_list();
462
 
463
  $minify_css = $this->options['enable_css_minification'];
464
  $merge_css = $this->options['enable_merging_of_css'];
866
  $cache_dir_url = $cache_path['cachedirurl'];
867
 
868
 
869
+ $exclude_js = $this->get_excluded_js_list();
870
  $ignore_list = WP_Optimize_Minify_Functions::compile_ignore_list($exclude_js);
871
+ $async_js = $this->get_async_js_list();
872
  $scripts = clone $wp_scripts;
873
  $scripts->all_deps($scripts->queue);
874
  $footer = array();
1134
  $cache_path = WP_Optimize_Minify_Cache_Functions::cache_path();
1135
  $cache_dir = $cache_path['cachedir'];
1136
  $cache_dir_url = $cache_path['cachedirurl'];
1137
+ $exclude_js = $this->get_excluded_js_list();
1138
  $ignore_list = WP_Optimize_Minify_Functions::compile_ignore_list($exclude_js);
1139
+ $async_js = $this->get_async_js_list();
1140
  $scripts = clone $wp_scripts;
1141
  $scripts->all_deps($scripts->queue);
1142
  $minify_js = $this->options['enable_js_minification'];
1434
  $cache_path = WP_Optimize_Minify_Cache_Functions::cache_path();
1435
  $cache_dir = $cache_path['cachedir'];
1436
  $cache_dir_url = $cache_path['cachedirurl'];
1437
+ $exclude_css = $this->get_excluded_css_list();
1438
  $ignore_list = WP_Optimize_Minify_Functions::compile_ignore_list($exclude_css);
1439
+ $async_css = $this->get_async_css_list();
1440
  $minify_css = $this->options['enable_css_minification'];
1441
  $merge_css = $this->options['enable_merging_of_css'];
1442
  $process_css = $minify_css || $merge_css;
2057
  if (!$this->run_on_page('extra_preload_headers')) return;
2058
 
2059
  // fetch headers
2060
+ $pre_connect = $this->get_pre_connect_list();
2061
 
2062
  // preload
2063
  if (is_array($pre_connect) && count($pre_connect) > 0) {
2136
  }
2137
 
2138
  // add the LoadAsync JavaScript function
2139
+ $async_js = $this->get_async_js_list();
2140
  if (count($async_js) > 0
2141
  || ( 'all' === $this->options['enable_defer_js'] && 'async_using_js' === $this->options['defer_js_type'] )
2142
  ) {
2201
  private function remove_query_string_from_static_assets() {
2202
  add_filter('style_loader_src', array('WP_Optimize_Minify_Functions', 'remove_cssjs_ver'), 10, 2);
2203
  }
2204
+
2205
+ /**
2206
+ * Converts the lines in a textarea option value into an array
2207
+ *
2208
+ * @param string $option
2209
+ * @return array
2210
+ */
2211
+ private function convert_option_to_array($option) {
2212
+ return trim($option) ? array_map('trim', explode("\n", trim($option))) : array();
2213
+ }
2214
+
2215
+ /**
2216
+ * Retrieves excluded css URLs as an array
2217
+ *
2218
+ * @return array
2219
+ */
2220
+ private function get_excluded_css_list() {
2221
+ $excluded_css = $this->options['exclude_css'];
2222
+ return $this->convert_option_to_array($excluded_css);
2223
+ }
2224
+
2225
+ /**
2226
+ * Retrieves async css URLs as an array
2227
+ *
2228
+ * @return array
2229
+ */
2230
+ private function get_async_css_list() {
2231
+ $async_css = $this->options['async_css'];
2232
+ return $this->convert_option_to_array($async_css);
2233
+ }
2234
+
2235
+ /**
2236
+ * Retrieves excluded javascript URLs as an array
2237
+ *
2238
+ * @return array
2239
+ */
2240
+ private function get_excluded_js_list() {
2241
+ $excluded_js = $this->options['exclude_js'];
2242
+ return $this->convert_option_to_array($excluded_js);
2243
+ }
2244
+
2245
+ /**
2246
+ * Retrieves async javascript URLs as an array
2247
+ *
2248
+ * @return array
2249
+ */
2250
+ private function get_async_js_list() {
2251
+ $async_js = $this->options['async_js'];
2252
+ return $this->convert_option_to_array($async_js);
2253
+ }
2254
+
2255
+ /**
2256
+ * Retrieves pre connect headers as an array
2257
+ *
2258
+ * @return array
2259
+ */
2260
+ private function get_pre_connect_list() {
2261
+ $pre_connect = $this->options['hpreconnect'];
2262
+ return $this->convert_option_to_array($pre_connect);
2263
+ }
2264
  }
minify/{class-wpo-minify-load-url-task.php → class-wp-optimize-minify-load-url-task.php} RENAMED
File without changes
minify/{class-wpo-minify-preloader.php → class-wp-optimize-minify-preloader.php} RENAMED
@@ -3,10 +3,6 @@
3
  if (!defined('ABSPATH')) die('No direct access allowed');
4
 
5
 
6
- if (!class_exists('WP_Optimize_Minify_Load_Url_Task')) require_once(dirname(__FILE__) . '/class-wpo-minify-load-url-task.php');
7
-
8
- if (!class_exists('WP_Optimize_Preloader')) require_once(WPO_PLUGIN_MAIN_PATH . 'includes/class-wpo-preloader.php');
9
-
10
  class WP_Optimize_Minify_Preloader extends WP_Optimize_Preloader {
11
 
12
  protected $preload_type = 'minify';
3
  if (!defined('ABSPATH')) die('No direct access allowed');
4
 
5
 
 
 
 
 
6
  class WP_Optimize_Minify_Preloader extends WP_Optimize_Preloader {
7
 
8
  protected $preload_type = 'minify';
minify/class-wp-optimize-minify.php CHANGED
@@ -13,7 +13,6 @@ class WP_Optimize_Minify {
13
  */
14
  public function __construct() {
15
 
16
- if (!class_exists('WP_Optimize_Minify_Commands')) include_once(WPO_PLUGIN_MAIN_PATH . 'minify/class-wp-optimize-minify-commands.php');
17
  $this->minify_commands = new WP_Optimize_Minify_Commands();
18
 
19
  if (!class_exists('WP_Optimize_Minify_Config')) {
@@ -128,10 +127,6 @@ class WP_Optimize_Minify {
128
  */
129
  private function load_admin() {
130
  if (!is_admin()) return;
131
-
132
- if (!class_exists('WP_Optimize_Minify_Admin')) {
133
- include WP_OPTIMIZE_MINIFY_DIR.'/class-wp-optimize-minify-admin.php';
134
- }
135
  new WP_Optimize_Minify_Admin();
136
  }
137
 
@@ -142,9 +137,6 @@ class WP_Optimize_Minify {
142
  */
143
  private function load_frontend() {
144
  if ($this->enabled) {
145
- if (!class_exists('WP_Optimize_Minify_Front_End')) {
146
- include WP_OPTIMIZE_MINIFY_DIR.'/class-wp-optimize-minify-front-end.php';
147
- }
148
  new WP_Optimize_Minify_Front_End();
149
  }
150
  }
@@ -155,9 +147,6 @@ class WP_Optimize_Minify {
155
  * @return void
156
  */
157
  private function load_premium() {
158
- if (!class_exists('WP_Optimize_Minify_Premium')) {
159
- include WP_OPTIMIZE_MINIFY_DIR.'/class-wp-optimize-minify-premium.php';
160
- }
161
  $this->premium = new WP_Optimize_Minify_Premium();
162
  }
163
 
13
  */
14
  public function __construct() {
15
 
 
16
  $this->minify_commands = new WP_Optimize_Minify_Commands();
17
 
18
  if (!class_exists('WP_Optimize_Minify_Config')) {
127
  */
128
  private function load_admin() {
129
  if (!is_admin()) return;
 
 
 
 
130
  new WP_Optimize_Minify_Admin();
131
  }
132
 
137
  */
138
  private function load_frontend() {
139
  if ($this->enabled) {
 
 
 
140
  new WP_Optimize_Minify_Front_End();
141
  }
142
  }
147
  * @return void
148
  */
149
  private function load_premium() {
 
 
 
150
  $this->premium = new WP_Optimize_Minify_Premium();
151
  }
152
 
optimizations/revisions.php CHANGED
@@ -141,7 +141,7 @@ class WP_Optimization_revisions extends WP_Optimization {
141
  }
142
  }
143
  $revisions = rtrim($revisions, ',');
144
- $revisions = explode(',', $revisions);
145
 
146
  while (count($revisions) > 0) {
147
  $delete_this_time = array_splice($revisions, 0, min(count($revisions), 250));
141
  }
142
  }
143
  $revisions = rtrim($revisions, ',');
144
+ $revisions = empty($revisions) ? array() : explode(',', $revisions);
145
 
146
  while (count($revisions) > 0) {
147
  $delete_this_time = array_splice($revisions, 0, min(count($revisions), 250));
plugin.json CHANGED
@@ -1 +1 @@
1
- {"yoast_seo_links":["wordpress-seo"],"yoast_seo_meta":["wordpress-seo"],"yoast_indexable":["wordpress-seo"],"yoast_indexable_hierarchy":["wordpress-seo"],"yoast_migrations":["wordpress-seo"],"yoast_primary_term":["wordpress-seo"],"woocommerce_api_keys":["woocommerce","lazyeater"],"woocommerce_attribute_taxonomies":["woocommerce","lazyeater"],"woocommerce_downloadable_product_permissions":["woocommerce","lazyeater"],"woocommerce_log":["woocommerce","lazyeater"],"woocommerce_order_itemmeta":["woocommerce","lazyeater"],"woocommerce_order_items":["woocommerce","lazyeater"],"woocommerce_payment_tokenmeta":["woocommerce","lazyeater"],"woocommerce_payment_tokens":["woocommerce","lazyeater"],"woocommerce_sessions":["woocommerce","lazyeater"],"woocommerce_shipping_zone_locations":["woocommerce","innozilla-table-rate-shipping-for-woocommerce","lazyeater"],"woocommerce_shipping_zone_methods":["woocommerce","lazyeater"],"woocommerce_shipping_zones":["woocommerce","innozilla-table-rate-shipping-for-woocommerce","lazyeater"],"woocommerce_tax_rate_locations":["woocommerce","lazyeater"],"woocommerce_tax_rates":["woocommerce","lazyeater"],"wc_download_log":["woocommerce","lazyeater"],"wc_webhooks":["woocommerce","lazyeater"],"wc_product_meta_lookup":["woocommerce"],"wc_tax_rate_classes":["woocommerce"],"wc_admin_note_actions":["woocommerce","woocommerce-admin"],"wc_admin_notes":["woocommerce","woocommerce-admin"],"wc_customer_lookup":["woocommerce","woocommerce-admin"],"wc_order_coupon_lookup":["woocommerce","woocommerce-admin"],"wc_order_product_lookup":["woocommerce","woocommerce-admin"],"wc_order_stats":["woocommerce","woocommerce-admin"],"wc_order_tax_lookup":["woocommerce","woocommerce-admin"],"wc_category_lookup":["woocommerce","woocommerce-admin"],"actionscheduler_actions":["woocommerce","wpforms-lite","all-in-one-seo-pack","wp-mail-smtp","seo-by-rank-math","popup-maker","cartflows","email-subscribers","defender-security","site-reviews","woocommerce-abandoned-cart","lifterlms","simply-schedule-appointments","wpscan","smart-image-resize","wp-marketing-automations","wp-auto-republish","podcast-importer-secondline","pronamic-ideal","invoicing","newsletter-optin-box","widget-for-eventbrite-api","zionbuilder","knit-pay","wp-health","action-scheduler","totalpoll-lite","imageseo","cart-lift","object-sync-for-salesforce","wunderautomation","pmpro-discord-add-on","segment-for-wp-by-in8-io","ethereum-wallet","quillforms","moceansms-order-sms-notification-for-woocommerce","watchtowerhq","dollie","auto-youtube-importer","ultimate-sms-notifications","totalcontest-lite","highways-sync-for-intercom","kudos-donations","moceanapi-sendsms","wc-exporter-for-reviso","migrate-wp-cron-to-action-scheduler","wpmail-pro","fast-events","w4os-opensimulator-web-interface","seo-by-rank-math-pro"],"actionscheduler_claims":["woocommerce","wpforms-lite","all-in-one-seo-pack","wp-mail-smtp","seo-by-rank-math","popup-maker","cartflows","email-subscribers","defender-security","site-reviews","woocommerce-abandoned-cart","lifterlms","simply-schedule-appointments","wpscan","smart-image-resize","wp-marketing-automations","wp-auto-republish","podcast-importer-secondline","pronamic-ideal","invoicing","newsletter-optin-box","widget-for-eventbrite-api","zionbuilder","knit-pay","wp-health","action-scheduler","totalpoll-lite","imageseo","cart-lift","object-sync-for-salesforce","wunderautomation","pmpro-discord-add-on","segment-for-wp-by-in8-io","ethereum-wallet","quillforms","moceansms-order-sms-notification-for-woocommerce","watchtowerhq","dollie","auto-youtube-importer","ultimate-sms-notifications","totalcontest-lite","highways-sync-for-intercom","kudos-donations","moceanapi-sendsms","wc-exporter-for-reviso","migrate-wp-cron-to-action-scheduler","wpmail-pro","fast-events","w4os-opensimulator-web-interface","seo-by-rank-math-pro"],"actionscheduler_groups":["woocommerce","wpforms-lite","all-in-one-seo-pack","wp-mail-smtp","seo-by-rank-math","popup-maker","cartflows","email-subscribers","defender-security","site-reviews","woocommerce-abandoned-cart","lifterlms","simply-schedule-appointments","wpscan","smart-image-resize","wp-marketing-automations","wp-auto-republish","podcast-importer-secondline","pronamic-ideal","invoicing","newsletter-optin-box","widget-for-eventbrite-api","zionbuilder","knit-pay","wp-health","action-scheduler","totalpoll-lite","imageseo","cart-lift","object-sync-for-salesforce","wunderautomation","pmpro-discord-add-on","segment-for-wp-by-in8-io","ethereum-wallet","quillforms","moceansms-order-sms-notification-for-woocommerce","watchtowerhq","dollie","auto-youtube-importer","ultimate-sms-notifications","totalcontest-lite","highways-sync-for-intercom","kudos-donations","moceanapi-sendsms","wc-exporter-for-reviso","migrate-wp-cron-to-action-scheduler","wpmail-pro","fast-events","w4os-opensimulator-web-interface","seo-by-rank-math-pro"],"actionscheduler_logs":["woocommerce","wpforms-lite","all-in-one-seo-pack","wp-mail-smtp","seo-by-rank-math","popup-maker","cartflows","email-subscribers","defender-security","site-reviews","woocommerce-abandoned-cart","lifterlms","simply-schedule-appointments","wpscan","smart-image-resize","wp-marketing-automations","wp-auto-republish","podcast-importer-secondline","pronamic-ideal","invoicing","newsletter-optin-box","widget-for-eventbrite-api","zionbuilder","knit-pay","wp-health","action-scheduler","totalpoll-lite","imageseo","cart-lift","object-sync-for-salesforce","wunderautomation","pmpro-discord-add-on","segment-for-wp-by-in8-io","ethereum-wallet","quillforms","moceansms-order-sms-notification-for-woocommerce","watchtowerhq","dollie","auto-youtube-importer","ultimate-sms-notifications","totalcontest-lite","highways-sync-for-intercom","kudos-donations","moceanapi-sendsms","wc-exporter-for-reviso","migrate-wp-cron-to-action-scheduler","wpmail-pro","fast-events","w4os-opensimulator-web-interface","seo-by-rank-math-pro"],"wc_reserved_stock":["woocommerce"],"wc_rate_limits":["woocommerce"],"wc_product_attributes_lookup":["woocommerce"],"wpforms_tasks_meta":["wpforms-lite"],"wfbadleechers":["wordfence"],"wfblockediplog":["wordfence"],"wfblocks":["wordfence"],"wfblocksadv":["wordfence"],"wfconfig":["wordfence"],"wfcrawlers":["wordfence"],"wffilemods":["wordfence"],"wfhits":["wordfence"],"wfhoover":["wordfence"],"wfissues":["wordfence"],"wfknownfilelist":["wordfence"],"wfleechers":["wordfence"],"wflockedout":["wordfence"],"wflocs":["wordfence"],"wflogins":["wordfence"],"wfnet404s":["wordfence"],"wfnotifications":["wordfence"],"wfpendingissues":["wordfence"],"wfreversecache":["wordfence"],"wfscanners":["wordfence"],"wfsnipcache":["wordfence"],"wfstatus":["wordfence"],"wfthrottlelog":["wordfence"],"wfvulnscanners":["wordfence"],"wfblockedcommentlog":["wordfence"],"wfblocks7":["wordfence"],"wffilechanges":["wordfence"],"wflivetraffichuman":["wordfence"],"wftrafficrates":["wordfence"],"wfls_2fa_secrets":["wordfence","wordfence-login-security"],"wfls_settings":["wordfence","wordfence-login-security"],"aioseo_notifications":["all-in-one-seo-pack"],"aioseo_posts":["all-in-one-seo-pack"],"aioseo_cache":["all-in-one-seo-pack"],"litespeed_optimizer":["litespeed-cache"],"litespeed_img_optm":["litespeed-cache"],"litespeed_url":["litespeed-cache"],"litespeed_url_file":["litespeed-cache"],"redirection_404":["redirection"],"redirection_groups":["redirection"],"redirection_items":["redirection"],"redirection_logs":["redirection"],"wpmailsmtp_tasks_meta":["wp-mail-smtp"],"wpmailsmtp_debug_events":["wp-mail-smtp"],"duplicator_packages":["duplicator"],"nf3_action_meta":["ninja-forms"],"nf3_actions":["ninja-forms"],"nf3_field_meta":["ninja-forms"],"nf3_fields":["ninja-forms"],"nf3_form_meta":["ninja-forms"],"nf3_forms":["ninja-forms"],"nf3_object_meta":["ninja-forms"],"nf3_objects":["ninja-forms"],"nf3_relationships":["ninja-forms"],"nf3_upgrades":["ninja-forms"],"nf3_chunks":["ninja-forms"],"itsec_lockouts":["better-wp-security","ithemes-security-pro"],"itsec_log":["better-wp-security","ithemes-security-pro"],"itsec_temp":["better-wp-security","ithemes-security-pro"],"itsec_logs":["better-wp-security","ithemes-security-pro"],"itsec_distributed_storage":["better-wp-security","ithemes-security-pro"],"itsec_fingerprints":["better-wp-security","ithemes-security-pro"],"itsec_geolocation_cache":["better-wp-security","ithemes-security-pro"],"itsec_opaque_tokens":["better-wp-security","ithemes-security-pro"],"itsec_mutexes":["better-wp-security","ithemes-security-pro"],"itsec_user_groups":["better-wp-security","ithemes-security-pro"],"itsec_bans":["better-wp-security","ithemes-security-pro"],"itsec_dashboard_events":["better-wp-security","ithemes-security-pro"],"smush_dir_images":["wp-smushit"],"tm_taskmeta":["wp-optimize"],"tm_tasks":["wp-optimize"],"loginizer_logs":["loginizer"],"aiowps_events":["all-in-one-wp-security-and-firewall"],"aiowps_failed_logins":["all-in-one-wp-security-and-firewall"],"aiowps_global_meta":["all-in-one-wp-security-and-firewall"],"aiowps_login_activity":["all-in-one-wp-security-and-firewall"],"aiowps_login_lockdown":["all-in-one-wp-security-and-firewall"],"aiowps_permanent_block":["all-in-one-wp-security-and-firewall"],"aiowps_debug_log":["all-in-one-wp-security-and-firewall"],"csp3_subscribers":["coming-soon"],"sbi_instagram_feeds_posts":["instagram-feed"],"sbi_instagram_posts":["instagram-feed"],"sbi_instagram_feed_locator":["instagram-feed"],"sbi_feed_caches":["instagram-feed"],"sbi_feeds":["instagram-feed"],"sbi_sources":["instagram-feed"],"cli_scripts":["cookie-law-info"],"cli_cookie_scan":["cookie-law-info"],"cli_cookie_scan_categories":["cookie-law-info"],"cli_cookie_scan_cookies":["cookie-law-info"],"cli_cookie_scan_url":["cookie-law-info"],"rank_math_404_logs":["seo-by-rank-math","404-monitor"],"rank_math_internal_links":["seo-by-rank-math"],"rank_math_internal_meta":["seo-by-rank-math"],"rank_math_redirections":["seo-by-rank-math","redirections"],"rank_math_redirections_cache":["seo-by-rank-math","redirections"],"rank_math_sc_analytics":["seo-by-rank-math"],"rank_math_analytics_adsense":["seo-by-rank-math"],"rank_math_analytics_ga":["seo-by-rank-math"],"rank_math_analytics_gsc":["seo-by-rank-math"],"rank_math_analytics_keyword_manager":["seo-by-rank-math"],"rank_math_analytics_object_links":["seo-by-rank-math"],"rank_math_analytics_objects":["seo-by-rank-math"],"ewwwio_images":["ewww-image-optimizer","ewww-image-optimizer-cloud"],"ewwwio_queue":["ewww-image-optimizer","ewww-image-optimizer-cloud"],"wpmm_subscribers":["wp-maintenance-mode"],"nextend2_image_storage":["smart-slider-3","nextend-smart-slider3-pro"],"nextend2_section_storage":["smart-slider-3","nextend-smart-slider3-pro"],"nextend2_smartslider3_generators":["smart-slider-3","nextend-smart-slider3-pro"],"nextend2_smartslider3_sliders":["smart-slider-3","nextend-smart-slider3-pro"],"nextend2_smartslider3_sliders_xref":["smart-slider-3","nextend-smart-slider3-pro"],"nextend2_smartslider3_slides":["smart-slider-3","nextend-smart-slider3-pro"],"wpfm_backup":["wp-file-manager"],"ngg_album":["nextgen-gallery","nextcellent-gallery-nextgen-legacy"],"ngg_gallery":["nextgen-gallery","nextcellent-gallery-nextgen-legacy"],"ngg_pictures":["nextgen-gallery","nextcellent-gallery-nextgen-legacy"],"blc_filters":["broken-link-checker"],"blc_instances":["broken-link-checker"],"blc_links":["broken-link-checker"],"blc_synch":["broken-link-checker"],"pum_subscribers":["popup-maker"],"statistics_exclusions":["wp-statistics"],"statistics_historical":["wp-statistics"],"statistics_pages":["wp-statistics"],"statistics_search":["wp-statistics"],"statistics_useronline":["wp-statistics"],"statistics_visit":["wp-statistics"],"statistics_visitor":["wp-statistics"],"statistics_visitor_relationships":["wp-statistics"],"imagify_files":["imagify"],"imagify_folders":["imagify"],"snippets":["code-snippets"],"ms_snippets":["code-snippets"],"ce4wp_contacts":["creative-mail-by-constant-contact"],"db7_forms":["contact-form-cfdb7"],"mailpoet_custom_fields":["mailpoet"],"mailpoet_forms":["mailpoet"],"mailpoet_mapping_to_external_entities":["mailpoet"],"mailpoet_newsletter_links":["mailpoet"],"mailpoet_newsletter_option":["mailpoet"],"mailpoet_newsletter_option_fields":["mailpoet"],"mailpoet_newsletter_posts":["mailpoet"],"mailpoet_newsletter_segment":["mailpoet"],"mailpoet_newsletter_templates":["mailpoet"],"mailpoet_newsletters":["mailpoet"],"mailpoet_scheduled_task_subscribers":["mailpoet"],"mailpoet_scheduled_tasks":["mailpoet"],"mailpoet_segments":["mailpoet"],"mailpoet_sending_queues":["mailpoet"],"mailpoet_settings":["mailpoet"],"mailpoet_statistics_clicks":["mailpoet"],"mailpoet_statistics_forms":["mailpoet"],"mailpoet_statistics_newsletters":["mailpoet"],"mailpoet_statistics_opens":["mailpoet"],"mailpoet_statistics_unsubscribes":["mailpoet"],"mailpoet_subscriber_custom_field":["mailpoet"],"mailpoet_subscriber_segment":["mailpoet"],"mailpoet_subscribers":["mailpoet"],"mailpoet_subscriber_ips":["mailpoet"],"mailpoet_log":["mailpoet"],"mailpoet_stats_notifications":["mailpoet"],"mailpoet_user_flags":["mailpoet"],"mailpoet_statistics_woocommerce_purchases":["mailpoet"],"mailpoet_feature_flags":["mailpoet"],"mailpoet_dynamic_segment_filters":["mailpoet"],"mailpoet_user_agents":["mailpoet"],"mailpoet_statistics_bounces":["mailpoet"],"wpgmza":["wp-google-maps"],"wpgmza_categories":["wp-google-maps"],"wpgmza_category_maps":["wp-google-maps"],"wpgmza_maps":["wp-google-maps"],"wpgmza_polygon":["wp-google-maps"],"wpgmza_polylines":["wp-google-maps"],"wpgmza_circles":["wp-google-maps"],"wpgmza_rectangles":["wp-google-maps"],"newsletter":["newsletter","fv-feedburner-replacement","newsletter-signup","digital-media-combined"],"newsletter_emails":["newsletter","digital-media-combined"],"newsletter_sent":["newsletter","digital-media-combined"],"newsletter_stats":["newsletter","digital-media-combined"],"newsletter_user_logs":["newsletter"],"ppress_forms":["wp-user-avatar"],"ppress_formsmeta":["wp-user-avatar"],"ppress_meta_data":["wp-user-avatar"],"siteguard_history":["siteguard"],"siteguard_login":["siteguard"],"navy_grid_grids":["essential-grid"],"navy_grid_images":["essential-grid"],"frm_fields":["formidable"],"frm_forms":["formidable"],"frm_item_metas":["formidable"],"frm_items":["formidable"],"bwg_album":["photo-gallery"],"bwg_album_gallery":["photo-gallery"],"bwg_gallery":["photo-gallery"],"bwg_image":["photo-gallery"],"bwg_image_comment":["photo-gallery"],"bwg_image_rate":["photo-gallery"],"bwg_image_tag":["photo-gallery"],"bwg_shortcode":["photo-gallery"],"bwg_theme":["photo-gallery"],"bwg_file_paths":["photo-gallery"],"cptch_images":["captcha","captcha-bws"],"cptch_packages":["captcha","captcha-bws"],"cptch_whitelist":["captcha"],"hctpc_images":["captcha"],"hctpc_packages":["captcha"],"hctpc_whitelist":["captcha"],"cptch_blacklist_ip":["captcha"],"cptch_track_countries":["captcha"],"cptch_track_visitor":["captcha"],"shortpixel_folders":["shortpixel-image-optimiser"],"shortpixel_meta":["shortpixel-image-optimiser"],"prli_clicks":["pretty-link"],"prli_groups":["pretty-link"],"prli_link_metas":["pretty-link"],"prli_links":["pretty-link"],"eum_logs":["stops-core-theme-and-plugin-updates"],"social_users":["nextend-facebook-connect","nextend-google-connect","nextend-twitter-connect"],"hfcm_scripts":["header-footer-code-manager"],"cmplz_cookiebanners":["complianz-gdpr"],"cmplz_cookies":["complianz-gdpr"],"cmplz_services":["complianz-gdpr"],"cmplz_dnsmpd":["complianz-gdpr"],"cartflows_ca_cart_abandonment":["woo-cart-abandonment-recovery"],"cartflows_ca_email_history":["woo-cart-abandonment-recovery"],"cartflows_ca_email_templates":["woo-cart-abandonment-recovery"],"cartflows_ca_email_templates_meta":["woo-cart-abandonment-recovery"],"sgs_log_events":["sg-security"],"sgs_log_visitors":["sg-security"],"popularpostsdata":["wordpress-popular-posts","popular-posts","mh-board"],"popularpostssummary":["wordpress-popular-posts"],"popularpoststransients":["wordpress-popular-posts"],"toolset_post_guid_id":["types"],"ber_acl":["wp-cerber"],"ber_blocks":["wp-cerber"],"ber_lab":["wp-cerber"],"ber_log":["wp-cerber"],"ber_lab_ip":["wp-cerber"],"ber_lab_net":["wp-cerber"],"ber_countries":["wp-cerber"],"ber_traffic":["wp-cerber"],"ber_files":["wp-cerber"],"cerber_sets":["wp-cerber"],"cerber_files":["wp-cerber"],"ber_qmem":["wp-cerber"],"cerber_uss":["wp-cerber"],"statify":["statify"],"bp_activity":["buddypress"],"bp_activity_meta":["buddypress"],"bp_notifications":["buddypress"],"bp_notifications_meta":["buddypress"],"bp_xprofile_data":["buddypress"],"bp_xprofile_fields":["buddypress"],"bp_xprofile_groups":["buddypress"],"bp_xprofile_meta":["buddypress"],"signups":["buddypress","miniorange-user-manager","wp-user-signups"],"bp_invitations":["buddypress"],"bp_optouts":["buddypress"],"cff_facebook_feed_locator":["custom-facebook-feed"],"cff_feed_caches":["custom-facebook-feed"],"cff_feeds":["custom-facebook-feed"],"cff_sources":["custom-facebook-feed"],"um_metadata":["ultimate-member"],"sg_fblike_popup":["popup-builder"],"sg_html_popup":["popup-builder"],"sg_image_popup":["popup-builder"],"sg_popup":["popup-builder"],"sg_popup_addons":["popup-builder"],"sg_popup_addons_connection":["popup-builder"],"sg_popup_settings":["popup-builder"],"sg_shortcode_popup":["popup-builder"],"sgpb_subscribers":["popup-builder"],"sgpb_subscription_error_log":["popup-builder"],"gglcptch_whitelist":["google-captcha"],"gglcptch_allowlist":["google-captcha"],"brizy_logs":["unyson","brizy"],"cf_form_entries":["caldera-forms"],"cf_form_entry_meta":["caldera-forms"],"cf_form_entry_values":["caldera-forms"],"cf_tracking":["caldera-forms"],"cf_tracking_meta":["caldera-forms"],"cf_forms":["caldera-forms"],"cf_pro_messages":["caldera-forms"],"cf_queue_failures":["caldera-forms"],"cf_queue_jobs":["caldera-forms"],"trp_gettext_en_us":["translatepress-multilingual"],"trp_gettext_":["translatepress-multilingual"],"gdpr_cc_options":["gdpr-cookie-compliance"],"frmt_form_entry":["forminator"],"frmt_form_entry_meta":["forminator"],"frmt_form_views":["forminator"],"wysija_campaign":["wysija-newsletters","mailbard-newsletters"],"wysija_campaign_list":["wysija-newsletters","mailbard-newsletters"],"wysija_custom_field":["wysija-newsletters","mailbard-newsletters"],"wysija_email":["wysija-newsletters","mailbard-newsletters"],"wysija_email_user_stat":["wysija-newsletters","mailbard-newsletters"],"wysija_email_user_url":["wysija-newsletters","mailbard-newsletters"],"wysija_form":["wysija-newsletters","mailbard-newsletters"],"wysija_list":["wysija-newsletters","mailbard-newsletters"],"wysija_queue":["wysija-newsletters","mailbard-newsletters"],"wysija_url":["wysija-newsletters","mailbard-newsletters"],"wysija_url_mail":["wysija-newsletters","mailbard-newsletters"],"wysija_user":["wysija-newsletters","mailbard-newsletters"],"wysija_user_field":["wysija-newsletters","mailbard-newsletters"],"wysija_user_history":["wysija-newsletters","mailbard-newsletters"],"wysija_user_list":["wysija-newsletters","mailbard-newsletters"],"wysija_subscriber_ips":["wysija-newsletters","mailbard-newsletters"],"yarpp_related_cache":["yet-another-related-posts-plugin"],"qss":["squirrly-seo","quickseo-by-squirrly"],"check_email_log":["check-email"],"give_customermeta":["give"],"give_customers":["give"],"give_donormeta":["give"],"give_donors":["give"],"give_formmeta":["give"],"give_logmeta":["give"],"give_logs":["give"],"give_paymentmeta":["give"],"give_sequential_ordering":["give"],"give_donationmeta":["give"],"give_sessions":["give"],"give_commentmeta":["give"],"give_comments":["give"],"give_revenue":["give"],"give_log":["give"],"give_migrations":["give"],"lockdowns":["login-lockdown"],"login_fails":["login-lockdown"],"hugeit_slider_slide":["slider-image"],"hugeit_slider_slider":["slider-image"],"wp_rp_tags":["wordpress-23-related-posts-plugin"],"wpeditor_settings":["wp-editor"],"cbnetpo_ping_optimizer":["wordpress-ping-optimizer"],"yikes_easy_mc_forms":["yikes-inc-easy-mailchimp-extender"],"redirects":["eps-301-redirects","301-redirects","links-auditor"],"aryo_activity_log":["aryo-activity-log"],"cleantalk_sfw":["cleantalk-spam-protect"],"cleantalk_sfw_logs":["cleantalk-spam-protect"],"cleantalk_sessions":["cleantalk-spam-protect"],"cleantalk_spamscan_logs":["cleantalk-spam-protect"],"cleantalk_ac_log":["cleantalk-spam-protect"],"cleantalk_ua_bl":["cleantalk-spam-protect"],"pmpro_discount_codes":["paid-memberships-pro"],"pmpro_discount_codes_levels":["paid-memberships-pro"],"pmpro_discount_codes_uses":["paid-memberships-pro"],"pmpro_membership_levelmeta":["paid-memberships-pro"],"pmpro_membership_levels":["paid-memberships-pro"],"pmpro_membership_orders":["paid-memberships-pro"],"pmpro_memberships_categories":["paid-memberships-pro"],"pmpro_memberships_pages":["paid-memberships-pro"],"pmpro_memberships_users":["paid-memberships-pro"],"pmpro_membership_ordermeta":["paid-memberships-pro"],"wsal_metadata":["wp-security-audit-log","activity-log-mainwp"],"wsal_occurrences":["wp-security-audit-log","activity-log-mainwp"],"wsal_options":["wp-security-audit-log"],"simple_history":["simple-history"],"simple_history_contexts":["simple-history"],"podsrel":["pods"],"post_views":["post-views-counter","author-page-views","access-expiration"],"learnpress_order_itemmeta":["learnpress"],"learnpress_order_items":["learnpress"],"learnpress_question_answers":["learnpress"],"learnpress_quiz_questions":["learnpress"],"learnpress_review_logs":["learnpress"],"learnpress_section_items":["learnpress"],"learnpress_sections":["learnpress"],"learnpress_sessions":["learnpress"],"learnpress_user_itemmeta":["learnpress"],"learnpress_user_items":["learnpress"],"learnpress_question_answermeta":["learnpress"],"learnpress_user_item_results":["learnpress"],"mollie_pending_payment":["mollie-payments-for-woocommerce"],"strong_views":["strong-testimonials"],"slim_events":["wp-slimstat"],"slim_events_archive":["wp-slimstat"],"slim_stats":["wp-slimstat"],"slim_stats_archive":["wp-slimstat"],"em_bookings":["events-manager","event-monster"],"em_tickets":["events-manager","event-monster"],"em_events":["events-manager"],"em_locations":["events-manager"],"em_meta":["events-manager"],"em_tickets_bookings":["events-manager"],"masterslider_options":["master-slider"],"masterslider_sliders":["master-slider"],"cpd_counter":["count-per-day"],"relevanssi":["relevanssi"],"relevanssi_log":["relevanssi"],"relevanssi_stopwords":["relevanssi"],"404_to_301":["404-to-301"],"responsive_menu":["responsive-menu"],"ahm_download_stats":["download-manager"],"ahm_emails":["download-manager"],"ahm_assets":["download-manager"],"ahm_asset_links":["download-manager"],"ahm_sessions":["download-manager"],"ahm_social_conns":["download-manager"],"ahm_user_download_counts":["download-manager"],"es_deliverreport":["email-subscribers"],"es_emaillist":["email-subscribers"],"es_notification":["email-subscribers","gnaritas-amazon-ses"],"es_sentdetails":["email-subscribers"],"es_templatetable":["email-subscribers"],"es_subscriber_ips":["email-subscribers"],"ig_blocked_emails":["email-subscribers"],"ig_campaigns":["email-subscribers"],"ig_contacts":["email-subscribers"],"ig_contacts_ips":["email-subscribers"],"ig_forms":["email-subscribers"],"ig_lists":["email-subscribers"],"ig_lists_contacts":["email-subscribers"],"ig_mailing_queue":["email-subscribers"],"ig_sending_queue":["email-subscribers"],"ig_actions":["email-subscribers"],"ig_contact_meta":["email-subscribers"],"ig_links":["email-subscribers"],"ig_contactmeta":["email-subscribers"],"ig_queue":["email-subscribers"],"ig_workflows":["email-subscribers"],"ig_workflows_queue":["email-subscribers"],"ig_wc_cart":["email-subscribers"],"ig_wc_guests":["email-subscribers"],"ig_temp_import":["email-subscribers"],"ig_unsubscribe_feedback":["email-subscribers"],"ig_custom_fields":["email-subscribers"],"download_log":["download-monitor"],"dlm_order":["download-monitor"],"dlm_order_customer":["download-monitor"],"dlm_order_item":["download-monitor"],"dlm_order_transaction":["download-monitor"],"dlm_session":["download-monitor"],"create_map":["wp-google-map-plugin"],"group_map":["wp-google-map-plugin"],"map_locations":["wp-google-map-plugin"],"login_redirects":["peters-login-redirect"],"maxbuttons_collections":["maxbuttons"],"maxbuttons_collections_trans":["maxbuttons"],"maxbuttonsv3":["maxbuttons"],"odb_logs":["rvg-optimize-database"],"admin_columns":["codepress-admin-columns"],"pmxi_files":["wp-all-import","wp-all-import-pro"],"pmxi_history":["wp-all-import","wp-all-import-pro"],"pmxi_imports":["wp-all-import","wp-all-import-pro"],"pmxi_posts":["wp-all-import","wp-all-import-pro"],"pmxi_templates":["wp-all-import","wp-all-import-pro"],"pmxi_images":["wp-all-import","wp-all-import-pro"],"pmxi_hash":["wp-all-import"],"optin_meta":["wordpress-popup"],"optins":["wordpress-popup"],"hustle_modules":["wordpress-popup"],"hustle_modules_meta":["wordpress-popup"],"hustle_entries":["wordpress-popup"],"hustle_entries_meta":["wordpress-popup"],"hustle_tracking":["wordpress-popup"],"wpml_mails":["wp-mail-logging"],"ctf_feed_locator":["custom-twitter-feeds"],"modula":["modula-best-grid-gallery"],"modula_images":["modula-best-grid-gallery"],"shortpixel_queue":["regenerate-thumbnails-advanced"],"aepc_custom_audiences":["pixel-caffeine"],"aepc_logs":["pixel-caffeine"],"wpgdprc_consents":["wp-gdpr-compliance"],"wpgdprc_log":["wp-gdpr-compliance"],"wpgdprc_access_requests":["wp-gdpr-compliance"],"wpgdprc_delete_requests":["wp-gdpr-compliance"],"fluentform_form_analytics":["fluentform"],"fluentform_form_meta":["fluentform"],"fluentform_forms":["fluentform"],"fluentform_submission_meta":["fluentform"],"fluentform_submissions":["fluentform"],"fluentform_transactions":["fluentform"],"fluentform_entry_details":["fluentform"],"fluentform_logs":["fluentform"],"ff_scheduled_actions":["fluentform"],"addonlibrary_addons":["unlimited-elements-for-elementor","unlimited-addons-for-wpbakery-page-builder","addon-library","blox-page-builder"],"addonlibrary_categories":["unlimited-elements-for-elementor","unlimited-addons-for-wpbakery-page-builder","addon-library","blox-page-builder"],"evf_sessions":["everest-forms"],"evf_entries":["everest-forms"],"evf_entrymeta":["everest-forms"],"fbv":["filebird"],"fbv_attachment_folder":["filebird"],"mec_events":["modern-events-calendar-lite"],"mec_dates":["modern-events-calendar-lite"],"mec_occurrences":["modern-events-calendar-lite"],"mec_users":["modern-events-calendar-lite"],"mec_attendees":["modern-events-calendar-lite"],"mec_bookings":["modern-events-calendar-lite"],"chaty_contact_form_leads":["chaty"],"rio_process_queue":["robin-image-optimizer"],"wpvivid_scan_result":["wpvivid-backuprestore"],"wpvivid_unused_uploads_files":["wpvivid-backuprestore"],"pmxe_exports":["wp-all-export","wp-all-export-pro"],"pmxe_google_cats":["wp-all-export","wp-all-export-pro"],"pmxe_posts":["wp-all-export","wp-all-export-pro"],"pmxe_templates":["wp-all-export","wp-all-export-pro"],"nxs_log":["social-networks-auto-poster-facebook-twitter-g"],"nxs_query":["social-networks-auto-poster-facebook-twitter-g"],"wc_comments_subscription":["wpdiscuz"],"wc_phrases":["wpdiscuz"],"wc_users_voted":["wpdiscuz"],"wc_avatars_cache":["wpdiscuz"],"wc_follow_users":["wpdiscuz"],"wc_feedback_forms":["wpdiscuz"],"wc_users_rated":["wpdiscuz"],"ai1ec_event_category_meta":["all-in-one-event-calendar"],"ai1ec_event_instances":["all-in-one-event-calendar"],"ai1ec_events":["all-in-one-event-calendar"],"ai1ec_event_feeds":["all-in-one-event-calendar"],"fvm_cache":["fast-velocity-minify"],"fvm_logs":["fast-velocity-minify"],"xyz_ips_short_code":["insert-php-code-snippet"],"grp_google_place":["widget-google-reviews","wp-social-seo"],"grp_google_review":["widget-google-reviews","wp-social-seo"],"grp_google_stats":["widget-google-reviews"],"adtribes_my_conversions":["woo-product-feed-pro"],"cf7_vdata":["advanced-cf7-db"],"cf7_vdata_entry":["advanced-cf7-db"],"woocommerce_ir":["persian-woocommerce"],"cntctfrm_field":["contact-form-plugin"],"pollsa":["wp-polls"],"pollsip":["wp-polls"],"pollsq":["wp-polls"],"wt_iew_action_history":["product-import-export-for-woo","users-customers-import-export-for-wp-woocommerce","order-import-export-for-woocommerce"],"wt_iew_cron":["product-import-export-for-woo","users-customers-import-export-for-wp-woocommerce","order-import-export-for-woocommerce"],"wt_iew_ftp":["product-import-export-for-woo","users-customers-import-export-for-wp-woocommerce","order-import-export-for-woocommerce"],"wt_iew_mapping_template":["product-import-export-for-woo","users-customers-import-export-for-wp-woocommerce","order-import-export-for-woocommerce"],"formmaker":["form-maker","contact-form-maker"],"formmaker_backup":["form-maker","contact-form-maker"],"formmaker_blocked":["form-maker","contact-form-maker"],"formmaker_display_options":["form-maker","contact-form-maker"],"formmaker_query":["form-maker","contact-form-maker"],"formmaker_sessions":["form-maker","contact-form-maker"],"formmaker_submits":["form-maker","contact-form-maker"],"formmaker_themes":["form-maker","contact-form-maker"],"formmaker_views":["form-maker","contact-form-maker"],"formmaker_groups":["form-maker","contact-form-maker"],"formmaker_cookies":["form-maker"],"auto_updates":["companion-auto-update"],"update_log":["companion-auto-update"],"xsg_sitemap_meta":["www-xml-sitemap-generator-org"],"wpsmtp_logs":["wp-smtp"],"ratings":["wp-postratings"],"gde_profiles":["google-document-embedder"],"gde_secure":["google-document-embedder"],"filemeta":["advanced-code-editor"],"_post_sched_settings":["blog2social"],"_posts":["blog2social"],"_posts_network_details":["blog2social"],"_posts_sched_details":["blog2social"],"_user":["blog2social"],"_user_contact":["blog2social"],"_user_network_settings":["blog2social"],"_posts_drafts":["blog2social"],"b2s_posts":["blog2social"],"b2s_posts_drafts":["blog2social"],"b2s_posts_network_details":["blog2social"],"b2s_posts_sched_details":["blog2social"],"b2s_user":["blog2social"],"b2s_user_contact":["blog2social"],"b2s_user_network_settings":["blog2social"],"b2s_posts_favorites":["blog2social"],"b2s_network_insights":["blog2social"],"b2s_posts_insights":["blog2social"],"ulike":["wp-ulike"],"ulike_activities":["wp-ulike"],"ulike_comments":["wp-ulike"],"ulike_forums":["wp-ulike"],"ulike_meta":["wp-ulike"],"dokan_announcement":["dokan-lite"],"dokan_orders":["dokan-lite"],"dokan_refund":["dokan-lite"],"dokan_vendor_balance":["dokan-lite"],"dokan_withdraw":["dokan-lite"],"fb3d_pages":["interactive-3d-flipbook-powered-physics-engine","unreal-flipbook-addon-for-visual-composer"],"user_registration_sessions":["user-registration"],"ninja_table_items":["ninja-tables"],"wplx_tracking":["free-sales-funnel-squeeze-pages-landing-page-builder-templates-make"],"rcb_asset_seo_redirect":["real-cookie-banner"],"rcb_consent":["real-cookie-banner"],"rcb_revision":["real-cookie-banner"],"rcb_revision_independent":["real-cookie-banner"],"rcb_stats":["real-cookie-banner"],"rcb_presets":["real-cookie-banner"],"rcb_tcf_features":["real-cookie-banner"],"rcb_tcf_purposes":["real-cookie-banner"],"rcb_tcf_special_features":["real-cookie-banner"],"rcb_tcf_special_purposes":["real-cookie-banner"],"rcb_tcf_stacks":["real-cookie-banner"],"rcb_tcf_vendors":["real-cookie-banner"],"rcb_scan":["real-cookie-banner"],"real_queue":["real-cookie-banner"],"rcb_scan_markup":["real-cookie-banner"],"cp_calculated_fields_form_discount_codes":["calculated-fields-form"],"cp_calculated_fields_form_posts":["calculated-fields-form"],"cp_calculated_fields_form_settings":["calculated-fields-form"],"cp_calculated_fields_form_revision":["calculated-fields-form"],"wsluserscontacts":["wordpress-social-login"],"wslusersprofiles":["wordpress-social-login"],"icwp_wpsf_audit_trail":["wp-simple-firewall"],"icwp_wpsf_ip_lists":["wp-simple-firewall"],"icwp_wpsf_sessions":["wp-simple-firewall"],"icwp_wpsf_traffic":["wp-simple-firewall"],"icwp_wpsf_scanner":["wp-simple-firewall"],"icwp_wpsf_events":["wp-simple-firewall"],"icwp_wpsf_scanq":["wp-simple-firewall"],"icwp_wpsf_filelocker":["wp-simple-firewall"],"icwp_wpsf_reports":["wp-simple-firewall"],"icwp_wpsf_notes":["wp-simple-firewall"],"icwp_wpsf_geoip":["wp-simple-firewall"],"icwp_wpsf_botsignals":["wp-simple-firewall"],"icwp_wpsf_at_logs":["wp-simple-firewall"],"icwp_wpsf_at_meta":["wp-simple-firewall"],"icwp_wpsf_ips":["wp-simple-firewall"],"icwp_wpsf_req_logs":["wp-simple-firewall"],"icwp_wpsf_botsignal":["wp-simple-firewall"],"icwp_wpsf_resultitems":["wp-simple-firewall"],"icwp_wpsf_scanitems":["wp-simple-firewall"],"icwp_wpsf_scanresults":["wp-simple-firewall"],"icwp_wpsf_scans":["wp-simple-firewall"],"icwp_wpsf_user_meta":["wp-simple-firewall"],"icwp_wpsf_reporting":["wp-simple-firewall"],"icwp_wpsf_statistics":["wp-simple-firewall"],"icwp_wpsf_spambot_comments_filter":["wp-simple-firewall"],"huge_itportfolio_images":["portfolio-gallery"],"huge_itportfolio_portfolios":["portfolio-gallery"],"wpfront_ure_login_redirect":["wpfront-user-role-editor"],"wpfront_ure_options":["wpfront-user-role-editor"],"wpfront_ure_post_type":["wpfront-user-role-editor"],"wpfront_ure_taxonomy":["wpfront-user-role-editor"],"hugeit_maps_circles":["google-maps"],"hugeit_maps_directions":["google-maps"],"hugeit_maps_maps":["google-maps"],"hugeit_maps_markers":["google-maps"],"hugeit_maps_polygons":["google-maps"],"hugeit_maps_polylines":["google-maps"],"hugeit_maps_stores":["google-maps"],"wprss_logs":["wp-rss-aggregator"],"booking":["booking","asi-taxi-booking"],"bookingdates":["booking"],"stream":["stream"],"stream_meta":["stream"],"mappress_maps":["mappress-google-maps-for-wordpress"],"mappress_posts":["mappress-google-maps-for-wordpress"],"visual_form_builder_entries":["visual-form-builder"],"visual_form_builder_fields":["visual-form-builder"],"visual_form_builder_forms":["visual-form-builder"],"sg_action":["backup"],"sg_config":["backup"],"sg_schedule":["backup"],"wpb2d_excluded_files":["wordpress-backup-to-dropbox"],"wpb2d_options":["wordpress-backup-to-dropbox"],"wpb2d_processed_dbtables":["wordpress-backup-to-dropbox"],"wpb2d_processed_files":["wordpress-backup-to-dropbox"],"ktaisession":["ktai-style"],"wpdatacharts":["wpdatatables"],"wpdatatables":["wpdatatables"],"wpdatatables_columns":["wpdatatables"],"wpdatatables_rows":["wpdatatables"],"ab_appointments":["bookly-responsive-appointment-booking-tool"],"ab_categories":["bookly-responsive-appointment-booking-tool"],"ab_coupon_services":["bookly-responsive-appointment-booking-tool"],"ab_coupons":["bookly-responsive-appointment-booking-tool"],"ab_customer_appointments":["bookly-responsive-appointment-booking-tool"],"ab_customers":["bookly-responsive-appointment-booking-tool"],"ab_holidays":["bookly-responsive-appointment-booking-tool"],"ab_notifications":["bookly-responsive-appointment-booking-tool"],"ab_payments":["bookly-responsive-appointment-booking-tool"],"ab_schedule_item_breaks":["bookly-responsive-appointment-booking-tool"],"ab_sent_notifications":["bookly-responsive-appointment-booking-tool"],"ab_series":["bookly-responsive-appointment-booking-tool"],"ab_services":["bookly-responsive-appointment-booking-tool"],"ab_staff":["bookly-responsive-appointment-booking-tool"],"ab_staff_schedule_items":["bookly-responsive-appointment-booking-tool"],"ab_staff_services":["bookly-responsive-appointment-booking-tool"],"ab_messages":["bookly-responsive-appointment-booking-tool"],"ab_staff_preference_orders":["bookly-responsive-appointment-booking-tool"],"ab_stats":["bookly-responsive-appointment-booking-tool"],"ab_sub_services":["bookly-responsive-appointment-booking-tool"],"bookly_appointments":["bookly-responsive-appointment-booking-tool"],"bookly_categories":["bookly-responsive-appointment-booking-tool"],"bookly_customer_appointments":["bookly-responsive-appointment-booking-tool"],"bookly_customers":["bookly-responsive-appointment-booking-tool"],"bookly_holidays":["bookly-responsive-appointment-booking-tool"],"bookly_messages":["bookly-responsive-appointment-booking-tool"],"bookly_notifications":["bookly-responsive-appointment-booking-tool"],"bookly_payments":["bookly-responsive-appointment-booking-tool"],"bookly_schedule_item_breaks":["bookly-responsive-appointment-booking-tool"],"bookly_sent_notifications":["bookly-responsive-appointment-booking-tool"],"bookly_series":["bookly-responsive-appointment-booking-tool"],"bookly_services":["bookly-responsive-appointment-booking-tool"],"bookly_shop":["bookly-responsive-appointment-booking-tool"],"bookly_staff":["bookly-responsive-appointment-booking-tool"],"bookly_staff_schedule_items":["bookly-responsive-appointment-booking-tool"],"bookly_staff_services":["bookly-responsive-appointment-booking-tool"],"bookly_stats":["bookly-responsive-appointment-booking-tool"],"bookly_sub_services":["bookly-responsive-appointment-booking-tool"],"bookly_log":["bookly-responsive-appointment-booking-tool"],"bookly_news":["bookly-responsive-appointment-booking-tool"],"bookly_orders":["bookly-responsive-appointment-booking-tool"],"bookly_mailing_campaigns":["bookly-responsive-appointment-booking-tool"],"bookly_mailing_list_recipients":["bookly-responsive-appointment-booking-tool"],"bookly_mailing_lists":["bookly-responsive-appointment-booking-tool"],"bookly_mailing_queue":["bookly-responsive-appointment-booking-tool"],"email_log":["email-log","email-customizer-woocommerce"],"defender_lockout":["defender-security"],"defender_lockout_log":["defender-security"],"defender_audit_log":["defender-security"],"defender_email_log":["defender-security"],"defender_scan":["defender-security"],"defender_scan_item":["defender-security"],"fsmpt_email_logs":["fluent-smtp"],"mail_bank":["wp-mail-bank"],"mail_bank_meta":["wp-mail-bank"],"mail_bank_email_logs":["wp-mail-bank"],"mail_bank_logs":["wp-mail-bank"],"ditty_itemmeta":["ditty-news-ticker"],"ditty_items":["ditty-news-ticker"],"_browsers":["visitors-traffic-real-time-statistics"],"_countries":["visitors-traffic-real-time-statistics","photo-video-store","mymovingloads-leads-form"],"_hits":["visitors-traffic-real-time-statistics"],"_keywords":["visitors-traffic-real-time-statistics","project-supremacy","traveladsnetwork-com"],"_recent_visitors":["visitors-traffic-real-time-statistics"],"_refering_sites":["visitors-traffic-real-time-statistics"],"_search_engine_crawlers":["visitors-traffic-real-time-statistics"],"_search_engines":["visitors-traffic-real-time-statistics"],"_searching_visits":["visitors-traffic-real-time-statistics"],"_title_traffic":["visitors-traffic-real-time-statistics"],"_visitors":["visitors-traffic-real-time-statistics"],"_visits_time":["visitors-traffic-real-time-statistics"],"_daily_visitors_stats":["visitors-traffic-real-time-statistics"],"_online_users":["visitors-traffic-real-time-statistics"],"_settings":["visitors-traffic-real-time-statistics","photo-video-store"],"alm":["ajax-load-more"],"as3cf_items":["amazon-s3-and-cloudfront"],"swpm_members_tbl":["simple-membership"],"swpm_membership_meta_tbl":["simple-membership"],"swpm_membership_tbl":["simple-membership"],"swpm_payments_tbl":["simple-membership"],"gg_cdn":["gallery-by-supsystic"],"gg_folders":["gallery-by-supsystic"],"gg_galleries":["gallery-by-supsystic"],"gg_galleries_excluded":["gallery-by-supsystic"],"gg_galleries_resources":["gallery-by-supsystic"],"gg_image_optimize":["gallery-by-supsystic"],"gg_membership_presets":["gallery-by-supsystic"],"gg_photos":["gallery-by-supsystic"],"gg_photos_pos":["gallery-by-supsystic"],"gg_photos_settings":["gallery-by-supsystic"],"gg_settings_presets":["gallery-by-supsystic"],"gg_settings_sets":["gallery-by-supsystic"],"gg_stats":["gallery-by-supsystic"],"gg_tags":["gallery-by-supsystic"],"gg_attributes":["gallery-by-supsystic"],"edd_customermeta":["easy-digital-downloads"],"edd_customers":["easy-digital-downloads"],"edd_notifications":["easy-digital-downloads"],"quads_stats":["quick-adsense-reloaded"],"huge_it_videogallery_galleries":["gallery-video"],"huge_it_videogallery_videos":["gallery-video"],"bpspro_db_backup":["bulletproof-security"],"bpspro_login_security":["bulletproof-security"],"bpspro_seclog_ignore":["bulletproof-security"],"bpspro_mscan":["bulletproof-security"],"_wsd_plugin_alerts":["wp-security-scan","secure-wordpress"],"_wsd_plugin_live_traffic":["wp-security-scan","secure-wordpress"],"_wsd_plugin_scan":["wp-security-scan"],"_wsd_plugin_scans":["wp-security-scan"],"wdi_feeds":["wd-instagram-feed"],"wdi_themes":["wd-instagram-feed"],"mainwp_stream":["mainwp-child-reports"],"mainwp_stream_context":["mainwp-child-reports"],"mainwp_stream_meta":["mainwp-child-reports"],"aalb_asin_response":["amazon-associates-link-builder"],"mailerlite_forms":["official-mailerlite-sign-up-forms"],"wpmcleaner":["media-cleaner"],"mclean_refs":["media-cleaner"],"mclean_scan":["media-cleaner"],"wprm_ratings":["wp-recipe-maker"],"wprm_analytics":["wp-recipe-maker"],"userway":["userway-accessibility-widget"],"caos_webfonts":["host-webfonts-local"],"caos_webfonts_subsets":["host-webfonts-local"],"omgf_fonts":["host-webfonts-local"],"omgf_fonts_subsets":["host-webfonts-local"],"woo_shippment_provider":["woo-advanced-shipment-tracking"],"realmedialibrary":["real-media-library-lite"],"realmedialibrary_meta":["real-media-library-lite"],"realmedialibrary_posts":["real-media-library-lite"],"realmedialibrary_tmp":["real-media-library-lite"],"cfs_sessions":["custom-field-suite"],"cfs_values":["custom-field-suite"],"wplc_chat_msgs":["wp-live-chat-support"],"wplc_chat_sessions":["wp-live-chat-support"],"wplc_offline_messages":["wp-live-chat-support"],"wplc_webhooks":["wp-live-chat-support"],"wplc_chat_ratings":["wp-live-chat-support"],"wplc_chat_triggers":["wp-live-chat-support"],"wplc_custom_fields":["wp-live-chat-support"],"wplc_departments":["wp-live-chat-support"],"wplc_roi_conversions":["wp-live-chat-support"],"wplc_roi_goals":["wp-live-chat-support"],"wplc_actions_queue":["wp-live-chat-support"],"wplc_quick_responses":["wp-live-chat-support"],"wplc_chat_files":["wp-live-chat-support"],"gwolle_gb_entries":["gwolle-gb"],"gwolle_gb_log":["gwolle-gb"],"gmp_icons":["google-maps-easy"],"gmp_maps":["google-maps-easy"],"gmp_marker_groups":["google-maps-easy"],"gmp_markers":["google-maps-easy"],"gmp_modules":["google-maps-easy"],"gmp_modules_type":["google-maps-easy"],"gmp_options":["google-maps-easy"],"gmp_options_categories":["google-maps-easy"],"gmp_usage_stat":["google-maps-easy"],"gmp_membership_presets":["google-maps-easy"],"gmp_marker_groups_relation":["google-maps-easy"],"fv_player_players":["fv-wordpress-flowplayer"],"fv_player_videometa":["fv-wordpress-flowplayer"],"fv_player_videos":["fv-wordpress-flowplayer"],"fv_player_encoding_jobs":["fv-wordpress-flowplayer"],"ip_geo_block_cache":["ip-geo-block"],"ip_geo_block_logs":["ip-geo-block"],"ip_geo_block_stat":["ip-geo-block"],"wdslayer":["slider-wd"],"wdsslide":["slider-wd"],"wdsslider":["slider-wd"],"adrotate":["adrotate"],"adrotate_groups":["adrotate"],"adrotate_linkmeta":["adrotate"],"adrotate_schedule":["adrotate"],"adrotate_stats":["adrotate"],"adrotate_stats_archive":["adrotate"],"adrotate_tracker":["adrotate"],"adrotate_transactions":["adrotate"],"cn_social_icon":["easy-social-icons"],"dynamic_widgets":["dynamic-widgets"],"mlw_qm_audit_trail":["quiz-master-next"],"mlw_questions":["quiz-master-next"],"mlw_quizzes":["quiz-master-next"],"mlw_results":["quiz-master-next"],"mlw_quiz_theme_settings":["quiz-master-next"],"mlw_themes":["quiz-master-next"],"mlw_question_terms":["quiz-master-next"],"convertkit_user_history":["convertkit"],"ta_link_clicks":["thirstyaffiliates"],"ta_link_clicks_meta":["thirstyaffiliates"],"rp4wp_cache":["related-posts-for-wp"],"mp_timetable_data":["mp-timetable"],"h5p_contents":["h5p"],"h5p_contents_libraries":["h5p"],"h5p_contents_tags":["h5p"],"h5p_contents_user_data":["h5p"],"h5p_counters":["h5p"],"h5p_events":["h5p"],"h5p_libraries":["h5p"],"h5p_libraries_cachedassets":["h5p"],"h5p_libraries_hub_cache":["h5p"],"h5p_libraries_languages":["h5p"],"h5p_libraries_libraries":["h5p"],"h5p_results":["h5p"],"h5p_tags":["h5p"],"h5p_tmpfiles":["h5p"],"glsr_assigned_posts":["site-reviews"],"glsr_assigned_terms":["site-reviews"],"glsr_assigned_users":["site-reviews"],"glsr_ratings":["site-reviews"],"vxcf_leads":["contact-form-entries"],"vxcf_leads_detail":["contact-form-entries"],"vxcf_leads_notes":["contact-form-entries"],"amelia_appointments":["ameliabooking"],"amelia_categories":["ameliabooking"],"amelia_coupons":["ameliabooking"],"amelia_coupons_to_services":["ameliabooking"],"amelia_custom_fields":["ameliabooking"],"amelia_custom_fields_options":["ameliabooking"],"amelia_custom_fields_services":["ameliabooking"],"amelia_customer_bookings":["ameliabooking"],"amelia_customer_bookings_to_extras":["ameliabooking"],"amelia_extras":["ameliabooking"],"amelia_galleries":["ameliabooking"],"amelia_locations":["ameliabooking"],"amelia_locations_views":["ameliabooking"],"amelia_notifications":["ameliabooking"],"amelia_notifications_log":["ameliabooking"],"amelia_payments":["ameliabooking"],"amelia_providers_to_daysoff":["ameliabooking"],"amelia_providers_to_google_calendar":["ameliabooking"],"amelia_providers_to_locations":["ameliabooking"],"amelia_providers_to_services":["ameliabooking"],"amelia_providers_to_timeouts":["ameliabooking"],"amelia_providers_to_weekdays":["ameliabooking"],"amelia_providers_views":["ameliabooking"],"amelia_services":["ameliabooking"],"amelia_services_views":["ameliabooking"],"amelia_users":["ameliabooking"],"amelia_notifications_sms_history":["ameliabooking"],"amelia_providers_to_periods":["ameliabooking"],"amelia_providers_to_periods_services":["ameliabooking"],"amelia_providers_to_specialdays":["ameliabooking"],"amelia_providers_to_specialdays_periods":["ameliabooking"],"amelia_providers_to_specialdays_periods_services":["ameliabooking"],"amelia_coupons_to_events":["ameliabooking"],"amelia_customer_bookings_to_events_periods":["ameliabooking"],"amelia_events":["ameliabooking"],"amelia_events_periods":["ameliabooking"],"amelia_events_tags":["ameliabooking"],"amelia_events_to_providers":["ameliabooking"],"amelia_providers_to_events":["ameliabooking"],"amelia_custom_fields_events":["ameliabooking"],"amelia_providers_to_outlook_calendar":["ameliabooking"],"amelia_packages":["ameliabooking"],"amelia_packages_customers_to_services":["ameliabooking"],"amelia_packages_services_to_locations":["ameliabooking"],"amelia_packages_services_to_providers":["ameliabooking"],"amelia_packages_to_customers":["ameliabooking"],"amelia_packages_to_services":["ameliabooking"],"amelia_cache":["ameliabooking"],"amelia_notifications_to_entities":["ameliabooking"],"amelia_customer_bookings_to_events_tickets":["ameliabooking"],"amelia_events_to_tickets":["ameliabooking"],"tutor_quiz_attempt_answers":["tutor"],"tutor_quiz_attempts":["tutor"],"tutor_quiz_question_answers":["tutor"],"tutor_quiz_questions":["tutor"],"tutor_earnings":["tutor"],"tutor_withdraws":["tutor"],"sby_feed_locator":["feeds-for-youtube"],"presto_player_presets":["presto-player"],"presto_player_videos":["presto-player"],"presto_player_visits":["presto-player"],"presto_player_email_collection":["presto-player"],"presto_player_audio_presets":["presto-player"],"magenet_links":["website-monetization-by-magenet"],"eo_events":["event-organiser"],"eo_venuemeta":["event-organiser"],"limit_login":["wp-limit-login-attempts"],"top_ten":["top-10"],"top_ten_daily":["top-10"],"visitor_maps_ge":["visitor-maps"],"visitor_maps_st":["visitor-maps"],"visitor_maps_wo":["visitor-maps"],"user_login_log":["crazy-bone"],"my_calendar":["my-calendar"],"my_calendar_categories":["my-calendar"],"my_calendar_events":["my-calendar"],"my_calendar_locations":["my-calendar"],"my_calendar_category_relationships":["my-calendar"],"my_calendar_location_relationships":["my-calendar"],"huge_it_contact_contacts":["forms-contact"],"huge_it_contact_contacts_fields":["forms-contact"],"huge_it_contact_general_options":["forms-contact"],"huge_it_contact_style_fields":["forms-contact"],"huge_it_contact_styles":["forms-contact"],"huge_it_contact_submission":["forms-contact"],"huge_it_contact_subscribers":["forms-contact"],"xyz_ihs_short_code":["insert-html-snippet"],"em_modal_metas":["easy-modal"],"em_modals":["easy-modal"],"em_theme_metas":["easy-modal"],"em_themes":["easy-modal"],"iqblock_logging":["iq-block-country"],"hidemysitesecure":["hide-my-site","wp-privacy"],"external_links_logs":["wp-noexternallinks","mihdan-no-external-links"],"external_links_masks":["wp-noexternallinks","mihdan-no-external-links"],"wd_fb_data":["wd-facebook-feed"],"wd_fb_info":["wd-facebook-feed"],"wd_fb_option":["wd-facebook-feed"],"wd_fb_shortcode":["wd-facebook-feed"],"wd_fb_theme":["wd-facebook-feed"],"gpi_page_blacklist":["google-pagespeed-insights"],"gpi_page_reports":["google-pagespeed-insights"],"gpi_page_stats":["google-pagespeed-insights"],"gpi_api_error_logs":["google-pagespeed-insights"],"gpi_custom_urls":["google-pagespeed-insights"],"gpi_summary_snapshots":["google-pagespeed-insights"],"wp_seo_404_links":["seo-redirection","404-redirection-manager"],"wp_seo_cache":["seo-redirection","404-redirection-manager"],"wp_seo_redirection":["seo-redirection","404-redirection-manager"],"wp_seo_redirection_log":["seo-redirection","404-redirection-manager"],"wpadm_ga_cache":["analytics-counter"],"bad_behavior":["bad-behavior"],"uam_accessgroup_to_object":["user-access-manager"],"uam_accessgroups":["user-access-manager"],"fm_log":["file-manager"],"cscs_db_subscriptions":["igniteup"],"supsystic_tbl_columns":["data-tables-generator-by-supsystic"],"supsystic_tbl_diagrams":["data-tables-generator-by-supsystic"],"supsystic_tbl_rows":["data-tables-generator-by-supsystic"],"supsystic_tbl_tables":["data-tables-generator-by-supsystic"],"supsystic_tbl_woo_columns":["data-tables-generator-by-supsystic"],"zerospam_blocked_ips":["zero-spam"],"zerospam_log":["zero-spam"],"wpzerospam_blocked":["zero-spam"],"wpzerospam_log":["zero-spam"],"wpzerospam_blacklist":["zero-spam"],"wfu_dbxqueue":["wp-file-upload"],"wfu_log":["wp-file-upload"],"wfu_userdata":["wp-file-upload"],"mo_openid_linked_user":["miniorange-login-openid","ecommerce-social-login-social-sharing-by-miniorange"],"pts_modules":["pricing-table-by-supsystic"],"pts_modules_type":["pricing-table-by-supsystic"],"pts_tables":["pricing-table-by-supsystic"],"pts_usage_stat":["pricing-table-by-supsystic"],"subscribe2":["subscribe2"],"aps_social_icons":["accesspress-social-icons"],"xcloner_scheduler":["xcloner-backup-and-restore"],"finaltiles_gallery":["final-tiles-grid-gallery-lite"],"finaltiles_gallery_images":["final-tiles-grid-gallery-lite"],"finaltilesgalleries":["final-tiles-grid-gallery-lite"],"finaltilesimages":["final-tiles-grid-gallery-lite"],"cegg_autoblog":["content-egg"],"cegg_price_alert":["content-egg"],"cegg_price_history":["content-egg"],"cegg_product":["content-egg"],"wpforo_accesses":["wpforo"],"wpforo_forums":["wpforo"],"wpforo_languages":["wpforo"],"wpforo_likes":["wpforo"],"wpforo_phrases":["wpforo"],"wpforo_posts":["wpforo"],"wpforo_profiles":["wpforo"],"wpforo_subscribes":["wpforo"],"wpforo_topics":["wpforo"],"wpforo_usergroups":["wpforo"],"wpforo_views":["wpforo"],"wpforo_visits":["wpforo"],"wpforo_votes":["wpforo"],"wpforo_activity":["wpforo"],"wpforo_tags":["wpforo"],"wpforo_post_revisions":["wpforo"],"wpforo_postmeta":["wpforo"],"wpforo_logs":["wpforo"],"sdm_downloads":["simple-download-monitor"],"ac_abandoned_cart_history_lite":["woocommerce-abandoned-cart"],"ac_email_templates_lite":["woocommerce-abandoned-cart"],"ac_guest_abandoned_cart_history_lite":["woocommerce-abandoned-cart"],"ac_sent_history_lite":["woocommerce-abandoned-cart"],"stock_log":["woocommerce-stock-manager"],"say_what_strings":["say-what"],"fo_elements":["font-organizer"],"fo_usable_fonts":["font-organizer"],"gdbc_attempts":["goodbye-captcha"],"wpuf_transaction":["wp-user-frontend"],"wpuf_subscribers":["wp-user-frontend"],"vod_folder":["vod-infomaniak"],"vod_player":["vod-infomaniak"],"vod_playlist":["vod-infomaniak"],"vod_upload":["vod-infomaniak"],"vod_video":["vod-infomaniak"],"structuring_markup":["wp-structuring-markup"],"pz_linkcard":["pz-linkcard"],"oses_clicks":["wp-ses"],"oses_emails":["wp-ses"],"oses_attachments":["wp-ses"],"oses_email_attachments":["wp-ses"],"oses_failures":["wp-ses"],"oses_jobs":["wp-ses"],"simply_static_pages":["simply-static"],"postmark_log":["postmark-approved-wordpress-plugin"],"ariadminer_connections":["ari-adminer"],"wfpklist_template_data":["print-invoices-packing-slip-labels-for-woocommerce"],"pmr_status":["phoenix-media-rename"],"mo_campaign_log":["mailoptin"],"mo_campaign_logmeta":["mailoptin"],"mo_conversions":["mailoptin"],"mo_email_campaigns":["mailoptin"],"mo_optin_campaignmeta":["mailoptin"],"mo_optin_campaigns":["mailoptin"],"mo_email_campaignmeta":["mailoptin"],"weforms_entries":["weforms"],"weforms_entrymeta":["weforms"],"weforms_payments":["weforms"],"psninja_amdd":["psn-pagespeed-ninja"],"psninja_amdd_cache":["psn-pagespeed-ninja"],"psninja_urls":["psn-pagespeed-ninja"],"wcfm_membership_subscription":["wc-multivendor-membership"],"wp_phpmyadmin_extension__errors_log":["wp-phpmyadmin-extension"],"wpf_filters":["woo-product-filter"],"wpf_modules":["woo-product-filter"],"wpf_modules_type":["woo-product-filter"],"wpf_usage_stat":["woo-product-filter"],"wpf_meta_data":["woo-product-filter"],"wpf_meta_keys":["woo-product-filter"],"wpf_meta_values":["woo-product-filter"],"wpf_meta_values_bk":["woo-product-filter"],"wcfm_marketplace_orders":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_product_multivendor":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_refund_request":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_review_rating_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_reviews":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_reviews_response":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_shipping_zone_locations":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_shipping_zone_methods":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_vendor_ledger":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_withdraw_request":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_withdraw_request_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_reverse_withdrawal":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_store_taxonomies":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_affiliate_orders":["wc-multivendor-marketplace"],"wcfm_marketplace_affiliate_orders_meta":["wc-multivendor-marketplace"],"wcfm_marketplace_orders_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_refund_request_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_reverse_withdrawal_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_reviews_response_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"swcfpc_logs":["wp-cloudflare-page-cache"],"nx_entries":["notificationx"],"nx_posts":["notificationx"],"nx_stats":["notificationx"],"matomo_access":["matomo"],"matomo_archive_numeric_2020_01":["matomo"],"matomo_archive_numeric_2020_02":["matomo"],"matomo_brute_force_log":["matomo"],"matomo_goal":["matomo"],"matomo_locks":["matomo"],"matomo_log_action":["matomo"],"matomo_log_conversion":["matomo"],"matomo_log_conversion_item":["matomo"],"matomo_log_link_visit_action":["matomo"],"matomo_log_profiling":["matomo"],"matomo_log_visit":["matomo"],"matomo_logger_message":["matomo"],"matomo_option":["matomo"],"matomo_plugin_setting":["matomo"],"matomo_privacy_logdata_anonymizations":["matomo"],"matomo_report":["matomo"],"matomo_report_subscriptions":["matomo"],"matomo_segment":["matomo"],"matomo_sequence":["matomo"],"matomo_session":["matomo"],"matomo_site":["matomo"],"matomo_site_setting":["matomo"],"matomo_site_url":["matomo"],"matomo_tagmanager_container":["matomo"],"matomo_tagmanager_container_release":["matomo"],"matomo_tagmanager_container_version":["matomo"],"matomo_tagmanager_tag":["matomo"],"matomo_tagmanager_trigger":["matomo"],"matomo_tagmanager_variable":["matomo"],"matomo_tracking_failure":["matomo"],"matomo_twofactor_recovery_code":["matomo"],"matomo_user":["matomo"],"matomo_user_dashboard":["matomo"],"matomo_user_language":["matomo"],"matomo_archive_numeric_2020_03":["matomo"],"matomo_archive_numeric_2020_04":["matomo"],"matomo_archive_numeric_2020_05":["matomo"],"matomo_archive_numeric_2019_08":["matomo"],"matomo_archive_numeric_2019_09":["matomo"],"matomo_archive_numeric_2019_10":["matomo"],"matomo_archive_numeric_2019_11":["matomo"],"matomo_archive_numeric_2019_12":["matomo"],"matomo_archive_numeric_2020_06":["matomo"],"matomo_archive_numeric_2020_07":["matomo"],"matomo_archive_numeric_2020_08":["matomo"],"matomo_archive_numeric_2020_09":["matomo"],"matomo_archive_numeric_2020_10":["matomo"],"matomo_archive_numeric_2020_11":["matomo"],"matomo_archive_invalidations":["matomo"],"matomo_custom_dimensions":["matomo"],"matomo_user_token_auth":["matomo"],"matomo_archive_numeric_2020_12":["matomo"],"matomo_archive_numeric_2021_01":["matomo"],"matomo_archive_numeric_2021_02":["matomo"],"matomo_archive_numeric_2021_03":["matomo"],"matomo_archive_numeric_2021_04":["matomo"],"matomo_archive_numeric_2021_05":["matomo"],"matomo_archive_numeric_2021_06":["matomo"],"matomo_archive_numeric_2021_07":["matomo"],"matomo_archive_numeric_2021_08":["matomo"],"matomo_archive_numeric_2021_09":["matomo"],"matomo_archive_numeric_2021_10":["matomo"],"matomo_archive_numeric_2021_11":["matomo"],"matomo_archive_numeric_2021_12":["matomo"],"matomo_archive_numeric_2022_01":["matomo"],"matomo_archive_numeric_2022_02":["matomo"],"matomo_archive_numeric_2022_03":["matomo"],"cftemail_forms":["contact-form-to-email"],"cftemail_messages":["contact-form-to-email"],"wassup":["wassup"],"wassup_meta":["wassup"],"wassup_tmp":["wassup"],"wp125_ads":["wp125"],"searchmeter":["search-meter"],"searchmeter_recent":["search-meter"],"useronline":["wp-useronline","mingle-users-online","usermap"],"subscribe_reloaded_subscribers":["subscribe-to-comments-reloaded"],"huge_it_reslider_sliders":["slider"],"huge_it_reslider_slides":["slider"],"pps_countries":["popup-by-supsystic"],"pps_modules":["popup-by-supsystic"],"pps_modules_type":["popup-by-supsystic"],"pps_popup":["popup-by-supsystic"],"pps_popup_show_categories":["popup-by-supsystic"],"pps_popup_show_pages":["popup-by-supsystic"],"pps_statistics":["popup-by-supsystic"],"pps_subscribers":["popup-by-supsystic"],"pps_usage_stat":["popup-by-supsystic"],"wp_pro_quiz_category":["wp-pro-quiz"],"wp_pro_quiz_form":["wp-pro-quiz"],"wp_pro_quiz_lock":["wp-pro-quiz"],"wp_pro_quiz_master":["wp-pro-quiz"],"wp_pro_quiz_prerequisite":["wp-pro-quiz"],"wp_pro_quiz_question":["wp-pro-quiz"],"wp_pro_quiz_statistic":["wp-pro-quiz"],"wp_pro_quiz_statistic_ref":["wp-pro-quiz"],"wp_pro_quiz_template":["wp-pro-quiz"],"wp_pro_quiz_toplist":["wp-pro-quiz"],"link_juice_keeper":["link-juice-keeper"],"ufbl_entries":["ultimate-form-builder-lite"],"ufbl_forms":["ultimate-form-builder-lite"],"similar_posts":["similar-posts"],"statpress":["newstatpress","statpresscn","statpress-seolution"],"taxonomymeta":["taxonomy-metadata","ultimate-taxonomy-manager","wp-symposium-pro","bulk-photo-to-product-importer-extension-for-woocommerce","ultimate-cms","manage-issue-based-magazine","magic-wp-coupons","seo-plus","multiupload-in-custom-taxonomy","travel-routes"],"leafletmapsmarker_layers":["leaflet-maps-marker"],"leafletmapsmarker_markers":["leaflet-maps-marker"],"wgm_icons":["gmap-embed"],"wgm_markers":["gmap-embed"],"yop2_poll_answermeta":["yop-poll"],"yop2_poll_answers":["yop-poll"],"yop2_poll_bans":["yop-poll"],"yop2_poll_custom_fields":["yop-poll"],"yop2_poll_logs":["yop-poll"],"yop2_poll_questionmeta":["yop-poll"],"yop2_poll_questions":["yop-poll"],"yop2_poll_results":["yop-poll"],"yop2_poll_templates":["yop-poll"],"yop2_poll_votes_custom_fields":["yop-poll"],"yop2_pollmeta":["yop-poll"],"yop2_polls":["yop-poll"],"yoppoll_bans":["yop-poll"],"yoppoll_elements":["yop-poll"],"yoppoll_logs":["yop-poll"],"yoppoll_polls":["yop-poll"],"yoppoll_subelements":["yop-poll"],"yoppoll_templates":["yop-poll"],"yoppoll_votes":["yop-poll"],"yoppoll_skins":["yop-poll"],"yoppoll_other_answers":["yop-poll"],"hsa_plugin":["horizontal-scrolling-announcement"],"eig_sso":["eig-sso"],"metaseo_images":["wp-meta-seo"],"wpms_links":["wp-meta-seo"],"groups_capability":["groups"],"groups_group":["groups"],"groups_group_capability":["groups"],"groups_user_capability":["groups"],"groups_user_group":["groups"],"cwa":["wp-custom-widget-area"],"psp_404_log":["platinum-seo-pack"],"psp_redirections":["platinum-seo-pack"],"psp_redirections_log":["platinum-seo-pack"],"platinumseometa":["platinum-seo-pack"],"tempmeta":["platinum-seo-pack"],"contactformmaker":["contact-form-builder"],"contactformmaker_blocked":["contact-form-builder"],"contactformmaker_submits":["contact-form-builder"],"contactformmaker_themes":["contact-form-builder"],"contactformmaker_views":["contact-form-builder"],"crellyslider_elements":["crelly-slider"],"crellyslider_sliders":["crelly-slider"],"crellyslider_slides":["crelly-slider"],"crellyslider_nonces":["crelly-slider"],"po_plugins":["plugin-organizer"],"usces_access":["usc-e-shop"],"usces_log":["usc-e-shop"],"usces_member":["usc-e-shop"],"usces_member_meta":["usc-e-shop"],"usces_order":["usc-e-shop"],"usces_order_meta":["usc-e-shop"],"usces_ordercart":["usc-e-shop"],"usces_ordercart_meta":["usc-e-shop"],"usces_acting_log":["usc-e-shop"],"ts_redirects":["301-redirects"],"mediafromftp_log":["media-from-ftp"],"yasr_log":["yet-another-stars-rating"],"yasr_multi_set":["yet-another-stars-rating"],"yasr_multi_set_fields":["yet-another-stars-rating"],"yasr_multi_values":["yet-another-stars-rating"],"yasr_log_multi_set":["yet-another-stars-rating"],"lrgawidget_global_settings":["lara-google-analytics"],"econtactform7_lookup":["save-contact-form-7"],"ddp_log":["delete-duplicate-posts"],"pvc_daily":["page-views-count"],"pvc_total":["page-views-count"],"gs_logo_slider":["gs-logo-slider"],"mycred_log":["mycred"],"pantheon_sessions":["wp-native-php-sessions","stripe"],"wptc_activity_log":["wp-time-capsule"],"wptc_auto_backup_record":["wp-time-capsule"],"wptc_backup_names":["wp-time-capsule"],"wptc_backups":["wp-time-capsule"],"wptc_current_process":["wp-time-capsule"],"wptc_debug_log":["wp-time-capsule"],"wptc_excluded_files":["wp-time-capsule"],"wptc_excluded_tables":["wp-time-capsule"],"wptc_included_files":["wp-time-capsule"],"wptc_included_tables":["wp-time-capsule"],"wptc_options":["wp-time-capsule"],"wptc_processed_dbtables":["wp-time-capsule"],"wptc_processed_files":["wp-time-capsule"],"wptc_processed_restored_files":["wp-time-capsule"],"wptc_processed_iterator":["wp-time-capsule"],"wptc_inc_exc_contents":["wp-time-capsule"],"page_visit":["page-visit-counter"],"page_visit_history":["page-visit-counter"],"page_visit_referer":["page-visit-counter"],"page_visit_wizard":["page-visit-counter"],"micro_revisions":["microthemer"],"forum_forums":["asgaros-forum"],"forum_posts":["asgaros-forum"],"forum_topics":["asgaros-forum"],"forum_reactions":["asgaros-forum"],"forum_reports":["asgaros-forum"],"forum_ads":["asgaros-forum"],"forum_polls":["asgaros-forum"],"forum_polls_options":["asgaros-forum"],"forum_polls_votes":["asgaros-forum"],"mo2f_user_details":["miniorange-2-factor-authentication","miniorange-login-security","ecommerce-two-factor-authentication"],"mo2f_user_login_info":["miniorange-2-factor-authentication","miniorange-login-security","ecommerce-two-factor-authentication"],"mo2f_network_blocked_ips":["miniorange-2-factor-authentication","miniorange-login-security","web-application-firewall"],"mo2f_network_email_sent_audit":["miniorange-2-factor-authentication","miniorange-login-security","web-application-firewall"],"mo2f_network_transactions":["miniorange-2-factor-authentication","miniorange-login-security","web-application-firewall"],"mo2f_network_whitelisted_ips":["miniorange-2-factor-authentication","miniorange-login-security","web-application-firewall"],"wpns_malware_scan_report":["miniorange-2-factor-authentication","miniorange-limit-login-attempts","wp-security-pro","miniorange-login-security","miniorange-malware-protection"],"wpns_malware_scan_report_details":["miniorange-2-factor-authentication","miniorange-limit-login-attempts","wp-security-pro","miniorange-login-security","miniorange-malware-protection"],"wpns_malware_skip_files":["miniorange-2-factor-authentication","miniorange-limit-login-attempts","wp-security-pro","miniorange-login-security","miniorange-malware-protection"],"wpns_attack_logs":["miniorange-2-factor-authentication","miniorange-limit-login-attempts","wp-security-pro","miniorange-login-security","miniorange-malware-protection","web-application-firewall"],"wpns_ip_rate_details":["miniorange-2-factor-authentication","miniorange-limit-login-attempts","wp-security-pro","miniorange-login-security","miniorange-malware-protection","web-application-firewall"],"wpns_malware_hash_file":["miniorange-2-factor-authentication","miniorange-limit-login-attempts","wp-security-pro","miniorange-login-security","miniorange-malware-protection"],"wpns_backup_report":["miniorange-2-factor-authentication","miniorange-login-security"],"wpns_files_scan":["miniorange-2-factor-authentication","miniorange-login-security","miniorange-malware-protection"],"lead_form":["lead-form-builder"],"lead_form_data":["lead-form-builder"],"lead_form_extension":["lead-form-builder"],"lead_form_options":["lead-form-builder"],"th_popup":["lead-form-builder"],"captcha_bank":["captcha-bank"],"captcha_bank_meta":["captcha-bank"],"captcha_bank_ip_locations":["captcha-bank"],"logger_ginger":["ginger"],"legal_pages":["wplegalpages"],"lp_popups":["wplegalpages"],"nm_personalized":["woocommerce-product-addon"],"expm_maker":["expand-maker","read-more"],"expm_maker_pages":["expand-maker"],"expm_hiiden_content":["expand-maker"],"find_and_replace":["expand-maker"],"ea_appointments":["easy-appointments"],"ea_connections":["easy-appointments"],"ea_error_logs":["easy-appointments"],"ea_fields":["easy-appointments"],"ea_locations":["easy-appointments"],"ea_meta_fields":["easy-appointments"],"ea_options":["easy-appointments"],"ea_services":["easy-appointments"],"ea_staff":["easy-appointments"],"feedmanager_channel":["wp-product-feed-manager"],"feedmanager_country":["wp-product-feed-manager"],"feedmanager_errors":["wp-product-feed-manager"],"feedmanager_feed_status":["wp-product-feed-manager"],"feedmanager_field_categories":["wp-product-feed-manager"],"feedmanager_product_feed":["wp-product-feed-manager"],"feedmanager_product_feedmeta":["wp-product-feed-manager"],"feedmanager_source":["wp-product-feed-manager"],"woocommerce_ir_sms_archive":["persian-woocommerce-sms"],"woocommerce_ir_sms_contacts":["persian-woocommerce-sms"],"image_hover_ultimate_list":["image-hover-effects-ultimate"],"image_hover_ultimate_style":["image-hover-effects-ultimate"],"oxi_div_import":["image-hover-effects-ultimate","vc-tabs","image-hover-effects-ultimate-visual-composer","shortcode-addons","accordions-or-faqs","team-showcase-ultimate","testimonial-or-reviews"],"adsense_invalid_click_protector":["ad-invalid-click-protector"],"fa_user_logins":["user-login-history"],"mystickyelement_contact_lists":["mystickyelements"],"berocket_termmeta":["advanced-product-labels-for-woocommerce"],"wow_fmp":["float-menu"],"wpfb_post_templates":["wp-google-places-review-slider","wp-facebook-reviews"],"wpfb_reviews":["wp-google-places-review-slider","wp-facebook-reviews"],"wpfb_total_averages":["wp-google-places-review-slider"],"iowd_images":["image-optimizer-wd"],"wsm_bouncevisits":["wp-stats-manager"],"wsm_browsers":["wp-stats-manager"],"wsm_countries":["wp-stats-manager"],"wsm_dailyhourlyreport":["wp-stats-manager"],"wsm_datewise_report":["wp-stats-manager"],"wsm_datewisebounce":["wp-stats-manager"],"wsm_datewisebouncerate":["wp-stats-manager"],"wsm_datewisefirstvisitors":["wp-stats-manager"],"wsm_datewisepageviews":["wp-stats-manager"],"wsm_datewisevisitors":["wp-stats-manager"],"wsm_hourwisebounce":["wp-stats-manager"],"wsm_hourwisebouncerate":["wp-stats-manager"],"wsm_hourwisefirstvisitors":["wp-stats-manager"],"wsm_hourwisepageviews":["wp-stats-manager"],"wsm_hourwisevisitors":["wp-stats-manager"],"wsm_loguniquevisit":["wp-stats-manager"],"wsm_logvisit":["wp-stats-manager"],"wsm_monthlydailyreport":["wp-stats-manager"],"wsm_monthwise_report":["wp-stats-manager"],"wsm_monthwisebounce":["wp-stats-manager"],"wsm_monthwisebouncerate":["wp-stats-manager"],"wsm_monthwisefirstvisitors":["wp-stats-manager"],"wsm_monthwisepageviews":["wp-stats-manager"],"wsm_monthwisevisitors":["wp-stats-manager"],"wsm_osystems":["wp-stats-manager"],"wsm_pageviews":["wp-stats-manager"],"wsm_regions":["wp-stats-manager"],"wsm_resolutions":["wp-stats-manager"],"wsm_searchengines":["wp-stats-manager"],"wsm_toolbars":["wp-stats-manager"],"wsm_uniquevisitors":["wp-stats-manager"],"wsm_url_log":["wp-stats-manager"],"wsm_visitorinfo":["wp-stats-manager"],"wsm_yearlymonthlyreport":["wp-stats-manager"],"wsm_yearwise_report":["wp-stats-manager"],"lightbox_photoswipe_img":["lightbox-photoswipe"],"wdp_order_items":["advanced-dynamic-pricing-for-woocommerce"],"wdp_orders":["advanced-dynamic-pricing-for-woocommerce"],"wdp_rules":["advanced-dynamic-pricing-for-woocommerce"],"wdp_persistent_rules_cache":["advanced-dynamic-pricing-for-woocommerce"],"cpappbk_forms":["appointment-hour-booking"],"cpappbk_messages":["appointment-hour-booking"],"pimwick_gift_card":["pw-woocommerce-gift-cards"],"pimwick_gift_card_activity":["pw-woocommerce-gift-cards"],"swift_performance_warmup":["swift-performance-lite"],"smartcrawl_redirects":["smartcrawl-seo"],"gdpr_consent":["gdpr-framework"],"gdpr_userlogs":["gdpr-framework"],"socialsnap_stats":["socialsnap"],"pda_passwords":["password-protect-page"],"ilj_linkindex":["internal-links"],"hurrytimer_evergreen":["hurrytimer"],"fv_enteries":["form-vibes"],"fv_entry_meta":["form-vibes"],"fv_logs":["form-vibes"],"wpie_template":["wp-import-export-lite"],"cc_orders":["cost-calculator-builder"],"cc_payments":["cost-calculator-builder"],"origincode_videogallery_galleries":["smart-grid-gallery"],"origincode_videoorigincode_gallery_videos":["smart-grid-gallery"],"ahm_events":["aurora-heatmap"],"ahm_pages":["aurora-heatmap"],"koko_analytics_post_stats":["koko-analytics"],"koko_analytics_referrer_stats":["koko-analytics"],"koko_analytics_referrer_urls":["koko-analytics"],"koko_analytics_site_stats":["koko-analytics"],"nextcodegallerygalleries":["cubeportfolio"],"nextcodegalleryimages":["cubeportfolio"],"nextcodegallerysettings":["cubeportfolio"],"io_stats_daily":["io-engagement-analytics"],"io_stats_rt":["io-engagement-analytics"],"yuzoviews":["yuzo-related-post"],"yuzoclicks":["yuzo-related-post"],"irecommendthis_votes":["i-recommend-this"],"wpsc_also_bought":["wp-e-commerce","wp-e-commerce-cross-sales"],"wpsc_cart_contents":["wp-e-commerce"],"wpsc_cart_item_meta":["wp-e-commerce"],"wpsc_checkout_forms":["wp-e-commerce"],"wpsc_claimed_stock":["wp-e-commerce"],"wpsc_coupon_codes":["wp-e-commerce"],"wpsc_currency_list":["wp-e-commerce"],"wpsc_download_status":["wp-e-commerce"],"wpsc_meta":["wp-e-commerce"],"wpsc_product_rating":["wp-e-commerce"],"wpsc_purchase_logs":["wp-e-commerce"],"wpsc_purchase_meta":["wp-e-commerce"],"wpsc_region_tax":["wp-e-commerce"],"wpsc_submited_form_data":["wp-e-commerce"],"wpsc_visitor_meta":["wp-e-commerce"],"wpsc_visitors":["wp-e-commerce"],"wppa_albums":["wp-photo-album-plus"],"wppa_comments":["wp-photo-album-plus"],"wppa_exif":["wp-photo-album-plus"],"wppa_index":["wp-photo-album-plus"],"wppa_iptc":["wp-photo-album-plus"],"wppa_photos":["wp-photo-album-plus"],"wppa_rating":["wp-photo-album-plus"],"wppa_session":["wp-photo-album-plus"],"wppa_caches":["wp-photo-album-plus"],"gallery_galleries":["slideshow-gallery"],"gallery_galleriesslides":["slideshow-gallery"],"gallery_slides":["slideshow-gallery"],"spidercalendar_calendar":["spider-event-calendar"],"spidercalendar_event":["spider-event-calendar"],"spidercalendar_event_category":["spider-event-calendar"],"spidercalendar_theme":["spider-event-calendar"],"spidercalendar_widget_theme":["spider-event-calendar"],"cb_contact_form":["contact-bank"],"cb_create_control_form":["contact-bank"],"cb_dynamic_settings":["contact-bank"],"cb_email_template_admin":["contact-bank"],"cb_form_settings_table":["contact-bank"],"cb_frontend_data_table":["contact-bank"],"cb_frontend_forms_table":["contact-bank"],"cb_layout_settings_table":["contact-bank"],"cb_licensing":["contact-bank"],"cb_roles_capability":["contact-bank"],"contact_bank":["contact-bank"],"contact_bank_meta":["contact-bank"],"flag_album":["flash-album-gallery"],"flag_comments":["flash-album-gallery"],"flag_gallery":["flash-album-gallery"],"flag_pictures":["flash-album-gallery"],"gallery_albums":["gallery-bank"],"gallery_pics":["gallery-bank"],"gallery_settings":["gallery-bank"],"gallery_bank":["gallery-bank"],"gallery_bank_meta":["gallery-bank"],"calendar":["calendar","calendar-plus"],"calendar_categories":["calendar","calendar-plus"],"calendar_config":["calendar","calendar-plus"],"wpbackitup_job_control":["wp-backitup"],"wpbackitup_job_items":["wp-backitup"],"wpbackitup_job_tasks":["wp-backitup"],"allowphp_functions":["allow-php-in-posts-and-pages"],"cfs_contacts":["contact-form-by-supsystic"],"cfs_countries":["contact-form-by-supsystic"],"cfs_forms":["contact-form-by-supsystic"],"cfs_membership_presets":["contact-form-by-supsystic"],"cfs_modules":["contact-form-by-supsystic"],"cfs_modules_type":["contact-form-by-supsystic"],"cfs_statistics":["contact-form-by-supsystic"],"cfs_usage_stat":["contact-form-by-supsystic"],"ms_my_custom_php":["my-custom-css"],"my_custom_php":["my-custom-css"],"wowslider":["wowslider"],"itro_plugin_field":["itro-popup"],"itro_plugin_option":["itro-popup"],"easy_pie_contacts":["easy-pie-coming-soon"],"easy_pie_cs_entities":["easy-pie-coming-soon"],"easy_pie_cs_subscribers":["easy-pie-coming-soon"],"easy_pie_emails":["easy-pie-coming-soon"],"login_security_solution_fail":["login-security-solution"],"supsystic_ss_networks":["social-share-buttons-by-supsystic"],"supsystic_ss_project_networks":["social-share-buttons-by-supsystic"],"supsystic_ss_projects":["social-share-buttons-by-supsystic"],"supsystic_ss_shares":["social-share-buttons-by-supsystic"],"supsystic_ss_views":["social-share-buttons-by-supsystic"],"supsystic_ss_shares_object":["social-share-buttons-by-supsystic"],"smooth_slider":["smooth-slider"],"smooth_slider_meta":["smooth-slider"],"smooth_slider_postmeta":["smooth-slider"],"rt_rtm_activity":["buddypress-media"],"rt_rtm_api":["buddypress-media"],"rt_rtm_media":["buddypress-media"],"rt_rtm_media_interaction":["buddypress-media"],"rt_rtm_media_meta":["buddypress-media"],"m_tables":["table-maker"],"wpsm_tables":["table-maker"],"avhec_category_groups":["extended-categories-widget"],"inbound_events":["landing-pages","cta","leads"],"inbound_page_views":["landing-pages","cta","leads"],"inbound_tracked_links":["landing-pages","cta","leads"],"gmedia":["grand-media"],"gmedia_log":["grand-media"],"gmedia_meta":["grand-media"],"gmedia_term":["grand-media"],"gmedia_term_meta":["grand-media"],"gmedia_term_relationships":["grand-media"],"translations":["transposh-translation-filter-for-wordpress"],"translations_log":["transposh-translation-filter-for-wordpress"],"p2p":["posts-to-posts","gamipress","badgeos","wp-ticket","employee-scheduler","campus-directory","software-issue-manager","wp-easy-events","rtbiz","open-badge-factory"],"p2pmeta":["posts-to-posts","gamipress","badgeos","wp-ticket","employee-scheduler","campus-directory","software-issue-manager","wp-easy-events","rtbiz","open-badge-factory"],"wpbdp_fees":["business-directory-plugin"],"wpbdp_form_fields":["business-directory-plugin"],"wpbdp_listing_fees":["business-directory-plugin"],"wpbdp_payments":["business-directory-plugin"],"wpbdp_payments_items":["business-directory-plugin"],"wpbdp_submit_state":["business-directory-plugin"],"wpbdp_listings":["business-directory-plugin"],"wpbdp_logs":["business-directory-plugin"],"wpbdp_plans":["business-directory-plugin"],"linkcategorymeta":["link-library"],"links_extrainfo":["link-library"],"instapage_debug":["instapage"],"instapage_options":["instapage"],"instapage_pages":["instapage"],"unitegallery_categories":["unite-gallery-lite"],"unitegallery_galleries":["unite-gallery-lite"],"unitegallery_items":["unite-gallery-lite"],"gmwd_circles":["wd-google-maps"],"gmwd_maps":["wd-google-maps"],"gmwd_mapstyles":["wd-google-maps"],"gmwd_markercategories":["wd-google-maps"],"gmwd_markers":["wd-google-maps"],"gmwd_options":["wd-google-maps"],"gmwd_polygons":["wd-google-maps"],"gmwd_polylines":["wd-google-maps"],"gmwd_rectangles":["wd-google-maps"],"gmwd_shortcodes":["wd-google-maps"],"gmwd_themes":["wd-google-maps"],"audit_trail":["audit-trail"],"lsp_images":["logo-slider","best-local-seo-tools"],"lsp_sliders":["logo-slider"],"advps_optionset":["advanced-post-slider"],"advps_thumbnail":["advanced-post-slider"],"simple_login_log":["simple-login-log"],"quotescollection":["quotes-collection"],"sml":["mail-subscribe-list"],"cimy_uef_data":["cimy-user-extra-fields"],"cimy_uef_fields":["cimy-user-extra-fields"],"cimy_uef_wp_fields":["cimy-user-extra-fields"],"apsl_users_social_profile_details":["accesspress-social-login-lite"],"sticky":["wp-sticky"],"sgmb_widget":["social-media-builder"],"uji_counter":["uji-countdown"],"uji_subscriptions":["uji-countdown"],"wplnst_scans":["wp-link-status"],"wplnst_scans_objects":["wp-link-status"],"wplnst_urls":["wp-link-status"],"wplnst_urls_locations":["wp-link-status"],"wplnst_urls_locations_att":["wp-link-status"],"wplnst_urls_status":["wp-link-status"],"vslider":["vslider"],"wbz404_logs":["404-redirected"],"wbz404_redirects":["404-redirected"],"nextend_smartslider_layouts":["smart-slider-2"],"nextend_smartslider_sliders":["smart-slider-2"],"nextend_smartslider_slides":["smart-slider-2"],"nextend_smartslider_storage":["smart-slider-2"],"enjoy_instagram_hashtags":["enjoy-instagram-instagram-responsive-images-gallery-and-carousel"],"enjoy_instagram_media":["enjoy-instagram-instagram-responsive-images-gallery-and-carousel"],"maintenance_page":["maintenance-page"],"login_log":["login-sidebar-widget","login-log"],"gigpress_artists":["gigpress"],"gigpress_shows":["gigpress"],"gigpress_tours":["gigpress"],"gigpress_venues":["gigpress"],"ckuci_events":["wp-ultimate-csv-importer"],"ckuci_history":["wp-ultimate-csv-importer"],"ultimate_csv_importer_log_values":["wp-ultimate-csv-importer"],"ultimate_csv_importer_manageshortcodes":["wp-ultimate-csv-importer"],"ultimate_csv_importer_shortcodes_statusrel":["wp-ultimate-csv-importer"],"import_detail_log":["wp-ultimate-csv-importer"],"import_log_detail":["wp-ultimate-csv-importer"],"import_postid":["wp-ultimate-csv-importer"],"smackcsv_file_events":["wp-ultimate-csv-importer"],"ultimate_csv_importer_acf_fields":["wp-ultimate-csv-importer"],"ultimate_csv_importer_mappingtemplate":["wp-ultimate-csv-importer"],"ultimate_csv_importer_media":["wp-ultimate-csv-importer"],"ultimate_csv_importer_shortcode_manager":["wp-ultimate-csv-importer"],"smackuci_events":["wp-ultimate-csv-importer"],"ultimate_post_entries":["wp-ultimate-csv-importer"],"huge_it_video_params":["video-player"],"huge_it_video_players":["video-player"],"huge_it_videos":["video-player"],"power_stats_browsers":["wp-power-stats"],"power_stats_os":["wp-power-stats"],"power_stats_pageviews":["wp-power-stats"],"power_stats_posts":["wp-power-stats"],"power_stats_referers":["wp-power-stats"],"power_stats_searches":["wp-power-stats"],"power_stats_visits":["wp-power-stats"],"bannerize":["wp-bannerize"],"mech_statistik":["mechanic-visitor-counter"],"wti_like_post":["wti-like-post"],"wpsbc_calendar_meta":["wp-simple-booking-calendar"],"wpsbc_calendars":["wp-simple-booking-calendar"],"wpsbc_event_meta":["wp-simple-booking-calendar"],"wpsbc_events":["wp-simple-booking-calendar"],"wpsbc_legend_item_meta":["wp-simple-booking-calendar"],"wpsbc_legend_items":["wp-simple-booking-calendar"],"easymail_recipients":["alo-easymail"],"easymail_stats":["alo-easymail"],"easymail_subscribers":["alo-easymail"],"easymail_unsubscribed":["alo-easymail"],"vimeography_gallery":["vimeography"],"vimeography_gallery_meta":["vimeography"],"wpusb_report":["wpupper-share-buttons","jogar-mais-social-share-buttons"],"wpusb_url_shortener":["wpupper-share-buttons"],"srzfb_albums":["srizon-facebook-album"],"srzfb_galleries":["srizon-facebook-album"],"huge_it_catalog_album_catalog_contact":["product-catalog"],"huge_it_catalog_albums":["product-catalog"],"huge_it_catalog_asc_seller":["product-catalog"],"huge_it_catalog_general_params":["product-catalog"],"huge_it_catalog_products":["product-catalog"],"huge_it_catalog_rating":["product-catalog"],"huge_it_catalog_reviews":["product-catalog"],"huge_it_catalogs":["product-catalog"],"sm_advanced_search_temp":["smart-manager-for-wp-e-commerce"],"connections":["connections"],"connections_address":["connections"],"connections_date":["connections"],"connections_email":["connections"],"connections_link":["connections"],"connections_messenger":["connections"],"connections_meta":["connections"],"connections_phone":["connections"],"connections_social":["connections"],"connections_term_meta":["connections"],"connections_term_relationships":["connections"],"connections_term_taxonomy":["connections"],"connections_terms":["connections"],"private_blog_access_logs":["password-protect-wordpress"],"rednao_smart_forms_entry":["smart-forms"],"rednao_smart_forms_entry_detail":["smart-forms"],"rednao_smart_forms_table_name":["smart-forms"],"rt_forms_uploaded_files":["smart-forms"],"rednao_smart_forms_uploaded_files":["smart-forms"],"participants_database":["participants-database"],"participants_database_fields":["participants-database"],"participants_database_groups":["participants-database"],"sm_sessions":["participants-database","stripe","awesome-support","content-protector","wp-session-manager","mz-mindbody-api"],"rcp_customers":["restrict-content"],"rcp_discounts":["restrict-content"],"rcp_logs":["restrict-content"],"rcp_membership_counts":["restrict-content"],"rcp_membershipmeta":["restrict-content"],"rcp_memberships":["restrict-content"],"rcp_payment_meta":["restrict-content"],"rcp_payments":["restrict-content"],"rcp_queue":["restrict-content"],"rcp_subscription_level_meta":["restrict-content"],"restrict_content_pro":["restrict-content"],"gr_configuration":["getresponse-integration"],"gr_orders_map":["getresponse-integration"],"gr_products_map":["getresponse-integration"],"gr_schedule_jobs_queue":["getresponse-integration"],"gr_variants_map":["getresponse-integration"],"ddownload_statistics":["delightful-downloads"],"eemail_newsletter":["email-newsletter"],"eemail_newsletter_sub":["email-newsletter"],"geodir_attachments":["geodirectory"],"geodir_countries":["geodirectory"],"geodir_custom_fields":["geodirectory"],"geodir_custom_sort_fields":["geodirectory"],"geodir_gd_place_detail":["geodirectory"],"geodir_post_icon":["geodirectory"],"geodir_post_review":["geodirectory"],"countries":["geodirectory","country-state-city-auto-dropdown","wp-bannerize-pro"],"geodir_api_keys":["geodirectory"],"geodir_tabs_layout":["geodirectory"],"geodir_business_hours":["geodirectory"],"geodir_post_reports":["geodirectory"],"richreviews":["rich-reviews"],"media_file_manager_log":["media-file-manager"],"aps_log":["auto-post-scheduler"],"fileaway_downloads":["file-away"],"fileaway_metadata":["file-away"],"upcp_catalogue_items":["ultimate-product-catalogue"],"upcp_catalogues":["ultimate-product-catalogue"],"upcp_categories":["ultimate-product-catalogue"],"upcp_custom_fields":["ultimate-product-catalogue"],"upcp_fields_meta":["ultimate-product-catalogue"],"upcp_item_images":["ultimate-product-catalogue"],"upcp_items":["ultimate-product-catalogue"],"upcp_subcategories":["ultimate-product-catalogue"],"upcp_tag_groups":["ultimate-product-catalogue"],"upcp_tagged_items":["ultimate-product-catalogue"],"upcp_tags":["ultimate-product-catalogue"],"upcp_videos":["ultimate-product-catalogue"],"wise_chat_actions":["wise-chat"],"wise_chat_bans":["wise-chat"],"wise_chat_channel_users":["wise-chat"],"wise_chat_channels":["wise-chat"],"wise_chat_messages":["wise-chat"],"wise_chat_users":["wise-chat"],"wise_chat_kicks":["wise-chat"],"custom_404_pro_logs":["custom-404-pro"],"custom_404_pro_options":["custom-404-pro"],"wonderplugin_slider":["wonderplugin-slider-lite"],"mainwp_client_report":["mainwp"],"mainwp_client_report_client":["mainwp"],"mainwp_client_report_format":["mainwp"],"mainwp_client_report_site_token":["mainwp"],"mainwp_client_report_token":["mainwp"],"mainwp_group":["mainwp"],"mainwp_request_log":["mainwp"],"mainwp_tips":["mainwp"],"mainwp_users":["mainwp"],"mainwp_wp":["mainwp"],"mainwp_wp_backup":["mainwp"],"mainwp_wp_backup_progress":["mainwp"],"mainwp_wp_group":["mainwp"],"mainwp_wp_options":["mainwp"],"mainwp_wp_settings_backup":["mainwp"],"mainwp_wp_sync":["mainwp"],"mainwp_wp_status":["mainwp"],"mainwp_action_log":["mainwp"],"wap_nex_forms":["nex-forms-express-wp-form-builder"],"wap_nex_forms_email_templates":["nex-forms-express-wp-form-builder"],"wap_nex_forms_entries":["nex-forms-express-wp-form-builder"],"wap_nex_forms_files":["nex-forms-express-wp-form-builder"],"wap_nex_forms_stats_interactions":["nex-forms-express-wp-form-builder"],"wap_nex_forms_views":["nex-forms-express-wp-form-builder"],"wpam_actions":["affiliates-manager"],"wpam_affiliates":["affiliates-manager"],"wpam_affiliates_fields":["affiliates-manager"],"wpam_creatives":["affiliates-manager"],"wpam_events":["affiliates-manager"],"wpam_impressions":["affiliates-manager"],"wpam_messages":["affiliates-manager"],"wpam_paypal_logs":["affiliates-manager"],"wpam_tracking_tokens":["affiliates-manager"],"wpam_tracking_tokens_purchase_logs":["affiliates-manager"],"wpam_transactions":["affiliates-manager"],"wpum_fields":["wp-user-manager","miniorange-user-manager"],"wpum_field_groups":["wp-user-manager"],"wpum_fieldmeta":["wp-user-manager"],"wpum_fieldsgroups":["wp-user-manager"],"wpum_registration_formmeta":["wp-user-manager"],"wpum_registration_forms":["wp-user-manager"],"wpum_search_fields":["wp-user-manager"],"cm_popfly_history":["cm-pop-up-banners"],"rm_fields":["custom-registration-form-builder-with-submission-manager"],"rm_forms":["custom-registration-form-builder-with-submission-manager"],"rm_front_users":["custom-registration-form-builder-with-submission-manager"],"rm_notes":["custom-registration-form-builder-with-submission-manager"],"rm_paypal_fields":["custom-registration-form-builder-with-submission-manager"],"rm_paypal_logs":["custom-registration-form-builder-with-submission-manager"],"rm_rules":["custom-registration-form-builder-with-submission-manager"],"rm_sent_mails":["custom-registration-form-builder-with-submission-manager"],"rm_sessions":["custom-registration-form-builder-with-submission-manager"],"rm_stats":["custom-registration-form-builder-with-submission-manager"],"rm_submission_fields":["custom-registration-form-builder-with-submission-manager"],"rm_submissions":["custom-registration-form-builder-with-submission-manager"],"rm_task_exe_log":["custom-registration-form-builder-with-submission-manager"],"rm_tasks":["custom-registration-form-builder-with-submission-manager"],"rm_login":["custom-registration-form-builder-with-submission-manager"],"rm_login_log":["custom-registration-form-builder-with-submission-manager"],"rm_custom_status":["custom-registration-form-builder-with-submission-manager"],"rm_resources":["custom-registration-form-builder-with-submission-manager"],"rm_rows":["custom-registration-form-builder-with-submission-manager"],"bs_forms":["wp-booking-system","form-creation-for-bootstrap"],"bs_bookings":["wp-booking-system"],"bs_calendars":["wp-booking-system"],"wpbs_booking_meta":["wp-booking-system"],"wpbs_bookings":["wp-booking-system"],"wpbs_calendar_meta":["wp-booking-system"],"wpbs_calendars":["wp-booking-system"],"wpbs_event_meta":["wp-booking-system"],"wpbs_events":["wp-booking-system"],"wpbs_form_meta":["wp-booking-system"],"wpbs_forms":["wp-booking-system"],"wpbs_legend_item_meta":["wp-booking-system"],"wpbs_legend_items":["wp-booking-system"],"ualp_user_activity":["user-activity-log"],"redirect_404_hp_cp_log":["redirect-404-error-page-to-homepage-or-custom-page"],"wpjf3_mr_access_keys":["jf3-maintenance-mode"],"wpjf3_mr_unrestricted_ips":["jf3-maintenance-mode"],"fep_messages":["front-end-pm","fep-contact-form"],"fep_attachments":["front-end-pm"],"fep_messagemeta":["front-end-pm"],"fep_participants":["front-end-pm"],"sp_email_logs":["sparkpost"],"eafl_clicks":["easy-affiliate-links"],"eafl_relations":["easy-affiliate-links"],"psp":["premium-seo-pack"],"charitable_campaign_donations":["charitable"],"charitable_donors":["charitable"],"charitable_donormeta":["charitable"],"pp_group_members":["press-permit-core"],"pp_groups":["press-permit-core"],"ppc_exception_items":["press-permit-core"],"ppc_exceptions":["press-permit-core"],"ppc_roles":["press-permit-core"],"ppi_errors":["press-permit-core"],"ppi_imported":["press-permit-core"],"ppi_runs":["press-permit-core"],"pms_member_subscriptions":["paid-member-subscriptions"],"pms_payments":["paid-member-subscriptions"],"pms_member_subscriptionmeta":["paid-member-subscriptions"],"pms_paymentmeta":["paid-member-subscriptions"],"aal_products":["amazon-auto-links"],"aal_request_cache":["amazon-auto-links"],"aal_tasks":["amazon-auto-links"],"messages":["wpjam-basic","wp-live-group-chat","personal-chat-room","modalcontact"],"modalsimple":["modal-window"],"wow_mwp":["modal-window"],"access_ip":["mangboard"],"analytics":["mangboard"],"boards":["mangboard"],"cookies":["mangboard"],"files":["mangboard"],"h_editors":["mangboard"],"logs":["mangboard"],"meta":["mangboard"],"options":["mangboard"],"referers":["mangboard"],"users":["mangboard","wp-championship"],"crp_portfolios":["portfolio-wp"],"crp_projects":["portfolio-wp"],"democracy_a":["democracy-poll"],"democracy_log":["democracy-poll"],"democracy_q":["democracy-poll"],"lifterlms_notifications":["lifterlms"],"lifterlms_product_to_voucher":["lifterlms"],"lifterlms_user_postmeta":["lifterlms"],"lifterlms_voucher_code_redemptions":["lifterlms"],"lifterlms_vouchers_codes":["lifterlms"],"lifterlms_quiz_attempts":["lifterlms"],"lifterlms_api_keys":["lifterlms"],"lifterlms_webhooks":["lifterlms"],"lifterlms_events":["lifterlms"],"lifterlms_events_open_sessions":["lifterlms"],"lifterlms_sessions":["lifterlms"],"wcmp_products_map":["dc-woocommerce-multi-vendor"],"wcmp_vendor_orders":["dc-woocommerce-multi-vendor"],"wcmp_cust_questions":["dc-woocommerce-multi-vendor"],"wcmp_visitors_stats":["dc-woocommerce-multi-vendor"],"wcmp_cust_answers":["dc-woocommerce-multi-vendor"],"wcmp_shipping_zone_locations":["dc-woocommerce-multi-vendor"],"wcmp_shipping_zone_methods":["dc-woocommerce-multi-vendor"],"wcmp_vendor_ledger":["dc-woocommerce-multi-vendor"],"ps_sessions":["content-protector"],"srs_simple_hits_counter":["srs-simple-hits-counter"],"wpwc_posts":["wp-word-count"],"wp_quiz_play_data":["wp-quiz"],"ff_cache":["flow-flow-social-streams"],"ff_image_cache":["flow-flow-social-streams"],"ff_options":["flow-flow-social-streams"],"ff_posts":["flow-flow-social-streams"],"ff_snapshots":["flow-flow-social-streams"],"ff_streams":["flow-flow-social-streams"],"ff_streams_sources":["flow-flow-social-streams"],"ff_comments":["flow-flow-social-streams"],"ff_post_media":["flow-flow-social-streams"],"_manage_schedule":["wp-scheduled-posts"],"manage_schedule":["wp-scheduled-posts"],"bsk_pdf_manager_cats":["bsk-pdf-manager"],"bsk_pdf_manager_pdfs":["bsk-pdf-manager"],"bsk_pdf_manager_relationships":["bsk-pdf-manager"],"bsk_pdf_manager_user_available":["bsk-pdf-manager"],"rich_web_photo_slider_instal":["slider-images"],"rich_web_photo_slider_manager":["slider-images"],"rich_web_slider_effect1":["slider-images"],"rich_web_slider_effect10":["slider-images"],"rich_web_slider_effect2":["slider-images"],"rich_web_slider_effect3":["slider-images"],"rich_web_slider_effect4":["slider-images"],"rich_web_slider_effect5":["slider-images"],"rich_web_slider_effect6":["slider-images"],"rich_web_slider_effect7":["slider-images"],"rich_web_slider_effect8":["slider-images"],"rich_web_slider_effect9":["slider-images"],"rich_web_slider_effects_data":["slider-images"],"rich_web_slider_font_family":["slider-images"],"rich_web_slider_id":["slider-images"],"rich_web_slider_effect10_loader":["slider-images"],"rich_web_slider_effect1_loader":["slider-images"],"rich_web_slider_effect2_loader":["slider-images"],"rich_web_slider_effect3_loader":["slider-images"],"rich_web_slider_effect4_loader":["slider-images"],"rich_web_slider_effect5_loader":["slider-images"],"rich_web_slider_effect6_loader":["slider-images"],"rich_web_slider_effect7_loader":["slider-images"],"rich_web_slider_effect8_loader":["slider-images"],"rich_web_slider_effect9_loader":["slider-images"],"rich_web_photo_slider_instal_video":["slider-images"],"cpm_file_relationship":["wedevs-project-manager"],"cpm_project_items":["wedevs-project-manager"],"cpm_tasks":["wedevs-project-manager"],"cpm_user_role":["wedevs-project-manager"],"pm_activities":["wedevs-project-manager"],"pm_assignees":["wedevs-project-manager"],"pm_boardables":["wedevs-project-manager"],"pm_boards":["wedevs-project-manager"],"pm_categories":["wedevs-project-manager"],"pm_category_project":["wedevs-project-manager"],"pm_comments":["wedevs-project-manager"],"pm_files":["wedevs-project-manager"],"pm_meta":["wedevs-project-manager"],"pm_projects":["wedevs-project-manager"],"pm_role_user":["wedevs-project-manager"],"pm_roles":["wedevs-project-manager"],"pm_settings":["wedevs-project-manager"],"pm_tasks":["wedevs-project-manager"],"pm_imports":["wedevs-project-manager"],"pm_capabilities":["wedevs-project-manager"],"pm_role_project":["wedevs-project-manager"],"pm_role_project_capabilities":["wedevs-project-manager"],"pm_role_project_users":["wedevs-project-manager"],"pm_task_type_task":["wedevs-project-manager"],"pm_task_types":["wedevs-project-manager"],"wp_floating_menu_custom_templates":["wp-floating-menu","splashmaker"],"wp_floating_menu_details":["wp-floating-menu","splashmaker"],"ip2location_country_blocker_log":["ip2location-country-blocker"],"sbb_blacklist":["stopbadbots"],"sbb_badips":["stopbadbots"],"sbb_stats":["stopbadbots"],"sbb_badref":["stopbadbots"],"erp_audit_log":["erp"],"erp_company_locations":["erp"],"erp_crm_activities_task":["erp"],"erp_crm_contact_group":["erp"],"erp_crm_contact_subscriber":["erp"],"erp_crm_customer_activities":["erp"],"erp_crm_customer_companies":["erp"],"erp_crm_save_email_replies":["erp"],"erp_crm_save_search":["erp"],"erp_hr_announcement":["erp"],"erp_hr_dependents":["erp"],"erp_hr_depts":["erp"],"erp_hr_designations":["erp"],"erp_hr_education":["erp"],"erp_hr_employee_history":["erp"],"erp_hr_employee_notes":["erp"],"erp_hr_employee_performance":["erp"],"erp_hr_employees":["erp"],"erp_hr_holiday":["erp"],"erp_hr_leave_entitlements":["erp"],"erp_hr_leave_policies":["erp"],"erp_hr_leave_requests":["erp"],"erp_hr_leaves":["erp"],"erp_hr_work_exp":["erp"],"erp_people_type_relations":["erp"],"erp_people_types":["erp"],"erp_peoplemeta":["erp"],"erp_peoples":["erp"],"erp_acct_bill_account_details":["erp"],"erp_acct_bill_details":["erp"],"erp_acct_bills":["erp"],"erp_acct_cash_at_banks":["erp"],"erp_acct_chart_of_accounts":["erp"],"erp_acct_currency_info":["erp"],"erp_acct_expense_checks":["erp"],"erp_acct_expense_details":["erp"],"erp_acct_expenses":["erp"],"erp_acct_financial_years":["erp"],"erp_acct_invoice_account_details":["erp"],"erp_acct_invoice_details":["erp"],"erp_acct_invoice_details_tax":["erp"],"erp_acct_invoice_receipts":["erp"],"erp_acct_invoice_receipts_details":["erp"],"erp_acct_invoices":["erp"],"erp_acct_journal_details":["erp"],"erp_acct_journals":["erp"],"erp_acct_ledger_categories":["erp"],"erp_acct_ledger_details":["erp"],"erp_acct_ledger_settings":["erp"],"erp_acct_ledgers":["erp"],"erp_acct_opening_balances":["erp"],"erp_acct_pay_bill":["erp"],"erp_acct_pay_bill_details":["erp"],"erp_acct_pay_purchase":["erp"],"erp_acct_pay_purchase_details":["erp"],"erp_acct_payment_methods":["erp"],"erp_acct_people_account_details":["erp"],"erp_acct_people_trn":["erp"],"erp_acct_product_categories":["erp"],"erp_acct_product_details":["erp"],"erp_acct_product_types":["erp"],"erp_acct_products":["erp"],"erp_acct_purchase":["erp"],"erp_acct_purchase_account_details":["erp"],"erp_acct_purchase_details":["erp"],"erp_acct_tax_agencies":["erp"],"erp_acct_tax_agency_details":["erp"],"erp_acct_tax_cat_agency":["erp"],"erp_acct_tax_categories":["erp"],"erp_acct_tax_pay":["erp"],"erp_acct_taxes":["erp"],"erp_acct_transfer_voucher":["erp"],"erp_acct_trn_status_types":["erp"],"erp_acct_voucher_no":["erp"],"erp_acct_people_trn_details":["erp"],"erp_holidays_indv":["erp"],"erp_user_leaves":["erp"],"erp_hr_financial_years":["erp"],"erp_hr_leave_approval_status":["erp"],"erp_hr_leave_encashment_requests":["erp"],"erp_hr_leave_policies_segregation":["erp"],"erp_hr_leave_request_details":["erp"],"erp_hr_leaves_unpaid":["erp"],"erp_acct_purchase_details_tax":["erp"],"erp_acct_synced_taxes":["erp"],"erp_ac_banks":["erp"],"erp_ac_chart_classes":["erp"],"erp_ac_chart_types":["erp"],"erp_ac_journals":["erp"],"erp_ac_ledger":["erp"],"erp_ac_payments":["erp"],"erp_ac_tax":["erp"],"erp_ac_tax_items":["erp"],"erp_ac_transaction_items":["erp"],"erp_ac_transactions":["erp"],"erp_crm_campaign_group":["erp"],"erp_crm_campaigns":["erp"],"nep_native_emoji":["native-emoji"],"mgmlp_folders":["media-library-plus"],"spbc_auth_logs":["security-malware-firewall"],"spbc_firewall_data":["security-malware-firewall"],"spbc_firewall_logs":["security-malware-firewall"],"spbc_scan_results":["security-malware-firewall"],"spbc_scan_links_logs":["security-malware-firewall"],"spbc_scan_signatures":["security-malware-firewall"],"spbc_backuped_files":["security-malware-firewall"],"spbc_backups":["security-malware-firewall"],"spbc_scan_frontend":["security-malware-firewall"],"spbc_traffic_control_logs":["security-malware-firewall"],"spbc_firewall__personal_countries":["security-malware-firewall"],"spbc_firewall__personal_ips":["security-malware-firewall"],"spbc_bfp_blocked":["security-malware-firewall"],"spbc_monitoring_users":["security-malware-firewall"],"spbc_sessions":["security-malware-firewall"],"xt_statistic":["xt-visitor-counter"],"wpcf7pdf_files":["send-pdf-for-contact-form-7"],"hotel_booking_order_itemmeta":["wp-hotel-booking"],"hotel_booking_order_items":["wp-hotel-booking"],"hotel_booking_plans":["wp-hotel-booking"],"wll_login_attempts":["when-last-login"],"mondula_form_wizards":["multi-step-form"],"bsl_push":["baidu-submit-link"],"wb_bsl_day":["baidu-submit-link"],"wb_bsl_log":["baidu-submit-link"],"wb_bsl_stats":["baidu-submit-link"],"short_link_clicks":["mts-url-shortener"],"short_link_replacements":["mts-url-shortener"],"short_links":["mts-url-shortener"],"aft_cc":["code-snippets-extended"],"totalsoft_fonts":["gallery-videos","poll-wp","gallery-portfolio","calendar-event","woo-pricing-table","event-calendars"],"totalsoft_galleryv_ctpg":["gallery-videos"],"totalsoft_galleryv_dbt":["gallery-videos"],"totalsoft_galleryv_fg":["gallery-videos"],"totalsoft_galleryv_gvg":["gallery-videos"],"totalsoft_galleryv_hlg":["gallery-videos"],"totalsoft_galleryv_id":["gallery-videos"],"totalsoft_galleryv_lvg":["gallery-videos"],"totalsoft_galleryv_manager":["gallery-videos"],"totalsoft_galleryv_sg":["gallery-videos"],"totalsoft_galleryv_ttvg":["gallery-videos"],"totalsoft_galleryv_videos":["gallery-videos"],"totalsoft_galleryv_check":["gallery-videos"],"totalsoft_galleryv_dbt_1":["gallery-videos"],"totalsoft_galleryv_dbt_2":["gallery-videos"],"totalsoft_new_plugin":["gallery-videos","poll-wp","gallery-portfolio","calendar-event"],"totalsoft_galleryv_dbt_3":["gallery-videos"],"totalsoft_galleryv_dbt_4":["gallery-videos"],"rtec_registrations":["registrations-for-the-events-calendar"],"wpfb_gettwitter_forms":["wp-facebook-reviews"],"asl_categories":["agile-store-locator"],"asl_configs":["agile-store-locator"],"asl_countries":["agile-store-locator"],"asl_markers":["agile-store-locator"],"asl_storelogos":["agile-store-locator"],"asl_stores":["agile-store-locator"],"asl_stores_categories":["agile-store-locator"],"asl_brands":["agile-store-locator"],"asl_settings":["agile-store-locator"],"asl_stores_view":["agile-store-locator"],"notification_logs":["notification"],"ere_save_search":["essential-real-estate"],"zbscrm_api_keys":["zero-bs-crm"],"zbs_aka":["zero-bs-crm"],"zbs_segments":["zero-bs-crm"],"zbs_segments_rules":["zero-bs-crm"],"zbs_notifications":["zero-bs-crm"],"zbs_admlog":["zero-bs-crm"],"zbs_contacts":["zero-bs-crm"],"zbs_customfields":["zero-bs-crm"],"zbs_dbmigration_meta":["zero-bs-crm"],"zbs_dbmigration_posts":["zero-bs-crm"],"zbs_externalsources":["zero-bs-crm"],"zbs_logs":["zero-bs-crm"],"zbs_meta":["zero-bs-crm"],"zbs_object_links":["zero-bs-crm"],"zbs_segments_conditions":["zero-bs-crm"],"zbs_settings":["zero-bs-crm"],"zbs_tags":["zero-bs-crm"],"zbs_tags_links":["zero-bs-crm"],"zbs_temphash":["zero-bs-crm"],"zbs_tracking":["zero-bs-crm"],"zbs_sys_email":["zero-bs-crm"],"zbs_sys_email_hist":["zero-bs-crm"],"zbs_sys_cronmanagerlogs":["zero-bs-crm"],"zbs_companies":["zero-bs-crm"],"zbs_event_reminders":["zero-bs-crm"],"zbs_events":["zero-bs-crm"],"zbs_forms":["zero-bs-crm"],"zbs_invoices":["zero-bs-crm"],"zbs_lineitems":["zero-bs-crm"],"zbs_quotes":["zero-bs-crm"],"zbs_quotes_templates":["zero-bs-crm"],"zbs_security_log":["zero-bs-crm"],"zbs_tax_table":["zero-bs-crm"],"zbs_transactions":["zero-bs-crm"],"aysquiz_answers":["quiz-maker"],"aysquiz_categories":["quiz-maker"],"aysquiz_questions":["quiz-maker"],"aysquiz_quizcategories":["quiz-maker"],"aysquiz_quizes":["quiz-maker"],"aysquiz_reports":["quiz-maker"],"aysquiz_themes":["quiz-maker"],"aysquiz_rates":["quiz-maker"],"aysquiz_settings":["quiz-maker"],"captured_wc_fields":["woo-save-abandoned-carts"],"cartbounty":["woo-save-abandoned-carts"],"mailerlite_checkouts":["woo-mailerlite"],"content_tabs_ultimate_list":["vc-tabs"],"content_tabs_ultimate_style":["vc-tabs"],"content_tabs_ultimate_import":["vc-tabs"],"event_list":["event-list"],"oxi_div_list":["image-hover-effects-ultimate-visual-composer","shortcode-addons","accordions-or-faqs","team-showcase-ultimate","testimonial-or-reviews"],"oxi_div_style":["image-hover-effects-ultimate-visual-composer","shortcode-addons","accordions-or-faqs","team-showcase-ultimate","testimonial-or-reviews"],"gamipress_logs":["gamipress"],"gamipress_logs_meta":["gamipress"],"gamipress_user_earnings":["gamipress"],"gamipress_user_earnings_meta":["gamipress"],"uwp_form_extras":["userswp"],"uwp_form_fields":["userswp"],"uwp_usermeta":["userswp"],"uwp_profile_tabs":["userswp"],"uwp_user_sorting":["userswp"],"gdgallerygalleries":["photo-gallery-image"],"gdgalleryimages":["photo-gallery-image"],"gdgallerysettings":["photo-gallery-image"],"wpda_menu_items":["wp-data-access"],"wpda_table_design":["wp-data-access"],"wpdp_page":["wp-data-access"],"wpdp_project":["wp-data-access"],"wpdp_table":["wp-data-access"],"wpda_logging":["wp-data-access"],"wpda_publisher":["wp-data-access"],"wpda_media":["wp-data-access"],"wpda_menus":["wp-data-access"],"wpda_table_settings":["wp-data-access"],"wpda_project":["wp-data-access"],"wpda_project_page":["wp-data-access"],"wpda_project_table":["wp-data-access"],"wpda_csv_uploads":["wp-data-access"],"cmc_coins":["cryptocurrency-price-ticker-widget"],"ccpw_coins":["cryptocurrency-price-ticker-widget"],"hthb_analytics":["hashbar-wp-notification-bar"],"horizontal_scrolling_hsas":["horizontal-scrolling-announcements"],"rtafar_rules":["real-time-auto-find-and-replace"],"wow_coder":["wp-coder"],"ycd_subscribers":["countdown-builder"],"rmp_analytics":["rate-my-post"],"word_balloon":["word-balloon"],"mphb_sync_logs":["motopress-hotel-booking-lite"],"mphb_sync_queue":["motopress-hotel-booking-lite"],"mphb_sync_stats":["motopress-hotel-booking-lite"],"mphb_sync_urls":["motopress-hotel-booking-lite"],"mphb_api_keys":["motopress-hotel-booking-lite"],"mphb_customers":["motopress-hotel-booking-lite"],"mphb_customers_meta":["motopress-hotel-booking-lite"],"ezoic_endpoints":["ezoic-integration","bloomly-integration"],"pk_post_views":["powerkit"],"iyzico_card":["iyzico-woocommerce"],"iyzico_order":["iyzico-woocommerce"],"ssa_appointment_types":["simply-schedule-appointments"],"ssa_appointments":["simply-schedule-appointments"],"ssa_availability":["simply-schedule-appointments"],"ssa_async_actions":["simply-schedule-appointments"],"ssa_appointment_meta":["simply-schedule-appointments"],"ssa_staff":["simply-schedule-appointments"],"ssa_staff_relationships":["simply-schedule-appointments"],"ssa_availability_external":["simply-schedule-appointments"],"wps_cleaner":["wps-cleaner"],"wps_cleaner_queue":["wps-cleaner"],"tfwctool_wishlist_items":["woo-tools"],"tfwctool_wishlist_lists":["woo-tools"],"wpsc_ticket":["supportcandy"],"wpsc_ticketmeta":["supportcandy"],"wpsc_email_notification":["supportcandy"],"aeprh_links_lists":["all-404-pages-redirect-to-homepage"],"stm_lms_user_answers":["masterstudy-lms-learning-management-system"],"stm_lms_user_cart":["masterstudy-lms-learning-management-system"],"stm_lms_user_chat":["masterstudy-lms-learning-management-system"],"stm_lms_user_conversation":["masterstudy-lms-learning-management-system"],"stm_lms_user_courses":["masterstudy-lms-learning-management-system"],"stm_lms_user_lessons":["masterstudy-lms-learning-management-system"],"stm_lms_user_quizzes":["masterstudy-lms-learning-management-system"],"stm_lms_user_quizzes_times":["masterstudy-lms-learning-management-system"],"stm_lms_order_items":["masterstudy-lms-learning-management-system"],"stm_lms_user_searches":["masterstudy-lms-learning-management-system"],"stm_lms_user_searches_stats":["masterstudy-lms-learning-management-system"],"stm_lms_curriculum_bind":["masterstudy-lms-learning-management-system"],"stm_lms_curriculum_log":["masterstudy-lms-learning-management-system"],"rafflepress_contestants":["rafflepress"],"rafflepress_entries":["rafflepress"],"rafflepress_giveaways":["rafflepress"],"ums_icons":["ultimate-maps-by-supsystic"],"ums_maps":["ultimate-maps-by-supsystic"],"ums_marker_groups":["ultimate-maps-by-supsystic"],"ums_marker_groups_relation":["ultimate-maps-by-supsystic"],"ums_markers":["ultimate-maps-by-supsystic"],"ums_modules":["ultimate-maps-by-supsystic"],"ums_modules_type":["ultimate-maps-by-supsystic"],"ums_options":["ultimate-maps-by-supsystic"],"ums_options_categories":["ultimate-maps-by-supsystic"],"ums_usage_stat":["ultimate-maps-by-supsystic"],"ays_sccp":["secure-copy-content-protection"],"ays_sccp_block_content":["secure-copy-content-protection"],"ays_sccp_block_subscribe":["secure-copy-content-protection"],"ays_sccp_reports":["secure-copy-content-protection"],"ays_sccp_settings":["secure-copy-content-protection"],"wemail_forms":["wemail"],"wpforms_db":["database-for-wpforms"],"slc_simple_login_captcha":["simple-login-captcha"],"wotv_woo_track_info":["woo-orders-tracking"],"wps_st_options":["wps-visitor-counter"],"wps_statistic":["wps-visitor-counter"],"avc_page_visit":["advanced-page-visit-counter"],"avc_page_visit_history":["advanced-page-visit-counter"],"origincode_contact_contacts":["lastform"],"origincode_contact_contacts_fields":["lastform"],"origincode_contact_general_options":["lastform"],"origincode_contact_style_fields":["lastform"],"origincode_contact_styles":["lastform"],"origincode_contact_submission":["lastform"],"origincode_contact_subscribers":["lastform"],"ezcache_webp_images":["ezcache"],"origincode_photo_gallery_wp_gallerys":["photo-contest"],"origincode_photo_gallery_wp_images":["photo-contest"],"origincode_photo_gallery_wp_like_dislike":["photo-contest"],"yydev_tagmanager":["tag-manager-header-body-footer"],"pfhub_portfolio_grids":["uber-grid"],"pfhub_portfolio_images":["uber-grid"],"vi_wad_ali_orders_info":["woo-alidropship"],"wpil_report_links":["link-whisper"],"ahrefs_seo_backlinks":["ahrefs-seo"],"ahrefs_seo_blacklist":["ahrefs-seo"],"ahrefs_seo_content":["ahrefs-seo"],"ahrefs_seo_keywords":["ahrefs-seo"],"ahrefs_seo_snapshots":["ahrefs-seo"],"uap_action_log":["uncanny-automator"],"uap_action_log_meta":["uncanny-automator"],"uap_closure_log":["uncanny-automator"],"uap_closure_log_meta":["uncanny-automator"],"uap_recipe_log":["uncanny-automator"],"uap_trigger_log":["uncanny-automator"],"uap_trigger_log_meta":["uncanny-automator"],"uap_action_logs_view":["uncanny-automator"],"uap_recipe_logs_view":["uncanny-automator"],"uap_trigger_logs_view":["uncanny-automator"],"reviewx_criterias":["reviewx"],"reviewx_process_jobs":["reviewx"],"reviewx_reminder_email":["reviewx"],"reviewx_import_history":["reviewx"],"abp_posts":["website-article-monetization-by-magenet"],"wppb":["wp-popup-builder"],"bwt_failed_submissions":["bing-webmaster-tools"],"bwt_passed_submissions":["bing-webmaster-tools"],"fc_lists":["fluent-crm","frontend-checklist"],"fc_campaign_emails":["fluent-crm"],"fc_campaign_url_metrics":["fluent-crm"],"fc_campaigns":["fluent-crm"],"fc_funnel_metrics":["fluent-crm"],"fc_funnel_sequences":["fluent-crm"],"fc_funnel_subscribers":["fluent-crm"],"fc_funnels":["fluent-crm"],"fc_meta":["fluent-crm"],"fc_subscriber_meta":["fluent-crm"],"fc_subscriber_notes":["fluent-crm"],"fc_subscriber_pivot":["fluent-crm"],"fc_subscribers":["fluent-crm"],"fc_tags":["fluent-crm"],"fc_url_stores":["fluent-crm"],"jet_widgets_styles":["jet-style-manager"],"opanda_leads":["social-locker","opt-in-panda"],"opanda_leads_fields":["social-locker","opt-in-panda"],"opanda_stats_v2":["social-locker","opt-in-panda"],"slp_extendo_meta":["store-locator-le"],"store_locator":["store-locator-le"],"seamless_donations_audit":["seamless-donations"],"spider_video_player_player":["player"],"spider_video_player_playlist":["player"],"spider_video_player_tag":["player"],"spider_video_player_theme":["player"],"spider_video_player_video":["player"],"testimonial_slider":["testimonial-slider"],"testimonial_slider_meta":["testimonial-slider"],"testimonial_slider_postmeta":["testimonial-slider"],"vcp_log":["easy-visitor-counter","simple-visitor-counter-widget","awesome-visitor-counter","vieraslaskuri"],"site_cache":["wp-sitemanager"],"sitemanager_device":["wp-sitemanager"],"sitemanager_device_group":["wp-sitemanager"],"sitemanager_device_relation":["wp-sitemanager"],"gf_font_post":["free-google-fonts"],"gf_fontlist":["free-google-fonts"],"awpcp_ad_regions":["another-wordpress-classifieds-plugin"],"awpcp_adfees":["another-wordpress-classifieds-plugin"],"awpcp_admeta":["another-wordpress-classifieds-plugin"],"awpcp_ads":["another-wordpress-classifieds-plugin"],"awpcp_categories":["another-wordpress-classifieds-plugin"],"awpcp_credit_plans":["another-wordpress-classifieds-plugin"],"awpcp_media":["another-wordpress-classifieds-plugin"],"awpcp_payments":["another-wordpress-classifieds-plugin"],"awpcp_tasks":["another-wordpress-classifieds-plugin"],"adl_lp_templates":["legal-pages"],"stb_styles":["wp-special-textboxes"],"lmtttmpts_all_failed_attempts":["limit-attempts"],"lmtttmpts_blacklist":["limit-attempts"],"lmtttmpts_failed_attempts":["limit-attempts"],"lmtttmpts_whitelist":["limit-attempts"],"lmtttmpts_blacklist_email":["limit-attempts"],"lmtttmpts_email_list":["limit-attempts"],"lmtttmpts_allowlist":["limit-attempts"],"lmtttmpts_denylist":["limit-attempts"],"lmtttmpts_denylist_email":["limit-attempts"],"mlab_popup":["homepage-pop-up"],"photo_gallery_wp_gallerys":["gallery-and-caption"],"photo_gallery_wp_images":["gallery-and-caption"],"photo_gallery_wp_like_dislike":["gallery-and-caption"],"smartgoogleadwords":["smart-google-code-inserter"],"adintegration":["active-directory-integration"],"8degree_maintenance":["8-degree-coming-soon-page"],"8degree_comingsoon":["8-degree-coming-soon-page"],"reorder_post_rel":["reorder-post-within-categories"],"wf_sn_tests":["security-ninja"],"aelia_dismissed_messages":["woocommerce-eu-vat-assistant"],"sitemap":["companion-sitemap-generator"],"csg_sitemap":["companion-sitemap-generator"],"mv_settings":["mediavine-control-panel","mediavine-create"],"shopmagic_log_data":["shopmagic-for-woocommerce"],"atbdp_review":["directorist"],"wptripadvisor_post_templates":["wp-tripadvisor-review-slider"],"wptripadvisor_reviews":["wp-tripadvisor-review-slider"],"booking_package_coursedata":["booking-package"],"booking_package_form":["booking-package"],"booking_package_schedule":["booking-package"],"booking_package_templateschedule":["booking-package"],"booking_package_userpraivatedata":["booking-package"],"booking_package_webhook":["booking-package"],"booking_package_calendaraccount":["booking-package"],"booking_package_emailsetting":["booking-package"],"booking_package_guests":["booking-package"],"booking_package_users":["booking-package"],"booking_package_regular_holidays":["booking-package"],"booking_package_subscriptions":["booking-package"],"booking_package_taxes":["booking-package"],"booking_package_optionsforhotel":["booking-package"],"booking_package_coupons":["booking-package"],"booking_package_blocklist":["booking-package"],"tss_team_showcase_image_list":["team-showcase-supreme"],"tss_team_showcase_label":["team-showcase-supreme"],"tss_team_showcase_link":["team-showcase-supreme"],"tss_team_showcase_style":["team-showcase-supreme"],"wpm_6310_icon":["team-showcase-supreme"],"wpm_6310_member":["team-showcase-supreme"],"wpm_6310_style":["team-showcase-supreme"],"wpm_6310_icons":["team-showcase-supreme"],"wpm_6310_category":["team-showcase-supreme"],"paytm_order_data":["paytm-payments"],"vxcf_mailchimp":["cf7-mailchimp"],"vxcf_mailchimp_accounts":["cf7-mailchimp"],"vxcf_mailchimp_log":["cf7-mailchimp"],"spbsm":["superb-social-share-and-follow-buttons"],"spbsm_position":["superb-social-share-and-follow-buttons"],"bwf_action_claim":["wp-marketing-automations"],"bwf_actions":["wp-marketing-automations"],"bwf_contact":["wp-marketing-automations","funnel-builder"],"bwf_contact_meta":["wp-marketing-automations","funnel-builder"],"bwf_wc_customers":["wp-marketing-automations","funnel-builder"],"bwfan_abandonedcarts":["wp-marketing-automations"],"bwfan_automationmeta":["wp-marketing-automations"],"bwfan_automations":["wp-marketing-automations"],"bwfan_contact_automations":["wp-marketing-automations"],"bwfan_logmeta":["wp-marketing-automations"],"bwfan_logs":["wp-marketing-automations"],"bwfan_message_unsubscribe":["wp-marketing-automations"],"bwfan_syncrecords":["wp-marketing-automations"],"bwfan_task_claim":["wp-marketing-automations"],"bwfan_taskmeta":["wp-marketing-automations"],"bwfan_tasks":["wp-marketing-automations"],"wfco_connectormeta":["wp-marketing-automations"],"wfco_connectors":["wp-marketing-automations"],"wfco_report_views":["wp-marketing-automations","funnel-builder"],"bwf_funnelmeta":["funnel-builder"],"bwf_funnels":["funnel-builder"],"bwf_optin_entries":["funnel-builder"],"smuzform_entry":["contact-form-add"],"smuzform_entry_data":["contact-form-add"],"most_popular":["wp-most-popular"],"bie_redirects":["blogger-importer-extended"],"wangguardcronjobs":["wangguard"],"wangguardquestions":["wangguard"],"wangguardreportqueue":["wangguard"],"wangguardsignupsstatus":["wangguard"],"wangguarduserstatus":["wangguard"],"groups_rs":["role-scoper"],"role_scope_rs":["role-scoper"],"user2group_rs":["role-scoper"],"user2role2object_rs":["role-scoper"],"wpgmappity_maps":["wp-gmappity-easy-google-maps"],"wpgmappity_markers":["wp-gmappity-easy-google-maps"],"m_communications":["membership"],"m_coupons":["membership"],"m_levelmeta":["membership"],"m_member_payments":["membership"],"m_membership_levels":["membership"],"m_membership_news":["membership"],"m_membership_relationships":["membership"],"m_membership_rules":["membership"],"m_ping_history":["membership"],"m_pings":["membership"],"m_subscription_transaction":["membership"],"m_subscriptionmeta":["membership"],"m_subscriptions":["membership"],"m_subscriptions_levels":["membership"],"m_urlgroups":["membership"],"formbuilder_fields":["formbuilder"],"formbuilder_forms":["formbuilder"],"formbuilder_pages":["formbuilder"],"formbuilder_responses":["formbuilder"],"formbuilder_results":["formbuilder"],"formbuilder_tags":["formbuilder"],"custom_headers":["dynamic-headers"],"cpk_wpcsv_export_queue":["wp-csv"],"cpk_wpcsv_log":["wp-csv"],"huge_it_share_params":["wp-share-buttons"],"huge_it_share_params_posts":["wp-share-buttons"],"lgp_crons":["content-links"],"lgp_linking":["content-links"],"lgp_log":["content-links"],"lgp_posts":["content-links"],"bsearch":["better-search"],"bsearch_daily":["better-search"],"iqfm_inquiryform":["inquiry-form-creator"],"iqfm_inquiryform_component":["inquiry-form-creator"],"iqfm_inquiryform_mail":["inquiry-form-creator"],"iqfm_inquiryform_result":["inquiry-form-creator"],"iqfm_inquiryform_result_detail":["inquiry-form-creator"],"iqfm_resultid_sequence":["inquiry-form-creator"],"scroll_news":["vertical-news-scroller"],"410_links":["wp-410"],"wppcp_group_users":["wp-private-content-plus"],"wppcp_private_page":["wp-private-content-plus"],"hc_hmw_short_code":["healcode-mindbody-widget"],"adspage":["ads-wp-site-count"],"sms_subscribes":["wp-sms"],"sms_send":["wp-sms"],"sms_subscribes_group":["wp-sms"],"mapmarker_api":["map-multi-marker"],"mapmarker_marker":["map-multi-marker"],"mapmarker_option":["map-multi-marker"],"np_options":["woo-rfq-for-woocommerce"],"npxyz2021_sessions":["woo-rfq-for-woocommerce"],"promag_email_templates":["profilegrid-user-profiles-groups-and-communities"],"promag_fields":["profilegrid-user-profiles-groups-and-communities"],"promag_friends":["profilegrid-user-profiles-groups-and-communities"],"promag_groups":["profilegrid-user-profiles-groups-and-communities"],"promag_msg_conversation":["profilegrid-user-profiles-groups-and-communities"],"promag_msg_threads":["profilegrid-user-profiles-groups-and-communities"],"promag_notification":["profilegrid-user-profiles-groups-and-communities"],"promag_paypal_log":["profilegrid-user-profiles-groups-and-communities"],"promag_sections":["profilegrid-user-profiles-groups-and-communities"],"promag_group_requests":["profilegrid-user-profiles-groups-and-communities"],"mcloud_task":["ilab-media-tools"],"mcloud_task_data":["ilab-media-tools"],"mcloud_task_schedule":["ilab-media-tools"],"mcloud_mux_assets":["ilab-media-tools"],"mcloud_mux_playback":["ilab-media-tools"],"mcloud_mux_renditions":["ilab-media-tools"],"mcloud_task_token":["ilab-media-tools"],"cptch_responses":["captcha-bws"],"wpfingerprint_checksums":["wp-fingerprint"],"wpfingerprint_diffs":["wp-fingerprint"],"seo_automated_link_building":["seo-automated-link-building"],"seo_automated_link_building_statistic":["seo-automated-link-building"],"dae_links":["download-after-email"],"dae_subscribermeta":["download-after-email"],"dae_subscribers":["download-after-email"],"dae_linkmeta":["download-after-email"],"bookit_appointments":["bookit"],"bookit_categories":["bookit"],"bookit_customers":["bookit"],"bookit_services":["bookit"],"bookit_staff":["bookit"],"bookit_staff_services":["bookit"],"bookit_staff_working_hours":["bookit"],"bookit_coupons":["bookit"],"bookit_discounts":["bookit"],"bookit_payments":["bookit"],"wb_sst_broken_url":["smart-seo-tool"],"booter_404s":["booter-bots-crawlers-manager"],"uxgallery_gallerys":["photo-image-gallery"],"uxgallery_images":["photo-image-gallery"],"uxgallery_like_dislike":["photo-image-gallery"],"ux_gallery_album_has_gallery":["photo-image-gallery"],"ux_gallery_albums":["photo-image-gallery"],"ux_gallery_categories":["photo-image-gallery"],"ux_gallery_gallerys":["photo-image-gallery"],"ux_gallery_images":["photo-image-gallery"],"ux_gallery_like_dislike":["photo-image-gallery"],"fca_eoi_activity":["mailchimp-wp","getresponse","aweber-wp","campaign-monitor-wp","email-popup","mad-mimi-wp"],"fca_eoi_subscribers":["mailchimp-wp","getresponse","aweber-wp","campaign-monitor-wp","mad-mimi-wp"],"yumprint_recipe_recipe":["recipe-card"],"yumprint_recipe_theme":["recipe-card"],"yumprint_recipe_view":["recipe-card"],"fblb":["wp-like-button"],"anythingpopup":["anything-popup"],"sliderpatch_blacklist":["patch-for-revolution-slider"],"rs_stats":["slider-by-supsystic"],"rs_exclude":["slider-by-supsystic"],"rs_folders":["slider-by-supsystic"],"rs_maps":["slider-by-supsystic"],"rs_membership_presets":["slider-by-supsystic"],"rs_photos":["slider-by-supsystic"],"rs_photos_pos":["slider-by-supsystic"],"rs_resources":["slider-by-supsystic"],"rs_settings_presets":["slider-by-supsystic"],"rs_settings_sets":["slider-by-supsystic"],"rs_sliders":["slider-by-supsystic"],"rs_sorting":["slider-by-supsystic"],"rs_tags":["slider-by-supsystic"],"rs_videos":["slider-by-supsystic"],"useful_banner_manager_banners":["useful-banner-manager"],"quoterotator":["flexi-quote-rotator"],"wpsp_agent_settings":["wp-support-plus-responsive-ticket-system"],"wpsp_attachments":["wp-support-plus-responsive-ticket-system"],"wpsp_canned_reply":["wp-support-plus-responsive-ticket-system"],"wpsp_catagories":["wp-support-plus-responsive-ticket-system"],"wpsp_custom_fields":["wp-support-plus-responsive-ticket-system"],"wpsp_custom_priority":["wp-support-plus-responsive-ticket-system"],"wpsp_custom_status":["wp-support-plus-responsive-ticket-system"],"wpsp_faq":["wp-support-plus-responsive-ticket-system"],"wpsp_faq_catagories":["wp-support-plus-responsive-ticket-system"],"wpsp_panel_custom_menu":["wp-support-plus-responsive-ticket-system"],"wpsp_ticket":["wp-support-plus-responsive-ticket-system"],"wpsp_ticket_thread":["wp-support-plus-responsive-ticket-system"],"wpsp_agent_assign_data":["wp-support-plus-responsive-ticket-system"],"wpsp_support_menu":["wp-support-plus-responsive-ticket-system"],"wpsp_ticket_form_order":["wp-support-plus-responsive-ticket-system"],"wpsp_ticket_list_order":["wp-support-plus-responsive-ticket-system"],"wpsp_users":["wp-support-plus-responsive-ticket-system"],"dopbsp_api_keys":["booking-system"],"dopbsp_calendars":["booking-system"],"dopbsp_coupons":["booking-system"],"dopbsp_days":["booking-system"],"dopbsp_days_available":["booking-system"],"dopbsp_days_unavailable":["booking-system"],"dopbsp_discounts":["booking-system"],"dopbsp_discounts_items":["booking-system"],"dopbsp_discounts_items_rules":["booking-system"],"dopbsp_emails":["booking-system"],"dopbsp_emails_translation":["booking-system"],"dopbsp_extras":["booking-system"],"dopbsp_extras_groups":["booking-system"],"dopbsp_extras_groups_items":["booking-system"],"dopbsp_fees":["booking-system"],"dopbsp_forms":["booking-system"],"dopbsp_forms_fields":["booking-system"],"dopbsp_forms_select_options":["booking-system"],"dopbsp_languages":["booking-system"],"dopbsp_locations":["booking-system"],"dopbsp_models":["booking-system"],"dopbsp_reservations":["booking-system"],"dopbsp_rules":["booking-system"],"dopbsp_settings":["booking-system"],"dopbsp_settings_calendar":["booking-system"],"dopbsp_settings_notifications":["booking-system"],"dopbsp_settings_payment":["booking-system"],"dopbsp_translation_en":["booking-system"],"dopbsp_availability":["booking-system"],"dopbsp_availability_no":["booking-system"],"dopbsp_availability_price":["booking-system"],"dopbsp_searches":["booking-system"],"dopbsp_settings_search":["booking-system"],"dopbsp_smses":["booking-system"],"dopbsp_smses_translation":["booking-system"],"app_appointmentmeta":["appointments"],"app_appointments":["appointments"],"app_exceptions":["appointments"],"app_services":["appointments"],"app_transactions":["appointments"],"app_workers":["appointments"],"app_working_hours":["appointments"],"ulogin":["ulogin"],"ptc_logs":["ptypeconverter"],"likebtn_item":["likebtn-like-button"],"likebtn_vote":["likebtn-like-button"],"ev_claves":["envialosimple-email-marketing-y-newsletters-gratis"],"gmw_forms":["geo-my-wp"],"gmw_locationmeta":["geo-my-wp"],"gmw_locations":["geo-my-wp"],"oiyamaps_cache":["oi-yamaps"],"wce_editor_content":["custom-css-js-php"],"to_buffer_log":["wp-to-buffer"],"tp_auto_replac_links":["travelpayouts"],"tp_search_shortcodes":["travelpayouts"],"tp_special_offer":["travelpayouts"],"tp_special_route":["travelpayouts"],"tp_hotel_list_shortcode":["travelpayouts"],"watu_answer":["watu"],"watu_grading":["watu"],"watu_master":["watu"],"watu_question":["watu"],"watu_takings":["watu"],"watu_qcats":["watu"],"email_user":["wp-email-users"],"weu_sent_email":["wp-email-users"],"weu_smtp_conf":["wp-email-users"],"weu_subscribers":["wp-email-users"],"weu_unsubscriber":["wp-email-users"],"weu_user_notification":["wp-email-users"],"weu_group27":["wp-email-users"],"podlove_downloadintent":["podlove-podcasting-plugin-for-wordpress"],"podlove_downloadintentclean":["podlove-podcasting-plugin-for-wordpress"],"podlove_episode":["podlove-podcasting-plugin-for-wordpress"],"podlove_episodeasset":["podlove-podcasting-plugin-for-wordpress"],"podlove_feed":["podlove-podcasting-plugin-for-wordpress"],"podlove_filetype":["podlove-podcasting-plugin-for-wordpress"],"podlove_geoarea":["podlove-podcasting-plugin-for-wordpress"],"podlove_geoareaname":["podlove-podcasting-plugin-for-wordpress"],"podlove_job":["podlove-podcasting-plugin-for-wordpress"],"podlove_mediafile":["podlove-podcasting-plugin-for-wordpress"],"podlove_modules_logging_logtable":["podlove-podcasting-plugin-for-wordpress"],"podlove_template":["podlove-podcasting-plugin-for-wordpress"],"podlove_useragent":["podlove-podcasting-plugin-for-wordpress"],"coderun_oneclickwoo_orders":["buy-one-click-woocommerce"],"wpvgw_markers":["wp-vgwort"],"wpvgw_posts_extras":["wp-vgwort"],"ipanorama":["ipanorama-360-virtual-tour-builder-lite"],"rich_web_video_slider_effects_data":["slider-video"],"rich_web_video_slider_font_family":["slider-video"],"rich_web_video_slider_id":["slider-video"],"rich_web_video_slider_manager":["slider-video"],"rich_web_video_slider_videos":["slider-video"],"rich_web_vs_effect_1":["slider-video"],"rich_web_vs_effect_2":["slider-video"],"rich_web_vs_effect_3":["slider-video"],"rich_web_vs_effect_4":["slider-video"],"rich_web_vs_effect_5":["slider-video"],"rich_web_vs_effect_6":["slider-video"],"rich_web_vs_effect_7":["slider-video"],"rich_web_vs_effect_8":["slider-video"],"rich_web_vs_effect_9":["slider-video"],"rich_web_vs_effect_10":["slider-video"],"rich_web_vs_effect_10_loader":["slider-video"],"rich_web_vs_effect_1_loader":["slider-video"],"rich_web_vs_effect_2_loader":["slider-video"],"rich_web_vs_effect_3_loader":["slider-video"],"rich_web_vs_effect_4_loader":["slider-video"],"rich_web_vs_effect_5_loader":["slider-video"],"rich_web_vs_effect_6_loader":["slider-video"],"rich_web_vs_effect_7_loader":["slider-video"],"rich_web_vs_effect_8_loader":["slider-video"],"rich_web_vs_effect_9_loader":["slider-video"],"rich_web_vs_effect_11":["slider-video"],"rich_web_vs_effect_11_loader":["slider-video"],"sb_image_hover_effects_list":["sb-image-hover-effects"],"sb_image_hover_effects_style":["sb-image-hover-effects"],"bp_messages_messages":["bp-better-messages","buddypress"],"bp_messages_meta":["bp-better-messages","buddypress"],"bp_messages_notices":["bp-better-messages","buddypress"],"bp_messages_recipients":["bp-better-messages","buddypress"],"bpbm_threadsmeta":["bp-better-messages"],"r_sessions":["wp-instagram-post"],"gdformaddressfieldoptions":["easy-contact-form-builder"],"gdformcaptchas":["easy-contact-form-builder"],"gdformfieldoptions":["easy-contact-form-builder"],"gdformfields":["easy-contact-form-builder"],"gdformfieldtypes":["easy-contact-form-builder"],"gdformforms":["easy-contact-form-builder"],"gdformlabelpositions":["easy-contact-form-builder"],"gdformonsubmitactions":["easy-contact-form-builder"],"gdformsettings":["easy-contact-form-builder"],"gdformsubmissionfields":["easy-contact-form-builder"],"gdformsubmissions":["easy-contact-form-builder"],"gdformthemes":["easy-contact-form-builder"],"wtmgdp_log":["wp-migration-duplicator"],"wt_mgdp_ftp":["wp-migration-duplicator"],"wt_mgdp_action_history":["wp-migration-duplicator"],"hf_submissions":["html-forms"],"ic_compressed":["wp-compress-image-optimizer"],"ic_log":["wp-compress-image-optimizer"],"ic_queue":["wp-compress-image-optimizer"],"ic_stats":["wp-compress-image-optimizer"],"e2pdf_datasets":["e2pdf"],"e2pdf_elements":["e2pdf"],"e2pdf_entries":["e2pdf"],"e2pdf_pages":["e2pdf"],"e2pdf_templates":["e2pdf"],"e2pdf_revisions":["e2pdf"],"mv_creations":["mediavine-create"],"mv_images":["mediavine-create"],"mv_nutrition":["mediavine-create"],"mv_products":["mediavine-create"],"mv_products_map":["mediavine-create"],"mv_reviews":["mediavine-create"],"mv_shapes":["mediavine-create"],"mv_supplies":["mediavine-create"],"mv_relations":["mediavine-create"],"mv_revisions":["mediavine-create"],"bw_pricing_items":["boxtal-connect"],"vxcf_hubspot":["cf7-hubspot"],"vxcf_hubspot_accounts":["cf7-hubspot"],"vxcf_hubspot_log":["cf7-hubspot"],"wrc_caches":["wp-rest-cache"],"wrc_relations":["wp-rest-cache"],"wpwhpro_authentication":["wp-webhooks"],"omnivo_calendar_event_hours":["hbook"],"omnivo_calendar_event_hours_booking":["hbook"],"omnivo_calendar_guests":["hbook"],"paytr_iframe_transaction":["paytr-sanal-pos-woocommerce-iframe-api"],"corefortress_slider_themes":["image-responsive-slider"],"corefortress_sliders":["image-responsive-slider"],"corefortress_slides":["image-responsive-slider"],"wb_spider":["spider-analyser"],"wb_spider_log":["spider-analyser"],"wb_spider_sum":["spider-analyser"],"wb_spider_visit":["spider-analyser"],"wb_spider_ip":["spider-analyser"],"wb_spider_post":["spider-analyser"],"wb_spider_post_link":["spider-analyser"],"lps_lockdowns":["login-page-styler"],"lps_login_fails":["login-page-styler"],"mltlngg_terms_translate":["multilanguage"],"mltlngg_translate":["multilanguage"],"updater_list":["updater"],"sendpress_autoresponders":["sendpress"],"sendpress_connections":["sendpress"],"sendpress_list_subscribers":["sendpress"],"sendpress_queue":["sendpress"],"sendpress_schedules":["sendpress"],"sendpress_subscribers":["sendpress"],"sendpress_subscribers_meta":["sendpress"],"sendpress_subscribers_status":["sendpress"],"sendpress_subscribers_tracker":["sendpress"],"sendpress_subscribers_url":["sendpress"],"sendpress_url":["sendpress"],"sendpress_customfields":["sendpress"],"downloads":["wp-downloadmanager","hacklog-downloadmanager"],"un_termmeta":["usernoise"],"avhfdas_ipcache":["avh-first-defense-against-spam"],"testimonial_basics":["testimonial-basics"],"news_announcement":["news-announcement-scroll"],"eme_answers":["events-made-easy"],"eme_bookings":["events-made-easy"],"eme_categories":["events-made-easy"],"eme_dgroups":["events-made-easy"],"eme_discounts":["events-made-easy"],"eme_events":["events-made-easy"],"eme_fieldtypes":["events-made-easy"],"eme_formfields":["events-made-easy"],"eme_holidays":["events-made-easy"],"eme_locations":["events-made-easy"],"eme_payments":["events-made-easy"],"eme_people":["events-made-easy"],"eme_recurrence":["events-made-easy"],"eme_templates":["events-made-easy"],"eme_mqueue":["events-made-easy"],"eme_groups":["events-made-easy"],"eme_mailings":["events-made-easy"],"eme_members":["events-made-easy"],"eme_memberships":["events-made-easy"],"eme_usergroups":["events-made-easy"],"eme_countries":["events-made-easy"],"eme_states":["events-made-easy"],"eme_events_cf":["events-made-easy"],"eme_locations_cf":["events-made-easy"],"eme_memberships_cf":["events-made-easy"],"eme_attendances":["events-made-easy"],"eme_task_signups":["events-made-easy"],"eme_tasks":["events-made-easy"],"xyz_cfm_form":["contact-form-manager"],"xyz_cfm_form_elements":["contact-form-manager"],"xyz_cfm_sender_email_address":["contact-form-manager"],"xyz_cfm_theme_details":["contact-form-manager"],"afap_logs":["accesspress-facebook-auto-post"],"ihrss_plugin":["image-horizontal-reel-scroll-slideshow"],"seo_title_tag_category":["seo-title-tag"],"seo_title_tag_tag":["seo-title-tag"],"seo_title_tag_url":["seo-title-tag"],"sharebar":["sharebar"],"counterize":["counterizeii"],"counterize_keywords":["counterizeii"],"counterize_pages":["counterizeii"],"counterize_referers":["counterizeii"],"counterize_useragents":["counterizeii"],"iconosquare_widget":["instagram-image-gallery"],"jw_easy_logo_slider":["easy-logo-slider"],"jw_easy_logo_slider_setting":["easy-logo-slider"],"randomtext":["randomtext"],"dtree_cache":["wp-dtree-30"],"ps_group_relationships":["contexture-page-security"],"ps_groups":["contexture-page-security"],"ps_security":["contexture-page-security"],"quick_chat_messages":["quick-chat"],"quick_chat_users":["quick-chat"],"knewsautomated":["knews"],"knewsautomatedposts":["knews"],"knewsautomatedsel":["knews"],"knewsextrafields":["knews"],"knewskeys":["knews"],"knewsletters":["knews"],"knewslists":["knews"],"knewstats":["knews"],"knewsubmits":["knews"],"knewsubmitsdetails":["knews"],"knewsusers":["knews"],"knewsusersevents":["knews"],"knewsusersextra":["knews"],"knewsuserslists":["knews"],"badgeos_achievements":["badgeos"],"badgeos_points":["badgeos"],"badgeos_ranks":["badgeos"],"vtprd_purchase_log":["pricing-deals-for-woocommerce"],"vtprd_purchase_log_product":["pricing-deals-for-woocommerce"],"vtprd_purchase_log_product_rule":["pricing-deals-for-woocommerce"],"vtprd_transient_cart_data":["pricing-deals-for-woocommerce"],"waiting":["waiting"],"hmp_playlist":["html5-jquery-audio-player"],"hmp_rating":["html5-jquery-audio-player"],"nggcf_field_values":["nextgen-gallery-custom-fields"],"nggcf_fields":["nextgen-gallery-custom-fields"],"nggcf_fields_link":["nextgen-gallery-custom-fields"],"wppg_album":["simple-photo-gallery"],"wppg_downloads":["simple-photo-gallery"],"wppg_gallery":["simple-photo-gallery"],"wppg_global_meta":["simple-photo-gallery"],"wppg_settings":["simple-photo-gallery"],"twp_logs":["telegram-for-wp"],"formcraft_b_forms":["formcraft-form-builder"],"formcraft_b_submissions":["formcraft-form-builder"],"formcraft_b_views":["formcraft-form-builder"],"cloudinary_relationships":["cloudinary-image-management-and-manipulation-in-the-cloud-cdn"],"appbox":["wp-appbox"],"wpdevart_calendars":["booking-calendar"],"wpdevart_dates":["booking-calendar"],"wpdevart_extras":["booking-calendar"],"wpdevart_forms":["booking-calendar"],"wpdevart_payments":["booking-calendar"],"wpdevart_reservations":["booking-calendar"],"wpdevart_themes":["booking-calendar"],"address":["wp-easycart","wp-google-map"],"affiliate_rule":["wp-easycart"],"affiliate_rule_to_affiliate":["wp-easycart"],"affiliate_rule_to_product":["wp-easycart"],"bundle":["wp-easycart"],"category":["wp-easycart","udssl-time-tracker"],"categoryitem":["wp-easycart"],"code":["wp-easycart"],"country":["wp-easycart","block-country","wp-domain-redirect","prosolution-wp-client"],"customfield":["wp-easycart"],"customfielddata":["wp-easycart"],"download":["wp-easycart","download-manager-ms"],"giftcard":["wp-easycart"],"live_rate_cache":["wp-easycart"],"manufacturer":["wp-easycart"],"menulevel1":["wp-easycart"],"menulevel2":["wp-easycart"],"menulevel3":["wp-easycart"],"option":["wp-easycart"],"option_to_product":["wp-easycart"],"optionitem":["wp-easycart"],"optionitemimage":["wp-easycart"],"optionitemquantity":["wp-easycart"],"order":["wp-easycart","landing-pages-leads-analytics-seo-content"],"order_option":["wp-easycart"],"orderdetail":["wp-easycart"],"orderstatus":["wp-easycart"],"pageoption":["wp-easycart"],"perpage":["wp-easycart"],"pricepoint":["wp-easycart"],"pricetier":["wp-easycart"],"product":["wp-easycart"],"product_google_attributes":["wp-easycart"],"promocode":["wp-easycart"],"promotion":["wp-easycart"],"response":["wp-easycart"],"review":["wp-easycart"],"role":["wp-easycart"],"roleaccess":["wp-easycart"],"roleprice":["wp-easycart"],"setting":["wp-easycart","prosolution-wp-client"],"shipping_class":["wp-easycart"],"shipping_class_to_rate":["wp-easycart"],"shippingrate":["wp-easycart"],"state":["wp-easycart","country-state-city-auto-dropdown"],"subscriber":["wp-easycart"],"subscription":["wp-easycart"],"subscription_plan":["wp-easycart"],"taxrate":["wp-easycart"],"tempcart":["wp-easycart"],"tempcart_data":["wp-easycart"],"tempcart_optionitem":["wp-easycart"],"timezone":["wp-easycart"],"user":["wp-easycart"],"webhook":["wp-easycart"],"zone":["wp-easycart"],"zone_to_location":["wp-easycart"],"product_subscriber":["wp-easycart"],"order_log":["wp-easycart"],"order_log_meta":["wp-easycart"],"tdrd_redirection":["trash-duplicate-and-301-redirect"],"tdrd_log_details":["trash-duplicate-and-301-redirect"],"cf7_data":["cf7-database"],"cf7_data_entry":["cf7-database"],"mpsl_sliders":["motopress-slider-lite"],"mpsl_sliders_preview":["motopress-slider-lite"],"mpsl_slides":["motopress-slider-lite"],"mpsl_slides_preview":["motopress-slider-lite"],"edn_subscriber":["8-degree-notification-bar"],"wp_links_page_free_table":["wp-links-page"],"apmm_custom_theme":["ap-mega-menu"],"woocommerce_tpay":["woocommerce-transferujpl-payment-gateway"],"woocommerce_tpay_clients":["woocommerce-transferujpl-payment-gateway"],"mpp_logs":["mediapress"],"address_components":["estatik"],"fbuilder_fields":["estatik"],"fbuilder_fields_order":["estatik"],"fbuilder_sections":["estatik"],"fbuilder_sections_order":["estatik"],"sm_sync":["wp-stateless"],"totalsoft_poll_answers":["poll-wp"],"totalsoft_poll_dbt":["poll-wp"],"totalsoft_poll_id":["poll-wp"],"totalsoft_poll_iminqu":["poll-wp"],"totalsoft_poll_iminqu_1":["poll-wp"],"totalsoft_poll_impoll":["poll-wp"],"totalsoft_poll_impoll_1":["poll-wp"],"totalsoft_poll_imwibu":["poll-wp"],"totalsoft_poll_imwibu_1":["poll-wp"],"totalsoft_poll_inform":["poll-wp"],"totalsoft_poll_manager":["poll-wp"],"totalsoft_poll_quest_im":["poll-wp"],"totalsoft_poll_results":["poll-wp"],"totalsoft_poll_stpoll":["poll-wp"],"totalsoft_poll_stpoll_1":["poll-wp"],"totalsoft_poll_stwibu":["poll-wp"],"totalsoft_poll_stwibu_1":["poll-wp"],"totalsoft_poll_setting":["poll-wp"],"totalsoft_poll_iminqu_01":["poll-wp"],"totalsoft_poll_iminqu_02":["poll-wp"],"totalsoft_poll_impoll_01":["poll-wp"],"totalsoft_poll_impoll_02":["poll-wp"],"totalsoft_poll_imwibu_01":["poll-wp"],"totalsoft_poll_imwibu_02":["poll-wp"],"totalsoft_poll_stpoll_01":["poll-wp"],"totalsoft_poll_stpoll_02":["poll-wp"],"totalsoft_poll_stwibu_01":["poll-wp"],"totalsoft_poll_stwibu_02":["poll-wp"],"ts_poll_questions":["poll-wp"],"wpappninja_adserver":["wpappninja"],"wpappninja_home_perso":["wpappninja"],"wpappninja_ids":["wpappninja"],"wpappninja_installs":["wpappninja"],"wpappninja_push":["wpappninja"],"wpappninja_push_perso":["wpappninja"],"wpappninja_qrcode":["wpappninja"],"wpappninja_stats":["wpappninja"],"wpappninja_stats_users":["wpappninja"],"paystack_forms_payments":["payment-forms-for-paystack"],"prevent_direct_access":["prevent-direct-access"],"prevent_direct_access_free":["prevent-direct-access"],"sa_captured_wc_fields":["sms-alert"],"smsalert_renewal_reminders":["sms-alert"],"smsalert_booking_reminder":["sms-alert"],"mpprecipe_ratings":["blockonomics-bitcoin-payments","meal-planner-pro"],"mpprecipe_recipes":["blockonomics-bitcoin-payments","meal-planner-pro"],"mpprecipe_tags":["blockonomics-bitcoin-payments","meal-planner-pro"],"gktpp_ajax_domains":["pre-party-browser-hints"],"gktpp_table":["pre-party-browser-hints"],"pprh_table":["pre-party-browser-hints"],"woocommerce_conekta_metadata":["conekta-payment-gateway"],"woocommerce_conekta_unfinished_orders":["conekta-payment-gateway"],"senderqueue":["elastic-email-sender"],"elasticemail_log":["elastic-email-sender","elastic-email-subscribe-form"],"wpmfs_queue":["wp-media-folders"],"way2enjoy_dir_images":["way2enjoy-compress-images","regenerate-thumbnails-in-cloud"],"wt_dates":["wp-travel"],"wt_excluded_dates_times":["wp-travel"],"wt_price_category_relation":["wp-travel"],"wt_pricings":["wp-travel"],"auto_updater_history":["wp-auto-updater"],"mail_catcher_logs":["wp-mail-catcher"],"gdpr_requests":["wp-gdpr-core","gdpr-personal-data-reports"],"gdpr_del_requests":["wp-gdpr-core"],"gdpr_log":["wp-gdpr-core"],"gdpr_data_register":["wp-gdpr-core"],"photoblocks":["photoblocks-grid-gallery"],"_groups":["project-supremacy","dms"],"_projects":["project-supremacy"],"_redirects":["project-supremacy"],"_reviews":["project-supremacy","photo-video-store","star-review-manager"],"db_element_form":["all-contact-form-integration-for-elementor"],"adsforwp_stats":["ads-for-wp"],"acym_automation":["acymailing"],"acym_automation_has_step":["acymailing"],"acym_campaign":["acymailing"],"acym_configuration":["acymailing"],"acym_field":["acymailing"],"acym_list":["acymailing"],"acym_mail":["acymailing"],"acym_mail_has_list":["acymailing"],"acym_mail_stat":["acymailing"],"acym_queue":["acymailing"],"acym_rule":["acymailing"],"acym_step":["acymailing"],"acym_tag":["acymailing"],"acym_url":["acymailing"],"acym_url_click":["acymailing"],"acym_user":["acymailing"],"acym_user_has_field":["acymailing"],"acym_user_has_list":["acymailing"],"acym_user_stat":["acymailing"],"acym_history":["acymailing"],"acym_action":["acymailing"],"acym_condition":["acymailing"],"acym_plugin":["acymailing"],"acym_form":["acymailing"],"acym_segment":["acymailing"],"acym_followup":["acymailing"],"acym_followup_has_mail":["acymailing"],"acym_mail_override":["acymailing"],"ukr_shipping_np_areas":["wc-ukr-shipping"],"ukr_shipping_np_cities":["wc-ukr-shipping"],"ukr_shipping_np_warehouses":["wc-ukr-shipping"],"adfoin_integration":["advanced-form-integration"],"adfoin_log":["advanced-form-integration"],"gdpr_cookie_post_cookies":["gdpr-cookie-consent"],"gdpr_cookie_scan_categories":["gdpr-cookie-consent"],"searchinsights_archive":["wp-search-insights"],"searchinsights_single":["wp-search-insights"],"lw_aio_a_events":["lw-all-in-one"],"lw_aio_cf7":["lw-all-in-one"],"emcs_event_types":["embed-calendly-scheduling"],"slider_pro_layers":["sliderpro","slider-pro-lite"],"slider_pro_sliders":["sliderpro","slider-pro-lite"],"slider_pro_slides":["sliderpro","slider-pro-lite"],"wp_email_capture_registered_members":["wp-email-capture"],"wp_email_capture_temp_members":["wp-email-capture"],"idget_global_settings":["instagram-for-wordpress"],"idget_widget":["instagram-for-wordpress"],"_query_cache":["wp-meta-data-filter-and-taxonomy-filter"],"mdf_query_cache":["wp-meta-data-filter-and-taxonomy-filter"],"mdf_stat_buffer":["wp-meta-data-filter-and-taxonomy-filter"],"mdf_stat_tmp":["wp-meta-data-filter-and-taxonomy-filter"],"funbox":["wp-visual-slidebox-builder"],"vsbb_v2":["wp-visual-slidebox-builder"],"vsbb_v2_lic":["wp-visual-slidebox-builder"],"email":["wp-email"],"easy_gallery":["wp-easy-gallery"],"easy_gallery_images":["wp-easy-gallery"],"wpda_form_fields":["contact-forms-builder"],"wpda_form_forms":["contact-forms-builder"],"wpda_form_subfields":["contact-forms-builder"],"wpda_form_submissions":["contact-forms-builder"],"wpda_form_submit_time":["contact-forms-builder"],"statcounter":["stat-counter"],"wpsp_ips":["wp-splash-page"],"xyz_em_additional_field_info":["newsletter-manager"],"xyz_em_additional_field_value":["newsletter-manager"],"xyz_em_address_list_mapping":["newsletter-manager"],"xyz_em_attachment":["newsletter-manager"],"xyz_em_email_address":["newsletter-manager"],"xyz_em_email_campaign":["newsletter-manager"],"xyz_em_email_template":["newsletter-manager"],"xyz_em_sender_email_address":["newsletter-manager"],"clean_up_optimizer":["wp-clean-up-optimizer"],"clean_up_optimizer_meta":["wp-clean-up-optimizer"],"clean_up_optimizer_ip_locations":["wp-clean-up-optimizer"],"post_relationships":["microkids-related-posts"],"events":["wp-events","wp-gcalendar"],"events_categories":["wp-events"],"lightbox_bank_settings":["wp-lightbox-bank"],"aff_affiliates":["affiliates"],"aff_affiliates_users":["affiliates"],"aff_hits":["affiliates"],"aff_referrals":["affiliates"],"aff_robots":["affiliates"],"aff_uris":["affiliates"],"aff_user_agents":["affiliates"],"aff_referral_items":["affiliates"],"fsevents":["wp-calendar"],"fsevents_cats":["wp-calendar"],"bp_follow":["buddypress-followers"],"pronamic_pay_mollie_customer_users":["pronamic-ideal"],"pronamic_pay_mollie_customers":["pronamic-ideal"],"pronamic_pay_mollie_organizations":["pronamic-ideal"],"pronamic_pay_mollie_profiles":["pronamic-ideal"],"3wp_activity_monitor_index":["threewp-activity-monitor"],"3wp_activity_monitor_user_statistics":["threewp-activity-monitor"],"vs_current_online_users":["visits-counter"],"vs_overall_counter":["visits-counter"],"afflctable_link":["affiliate-link-cloaking"],"afflctable_statistics_daily":["affiliate-link-cloaking"],"afflctable_track":["affiliate-link-cloaking"],"copyrightpro":["copyrightpro"],"thumbnail_slider":["images-thumbnail-sliderv1"],"calp_event_category_colors":["calpress-event-calendar"],"calp_event_feeds":["calpress-event-calendar"],"calp_event_instances":["calpress-event-calendar"],"calp_events":["calpress-event-calendar"],"cpmp_player":["audio-and-video-player"],"cd_customizations":["client-dash"],"emd_sessions":["youtube-showcase","request-a-quote","wp-ticket","employee-directory","wp-easy-contact","campus-directory","software-issue-manager","wp-easy-events"],"kingkongboard_comment_meta":["kingkong-board"],"kingkongboard_meta":["kingkong-board"],"associatedattendees":["rsvp"],"attendeeanswers":["rsvp"],"attendees":["rsvp"],"rsvpcustomquestionanswers":["rsvp"],"rsvpcustomquestionattendees":["rsvp"],"rsvpcustomquestions":["rsvp"],"rsvpquestiontypes":["rsvp"],"related_post_stats":["related-post"],"jtrt_tables":["jtrt-responsive-tables"],"ap_qameta":["anspress-question-answer"],"ap_reputations":["anspress-question-answer"],"ap_subscribers":["anspress-question-answer"],"ap_views":["anspress-question-answer"],"ap_votes":["anspress-question-answer"],"ap_activity":["anspress-question-answer"],"fortyfour_logs":["forty-four"],"wpl_activities":["real-estate-listing-realtyna-wpl"],"wpl_addons":["real-estate-listing-realtyna-wpl"],"wpl_cronjobs":["real-estate-listing-realtyna-wpl"],"wpl_dbcat":["real-estate-listing-realtyna-wpl"],"wpl_dbst":["real-estate-listing-realtyna-wpl"],"wpl_dbst_types":["real-estate-listing-realtyna-wpl"],"wpl_events":["real-estate-listing-realtyna-wpl"],"wpl_extensions":["real-estate-listing-realtyna-wpl"],"wpl_filters":["real-estate-listing-realtyna-wpl"],"wpl_item_categories":["real-estate-listing-realtyna-wpl"],"wpl_items":["real-estate-listing-realtyna-wpl"],"wpl_kinds":["real-estate-listing-realtyna-wpl"],"wpl_listing_types":["real-estate-listing-realtyna-wpl"],"wpl_location1":["real-estate-listing-realtyna-wpl"],"wpl_location2":["real-estate-listing-realtyna-wpl"],"wpl_location3":["real-estate-listing-realtyna-wpl"],"wpl_location4":["real-estate-listing-realtyna-wpl"],"wpl_location5":["real-estate-listing-realtyna-wpl"],"wpl_location6":["real-estate-listing-realtyna-wpl"],"wpl_location7":["real-estate-listing-realtyna-wpl"],"wpl_locationtextsearch":["real-estate-listing-realtyna-wpl"],"wpl_locationzips":["real-estate-listing-realtyna-wpl"],"wpl_logs":["real-estate-listing-realtyna-wpl"],"wpl_menus":["real-estate-listing-realtyna-wpl"],"wpl_notifications":["real-estate-listing-realtyna-wpl"],"wpl_properties":["real-estate-listing-realtyna-wpl"],"wpl_property_types":["real-estate-listing-realtyna-wpl"],"wpl_room_types":["real-estate-listing-realtyna-wpl"],"wpl_setting_categories":["real-estate-listing-realtyna-wpl"],"wpl_settings":["real-estate-listing-realtyna-wpl"],"wpl_sort_options":["real-estate-listing-realtyna-wpl"],"wpl_unit_types":["real-estate-listing-realtyna-wpl"],"wpl_units":["real-estate-listing-realtyna-wpl"],"wpl_user_group_types":["real-estate-listing-realtyna-wpl"],"wpl_users":["real-estate-listing-realtyna-wpl"],"wpl_addon_idx_payments":["real-estate-listing-realtyna-wpl"],"wpl_addon_idx_service_logs":["real-estate-listing-realtyna-wpl"],"wpl_addon_idx_tasks":["real-estate-listing-realtyna-wpl"],"wpl_addon_idx_trial_logs":["real-estate-listing-realtyna-wpl"],"wpl_addon_idx_user_wizard_steps":["real-estate-listing-realtyna-wpl"],"wpl_addon_idx_users":["real-estate-listing-realtyna-wpl"],"wpl_addon_idx_users_providers":["real-estate-listing-realtyna-wpl"],"wpl_properties2":["real-estate-listing-realtyna-wpl"],"automated_links":["wp-auto-affiliate-links"],"aal_statistics":["wp-auto-affiliate-links"],"amd_zlrecipe_recipes":["zip-recipes","ziplist-recipe-plugin"],"ewd_otp_custom_fields":["order-tracking"],"ewd_otp_customers":["order-tracking"],"ewd_otp_fields_meta":["order-tracking"],"ewd_otp_order_statuses":["order-tracking"],"ewd_otp_orders":["order-tracking"],"ewd_otp_sales_reps":["order-tracking"],"ecp_x_category":["enhanced-category-pages"],"kpcode_url_posts":["long-url-maker"],"mprm_customer":["mp-restaurant-menu"],"pto_files":["gourl-bitcoin-payment-gateway-paid-downloads-membership"],"pto_membership":["gourl-bitcoin-payment-gateway-paid-downloads-membership"],"pto_payments":["gourl-bitcoin-payment-gateway-paid-downloads-membership"],"pto_products":["gourl-bitcoin-payment-gateway-paid-downloads-membership"],"dk_speakout_petitions":["speakout"],"dk_speakout_signatures":["speakout"],"sh_cd_shortcodes":["shortcode-variables"],"sh_cd_shortcodes_multisite":["shortcode-variables"],"moodle_enrollment":["edwiser-bridge"],"peepso_activities":["peepso-core"],"peepso_activity_hide":["peepso-core"],"peepso_activity_ranking":["peepso-core"],"peepso_blocks":["peepso-core"],"peepso_likes":["peepso-core"],"peepso_mail_queue":["peepso-core"],"peepso_notifications":["peepso-core"],"peepso_report":["peepso-core"],"peepso_users":["peepso-core"],"peepso_gdpr_request_data":["peepso-core"],"peepso_brute_force_attempts_logs":["peepso-core"],"peepso_login_failed_attempts_logs":["peepso-core"],"peepso_cache":["peepso-core"],"peepso_errors":["peepso-core"],"peepso_unfollow":["peepso-core"],"peepso_hashtags":["peepso-core"],"peepso_reactions":["peepso-core"],"peepso_saved_posts":["peepso-core"],"peepso_revisions":["peepso-core"],"peepso_api_rate_limit":["peepso-core"],"peepso_notifications_queue_log":["peepso-core"],"peepso_activity_views":["peepso-core"],"peepso_mayfly":["peepso-core"],"peepso_activity_followers":["peepso-core"],"peepso_polls_user_answers":["peepso-core"],"peepso_user_followers":["peepso-core"],"ns_cloner_logs":["ns-cloner-site-copier"],"advanced_booking_calendar_booking_extras":["advanced-booking-calendar"],"advanced_booking_calendar_bookings":["advanced-booking-calendar"],"advanced_booking_calendar_calendars":["advanced-booking-calendar"],"advanced_booking_calendar_extras":["advanced-booking-calendar"],"advanced_booking_calendar_requests":["advanced-booking-calendar"],"advanced_booking_calendar_rooms":["advanced-booking-calendar"],"advanced_booking_calendar_seasons":["advanced-booking-calendar"],"advanced_booking_calendar_seasons_assignment":["advanced-booking-calendar"],"abc_booking_extras":["advanced-booking-calendar"],"abc_bookings":["advanced-booking-calendar"],"abc_calendars":["advanced-booking-calendar"],"abc_extras":["advanced-booking-calendar"],"abc_requests":["advanced-booking-calendar"],"abc_rooms":["advanced-booking-calendar"],"abc_seasons":["advanced-booking-calendar"],"abc_seasons_assignment":["advanced-booking-calendar"],"donate_mollie":["doneren-met-mollie"],"donate_mollie_donors":["doneren-met-mollie"],"donate_mollie_subscriptions":["doneren-met-mollie"],"updraftcentral_site_temporary_keys":["updraftcentral"],"updraftcentral_sitemeta":["updraftcentral"],"updraftcentral_sites":["updraftcentral"],"updraftcentral_user_cron":["updraftcentral"],"updraftcentral_events":["updraftcentral"],"captcha_booster":["wp-captcha-booster"],"captcha_booster_meta":["wp-captcha-booster"],"captcha_booster_ip_locations":["wp-captcha-booster"],"ed_downloadform":["email-download-link"],"ed_emaillist":["email-download-link"],"ed_pluginconfig":["email-download-link"],"ed_filter":["email-download-link"],"wcsc_error_logs":["wp-cron-status-checker"],"wcsc_logs":["wp-cron-status-checker"],"remove_menu_admin_profiles":["remove-admin-menus-by-role"],"o_daily_sessions":["if-so"],"o_local_user":["if-so"],"ifso_daily_sessions":["if-so"],"ifso_local_user":["if-so"],"pieregister_code":["pie-register"],"pieregister_lockdowns":["pie-register"],"pieregister_redirect_settings":["pie-register"],"pieregister_invite_code_emails":["pie-register"],"pieregister_custom_user_roles":["pie-register"],"awebooking_availability":["awebooking"],"awebooking_booking":["awebooking"],"awebooking_booking_itemmeta":["awebooking"],"awebooking_booking_items":["awebooking"],"awebooking_pricing":["awebooking"],"awebooking_rooms":["awebooking"],"awebooking_relationshipmeta":["awebooking"],"awebooking_relationships":["awebooking"],"awebooking_tax_rates":["awebooking"],"p2p_relationshipmeta":["awebooking"],"p2p_relationships":["awebooking"],"nd_booking_booking":["nd-booking"],"all_in_one_redirection":["all-in-one-redirection"],"lws_wr_historic":["woorewards"],"lws_wr_achieved_log":["woorewards"],"nel_links_stats":["no-external-links"],"nel_mask_links":["no-external-links"],"wpcp_links":["wp-content-pilot"],"wpcp_logs":["wp-content-pilot"],"inserimenti_cf":["lw-contact-form"],"ays_pb":["ays-popup-box"],"ays_pb_settings":["ays-popup-box"],"ays_pb_categories":["ays-popup-box"],"lg_mails":["button-generation"],"lg_tools":["button-generation"],"wow_button_generator":["button-generation"],"pmb_project_sections":["print-my-blog"],"lmfwc_api_keys":["license-manager-for-woocommerce"],"lmfwc_generators":["license-manager-for-woocommerce"],"lmfwc_licenses":["license-manager-for-woocommerce"],"lmfwc_licenses_meta":["license-manager-for-woocommerce"],"spbtbl":["superb-tables"],"wccs_condition_meta":["easy-woocommerce-discounts"],"wccs_conditions":["easy-woocommerce-discounts"],"wfcm_file_events":["website-file-changes-monitor"],"mstore_checkout":["mstore-api"],"kc_us_links":["url-shortify"],"kc_us_clicks":["url-shortify"],"kc_us_groups":["url-shortify"],"kc_us_links_groups":["url-shortify"],"kc_us_domains":["url-shortify"],"wpgly_pix_receipts":["pix-por-piggly"],"microblogposter_accounts":["microblog-poster"],"microblogposter_logs":["microblog-poster"],"microblogposter_old_items":["microblog-poster"],"microblogposter_user_accounts":["microblog-poster"],"microblogposter_items_meta":["microblog-poster"],"spiderfacebook_login":["spider-facebook"],"spiderfacebook_params":["spider-facebook"],"chats_messages":["chats"],"cvg_gallery":["cool-video-gallery"],"cvg_videos":["cool-video-gallery"],"q2w3_inc_manager":["q2w3-inc-manager"],"srb_blacklist":["spamreferrerblock"],"pwebcontact_forms":["pwebcontact"],"pwebcontact_messages":["pwebcontact"],"responsive_thumbnail_slider":["wp-responsive-thumbnail-slider"],"mobilepress":["mobilepress"],"amazoncache":["amazon-product-in-a-post-plugin","app-store-assistant"],"stock_ticker_data":["stock-ticker"],"wppipes_items":["wp-pipes"],"wppipes_pipes":["wp-pipes"],"wpsqt_all_questions":["wp-survey-and-quiz-tool"],"wpsqt_all_results":["wp-survey-and-quiz-tool"],"wpsqt_custom_forms":["wp-survey-and-quiz-tool"],"wpsqt_quiz_state":["wp-survey-and-quiz-tool"],"wpsqt_quiz_surveys":["wp-survey-and-quiz-tool"],"wpsqt_sections":["wp-survey-and-quiz-tool"],"wpsqt_survey_cache_results":["wp-survey-and-quiz-tool"],"wcs3_schedule":["weekly-class-schedule"],"cpabc_appointment_calendars":["appointment-booking-calendar"],"cpabc_appointment_calendars_data":["appointment-booking-calendar"],"cpabc_appointments":["appointment-booking-calendar"],"cpabc_appointments_discount_codes":["appointment-booking-calendar"],"plgwpavp_config":["wp-antivirus-site-protection","wp-antivirus-website-protection-and-firewall"],"easy_captcha_sessions":["easy-captcha"],"twitter_integration":["widget-twitter"],"wpmlautoresponderemails":["newsletters-lite"],"wpmlautoresponders":["newsletters-lite"],"wpmlautoresponderslists":["newsletters-lite"],"wpmlbounces":["newsletters-lite"],"wpmlclicks":["newsletters-lite"],"wpmlcontents":["newsletters-lite"],"wpmlcountries":["newsletters-lite"],"wpmlemails":["newsletters-lite"],"wpmlfields":["newsletters-lite"],"wpmlfieldsforms":["newsletters-lite"],"wpmlfieldslists":["newsletters-lite"],"wpmlforms":["newsletters-lite"],"wpmlgroups":["newsletters-lite"],"wpmlhistoriesattachments":["newsletters-lite"],"wpmlhistorieslists":["newsletters-lite"],"wpmlhistory":["newsletters-lite"],"wpmllatestposts":["newsletters-lite"],"wpmllatestpostssubscriptions":["newsletters-lite"],"wpmllinks":["newsletters-lite"],"wpmlmailinglists":["newsletters-lite"],"wpmloptions":["newsletters-lite"],"wpmlorders":["newsletters-lite"],"wpmlposts":["newsletters-lite"],"wpmlsubscribermetas":["newsletters-lite"],"wpmlsubscribers":["newsletters-lite"],"wpmlsubscriberslists":["newsletters-lite"],"wpmlsubscribersoptions":["newsletters-lite"],"wpmltemplates":["newsletters-lite"],"wpmlthemes":["newsletters-lite"],"wpmlunsubscribes":["newsletters-lite"],"wpmlautorespondersforms":["newsletters-lite"],"tsw_log":["traffic-stats-widget"],"scs_modules":["coming-soon-by-supsystic"],"scs_modules_type":["coming-soon-by-supsystic"],"scs_octo":["coming-soon-by-supsystic"],"scs_octo_blocks":["coming-soon-by-supsystic"],"scs_octo_blocks_categories":["coming-soon-by-supsystic"],"scs_subscribers":["coming-soon-by-supsystic"],"scs_usage_stat":["coming-soon-by-supsystic"],"g_tables":["table-generator"],"a3_exclude_email_subject":["wp-email-template"],"collaboration":["peters-collaboration-e-mails"],"collabrules":["peters-collaboration-e-mails"],"collabwriters":["peters-collaboration-e-mails"],"nwm_custom":["nomad-world-map"],"nwm_routes":["nomad-world-map"],"wpss_answers_30":["wordpress-simple-survey"],"wpss_fields_30":["wordpress-simple-survey"],"wpss_questions_30":["wordpress-simple-survey"],"wpss_quizzes_30":["wordpress-simple-survey"],"wpss_results_30":["wordpress-simple-survey"],"wpss_routes_30":["wordpress-simple-survey"],"post_notification_cats":["post-notification"],"post_notification_posts":["post-notification"],"pp_login_builder":["ppress"],"pp_password_reset_builder":["ppress"],"pp_registration_builder":["ppress"],"collabnotes":["peters-post-notes"],"generalnotes":["peters-post-notes"],"ebay_accounts":["wp-lister-for-ebay"],"ebay_auctions":["wp-lister-for-ebay"],"ebay_categories":["wp-lister-for-ebay"],"ebay_jobs":["wp-lister-for-ebay"],"ebay_log":["wp-lister-for-ebay"],"ebay_messages":["wp-lister-for-ebay"],"ebay_orders":["wp-lister-for-ebay","wp-lister-ebay"],"ebay_payment":["wp-lister-for-ebay"],"ebay_profiles":["wp-lister-for-ebay","wp-lister-ebay"],"ebay_shipping":["wp-lister-for-ebay","wp-lister-ebay"],"ebay_sites":["wp-lister-for-ebay","wp-lister-ebay"],"ebay_store_categories":["wp-lister-for-ebay","wp-lister-ebay"],"ebay_transactions":["wp-lister-for-ebay","wp-lister-ebay"],"ebay_stocks_log":["wp-lister-for-ebay","wp-lister-ebay"],"elp_deliverreport":["email-posts-to-subscribers"],"elp_emaillist":["email-posts-to-subscribers"],"elp_pluginconfig":["email-posts-to-subscribers"],"elp_postnotification":["email-posts-to-subscribers"],"elp_sendsetting":["email-posts-to-subscribers"],"elp_sentdetails":["email-posts-to-subscribers"],"elp_templatetable":["email-posts-to-subscribers"],"elp_blockedemails":["email-posts-to-subscribers"],"elp_squeezeips":["email-posts-to-subscribers"],"bot_block_block_list":["bot-block-stop-spam-google-analytics-referrals"],"bot_block_log":["bot-block-stop-spam-google-analytics-referrals"],"kontakt_fields":["plugin-kontakt"],"kontakt_options":["plugin-kontakt"],"verticalmarquee":["vertical-marquee-plugin"],"td_terms":["terms-descriptions"],"apct_testimonial_detail":["ap-custom-testimonial"],"addactionsandfilters_plugin_usercode":["add-actions-and-filters"],"spiffy_calendar":["spiffy-calendar"],"spiffy_calendar_categories":["spiffy-calendar"],"spiffy_calendar_meta":["spiffy-calendar"],"rcl_chat_messagemeta":["wp-recall"],"rcl_chat_messages":["wp-recall"],"rcl_chat_users":["wp-recall"],"rcl_chats":["wp-recall"],"rcl_feeds":["wp-recall"],"rcl_rating_totals":["wp-recall"],"rcl_rating_users":["wp-recall"],"rcl_rating_values":["wp-recall"],"rcl_user_action":["wp-recall"],"rcl_temp_media":["wp-recall"],"live_weather_station_datas":["live-weather-station"],"live_weather_station_infos":["live-weather-station"],"live_weather_station_log":["live-weather-station"],"live_weather_station_performance_cache":["live-weather-station"],"live_weather_station_performance_cron":["live-weather-station"],"live_weather_station_quota_day":["live-weather-station"],"live_weather_station_quota_year":["live-weather-station"],"live_weather_station_stations":["live-weather-station"],"live_weather_station_datas_day":["live-weather-station"],"live_weather_station_datas_year":["live-weather-station"],"live_weather_station_data_year":["live-weather-station"],"live_weather_station_module_detail":["live-weather-station"],"live_weather_station_background_process":["live-weather-station"],"live_weather_station_medias":["live-weather-station"],"live_weather_station_notifications":["live-weather-station"],"live_weather_station_maps":["live-weather-station"],"ess_social_networks":["easy-social-sharing"],"ess_social_statistics":["easy-social-sharing"],"bigbluebutton":["bigbluebutton","bbb-administration-panel"],"bigbluebutton_logs":["bigbluebutton","bbb-administration-panel"],"t_answers":["wp-testing"],"t_computed_variables":["wp-testing"],"t_field_values":["wp-testing"],"t_fields":["wp-testing"],"t_formulas":["wp-testing"],"t_passing_answers":["wp-testing"],"t_passings":["wp-testing"],"t_questions":["wp-testing"],"t_schema_migrations":["wp-testing"],"t_scores":["wp-testing"],"t_sections":["wp-testing"],"popup_banners":["wp-popup-banners","wp-popup-lite"],"wcpicfi_sessions":["woo-piva-codice-fiscale-e-fattura-pdf-per-italia"],"wpcsplog":["wp-content-security-policy"],"permalinks_customizer_redirects":["permalinks-customizer"],"inf_infusionsoft_stats":["infusionsoft-official-opt-in-forms"],"ajax_chat":["simple-ajax-chat"],"yrw_yelp_business":["widget-yelp-reviews"],"yrw_yelp_review":["widget-yelp-reviews"],"alert_notice_boxes":["alert-notice-boxes"],"hostnet_mailer":["hostnet-mailer"],"comcsv_line_log":["import-woocommerce"],"comcsv_pie_log":["import-woocommerce"],"comsmack_field_types":["import-woocommerce"],"comsmackuci_events":["import-woocommerce"],"comsmackuci_history":["import-woocommerce"],"comwp_ultimate_csv_importer_log_values":["import-woocommerce"],"comwp_ultimate_csv_importer_manageshortcodes":["import-woocommerce"],"comwp_ultimate_csv_importer_mappingtemplate":["import-woocommerce"],"comwp_ultimate_csv_importer_shortcodes_statusrel":["import-woocommerce"],"pl_logins":["wp-persistent-login"],"persistent_logins":["wp-persistent-login"],"wpdev_crm_customers":["booking-manager"],"wpdev_crm_orders":["booking-manager"],"abj404_logsv2":["404-solution"],"abj404_redirects":["404-solution"],"abj404_lookup":["404-solution"],"abj404_permalink_cache":["404-solution"],"abj404_spelling_cache":["404-solution"],"nd_donations_donations":["nd-donations"],"qcld_slider_hero_sliders":["slider-hero"],"qcld_slider_hero_slides":["slider-hero"],"bookacti_activities":["booking-activities"],"bookacti_bookings":["booking-activities"],"bookacti_events":["booking-activities"],"bookacti_exceptions":["booking-activities"],"bookacti_meta":["booking-activities"],"bookacti_permissions":["booking-activities"],"bookacti_templates":["booking-activities"],"bookacti_templates_activities":["booking-activities"],"bookacti_booking_groups":["booking-activities"],"bookacti_event_groups":["booking-activities"],"bookacti_group_categories":["booking-activities"],"bookacti_groups_events":["booking-activities"],"bookacti_form_fields":["booking-activities"],"bookacti_forms":["booking-activities"],"bookacti_exports":["booking-activities"],"xo_security_loginlog":["xo-security"],"sb2_404":["seo-booster"],"sb2_bl":["seo-booster"],"sb2_crawl":["seo-booster"],"sb2_kw":["seo-booster"],"sb2_kwdt":["seo-booster"],"sb2_log":["seo-booster"],"sb2_urls":["seo-booster"],"sb2_urls_meta":["seo-booster"],"sb2_autolink":["seo-booster"],"r_smackuci_events":["import-users"],"r_smackuci_history":["import-users"],"r_wp_ultimate_csv_importer_log_values":["import-users"],"r_wp_ultimate_csv_importer_manageshortcodes":["import-users"],"r_wp_ultimate_csv_importer_shortcodes_statusrel":["import-users"],"wpinv_subscriptions":["invoicing"],"getpaid_invoice_items":["invoicing"],"getpaid_invoices":["invoicing"],"ada_compliance_basic":["wp-ada-compliance-check-basic"],"wp_ada_compliance_basic":["wp-ada-compliance-check-basic"],"_contactformrelation":["zoho-crm-forms"],"_zohocrm_assignmentrule":["zoho-crm-forms"],"_zohocrm_formfield_manager":["zoho-crm-forms"],"_zohocrm_list_module":["zoho-crm-forms"],"_zohocrmform_field_manager":["zoho-crm-forms"],"_zohoshortcode_manager":["zoho-crm-forms"],"_submitlogs":["zoho-crm-forms"],"bmc_plugin":["buymeacoffee"],"bmc_widget_plugin":["buymeacoffee"],"mnet_ads_manager_session":["media-net-ads-manager"],"mnet_ads_manager_tag_position":["media-net-ads-manager"],"mnet_ads_manager_tags":["media-net-ads-manager"],"mnet_ads_manager_temp":["media-net-ads-manager"],"mnet_ad_paragraph_mapping":["media-net-ads-manager"],"mnet_ad_post_mapping":["media-net-ads-manager"],"mnet_ad_slots":["media-net-ads-manager"],"mnet_ad_tags":["media-net-ads-manager"],"mnet_log_retry":["media-net-ads-manager"],"mnet_blocked_urls":["media-net-ads-manager"],"mnet_slot_blocked_urls":["media-net-ads-manager"],"mnet_external_ad":["media-net-ads-manager"],"plugin_notes_plus":["plugin-notes-plus"],"za_categories_to_groups":["product-add-ons-woocommerce"],"za_groups":["product-add-ons-woocommerce"],"za_products_to_groups":["product-add-ons-woocommerce"],"za_types":["product-add-ons-woocommerce"],"za_values":["product-add-ons-woocommerce"],"za_add_ons":["product-add-ons-woocommerce"],"za_headers":["product-add-ons-woocommerce"],"wps_collections_custom":["wpshopify"],"wps_collections_smart":["wpshopify"],"wps_collects":["wpshopify"],"wps_images":["wpshopify"],"wps_options":["wpshopify"],"wps_settings_connection":["wpshopify"],"wps_settings_general":["wpshopify"],"wps_settings_license":["wpshopify"],"wps_shop":["wpshopify"],"wps_tags":["wpshopify"],"wps_variants":["wpshopify"],"wps_products":["wpshopify"],"wps_settings_syncing":["wpshopify"],"spbcta":["coupon-reveal-button"],"wcu_modules":["woo-currency"],"wcu_modules_type":["woo-currency"],"wcu_usage_stat":["woo-currency"],"wtbp_columns":["woo-currency","woo-product-tables"],"wtbp_modules":["woo-currency","woo-product-tables"],"wtbp_modules_type":["woo-currency","woo-product-tables"],"wtbp_tables":["woo-currency","woo-product-tables"],"wtbp_usage_stat":["woo-currency","woo-product-tables"],"comment_likes":["anycomment"],"comment_uploaded_files":["anycomment"],"anycomment_email_queue":["anycomment"],"anycomment_likes":["anycomment"],"anycomment_uploaded_files":["anycomment"],"anycomment_rating":["anycomment"],"anycomment_subscriptions":["anycomment"],"rtcl_sessions":["classified-listing"],"rtcl_conversation_messages":["classified-listing"],"rtcl_conversations":["classified-listing"],"vision":["vision"],"cleverreach_config":["cleverreach-wp"],"cleverreach_process":["cleverreach-wp"],"cleverreach_queue":["cleverreach-wp"],"cleverreach_entity":["cleverreach-wp"],"noptin_subscribers":["newsletter-optin-box"],"noptin_subscriber_meta":["newsletter-optin-box"],"noptin_automation_rules":["newsletter-optin-box"],"ulisting_attribute":["ulisting"],"ulisting_attribute_relationsh_meta":["ulisting"],"ulisting_attribute_term_relationships":["ulisting"],"ulisting_listing_attribute_relationships":["ulisting"],"ulisting_listing_plan":["ulisting"],"ulisting_listing_type_relationships":["ulisting"],"ulisting_listing_user_relations":["ulisting"],"ulisting_payment":["ulisting"],"ulisting_payment_meta":["ulisting"],"ulisting_user_plan":["ulisting"],"ulisting_user_plan_meta":["ulisting"],"ulisting_page_statistics":["ulisting"],"ulisting_page_statistics_meta":["ulisting"],"ulisting_search":["ulisting"],"spiderdisplay":["spiderdisplay"],"realbig_plugin_settings":["realbig-media"],"realbig_settings":["realbig-media"],"realbig_turbo_ads":["realbig-media"],"lbig_plugin_settings":["realbig-media"],"lbig_settings":["realbig-media"],"lbig_turbo_ads":["realbig-media"],"realbig_amp_ads":["realbig-media"],"wpbe_history":["bulk-editor"],"wpbe_history_bulk":["bulk-editor"],"mainwp_wpvivid":["wpvivid-backup-mainwp"],"mainwp_wpvivid_global":["wpvivid-backup-mainwp"],"mainwp_wpvivid_global_options":["wpvivid-backup-mainwp"],"mainwp_wpvividmeta":["wpvivid-backup-mainwp"],"wprus_logs":["wp-remote-users-sync"],"wprus_nonce":["wp-remote-users-sync"],"automatorwp_actions":["automatorwp"],"automatorwp_actions_meta":["automatorwp"],"automatorwp_automations":["automatorwp"],"automatorwp_automations_meta":["automatorwp"],"automatorwp_logs":["automatorwp"],"automatorwp_logs_meta":["automatorwp"],"automatorwp_triggers":["automatorwp"],"automatorwp_triggers_meta":["automatorwp"],"city":["country-state-city-auto-dropdown"],"bfb_access_log":["blog-floating-button"],"bfb_click_log":["blog-floating-button"],"bfb_optimizemeta":["blog-floating-button"],"etn_events":["wp-event-solution"],"etn_trans_meta":["wp-event-solution"],"vi_wbe_history":["bulky-bulk-edit-products-for-woo"],"table_statistics":["cystats"],"table_statistics_raw":["cystats"],"custom_options_plus":["custom-options-plus"],"geo_mashup_administrative_names":["geo-mashup"],"geo_mashup_location_relationships":["geo-mashup"],"geo_mashup_locations":["geo-mashup"],"jigoshop_attribute_taxonomies":["jigoshop"],"jigoshop_downloadable_product_permissions":["jigoshop"],"jigoshop_termmeta":["jigoshop"],"wtc_log":["traffic-counter-widget"],"cn_track_post":["post-views-stats"],"automaticseolinks":["automatic-seo-links"],"automaticseolinksstats":["automatic-seo-links"],"tweetblender":["tweet-blender"],"wdpslayer":["post-slider-wd"],"wdpsslide":["post-slider-wd"],"wdpsslider":["post-slider-wd"],"mp_product_attributes":["wordpress-ecommerce"],"mp_product_attributes_terms":["wordpress-ecommerce"],"cfg_fields":["contact-form-generator"],"cfg_forms":["contact-form-generator"],"cfg_field_types":["contact-form-generator"],"cfg_form_options":["contact-form-generator"],"cfg_templates":["contact-form-generator"],"reservations":["easyreservations"],"reservationmeta":["easyreservations"],"receipt_itemmeta":["easyreservations"],"receipt_items":["easyreservations"],"reservations_sessions":["easyreservations"],"cp_contact_form_paypal_discount_codes":["cp-contact-form-with-paypal"],"cp_contact_form_paypal_posts":["cp-contact-form-with-paypal"],"cp_contact_form_paypal_settings":["cp-contact-form-with-paypal"],"big_contacts":["bigcontact"],"big_contacts_emails":["bigcontact"],"big_contacts_phones":["bigcontact"],"big_contacts_settings":["bigcontact"],"ipblc_blacklist":["ip-blacklist-cloud"],"ipblc_login_failed":["ip-blacklist-cloud"],"ipblc_usernames":["ip-blacklist-cloud"],"ft_http_requests":["fetch-tweets"],"smart_donations_campaign_table":["smart-donations"],"smart_donations_donation_item":["smart-donations"],"smart_donations_progress_table":["smart-donations"],"smart_donations_transaction_table":["smart-donations"],"stt2_meta":["recent-search-terms"],"plugin_slickquiz":["slickquiz"],"plugin_slickquiz_scores":["slickquiz"],"orgseriesicons":["organize-series"],"amr_reportcache":["amr-users"],"amr_reportcachelogging":["amr-users"],"mtouchquiz_answer":["mtouch-quiz"],"mtouchquiz_question":["mtouch-quiz"],"mtouchquiz_quiz":["mtouch-quiz"],"mtouchquiz_ratings":["mtouch-quiz"],"wp_topbar_data":["wp-topbar"],"nl_subscriptions":["email-subscribe"],"emailsub_addresses":["email-subscription"],"emailsub_spool":["email-subscription"],"hms_testimonials":["hms-testimonials"],"hms_testimonials_cf":["hms-testimonials"],"hms_testimonials_cf_meta":["hms-testimonials"],"hms_testimonials_group_meta":["hms-testimonials"],"hms_testimonials_groups":["hms-testimonials"],"hms_testimonials_templates":["hms-testimonials"],"afp_categories":["awesome-filterable-portfolio"],"afp_items":["awesome-filterable-portfolio"],"wpns_blocked_ips":["miniorange-limit-login-attempts","wp-security-pro","miniorange-malware-protection"],"wpns_email_sent_audit":["miniorange-limit-login-attempts","wp-security-pro","miniorange-malware-protection"],"wpns_transactions":["miniorange-limit-login-attempts","wp-security-pro","miniorange-malware-protection"],"wpns_whitelisted_ips":["miniorange-limit-login-attempts","wp-security-pro","miniorange-malware-protection"],"bbpp_thankmelater_messages":["thank-me-later"],"bbpp_thankmelater_opens":["thank-me-later"],"bbpp_thankmelater_opt_outs":["thank-me-later"],"bbpp_thankmelater_schedules":["thank-me-later"],"popupwith_fancybox":["popup-with-fancybox"],"popularitypostswidget":["popularity-posts-widget"],"popularitypostswidgetcache":["popularity-posts-widget"],"lionscripts_ip_address_blocker":["ip-address-blocker"],"ap_appointments":["appointment-calendar"],"ap_events":["appointment-calendar"],"ap_service_category":["appointment-calendar"],"ap_services":["appointment-calendar"],"wpal_automatches":["wp-affiliate-links"],"wpal_destinations":["wp-affiliate-links"],"wpal_geoipcountry":["wp-affiliate-links"],"wpal_keywords":["wp-affiliate-links"],"wpal_links":["wp-affiliate-links"],"wpal_rules":["wp-affiliate-links"],"wpal_stats":["wp-affiliate-links"],"oqey_gallery":["oqey-gallery"],"oqey_images":["oqey-gallery"],"oqey_music":["oqey-gallery"],"oqey_music_rel":["oqey-gallery"],"oqey_skins":["oqey-gallery"],"oqey_video":["oqey-gallery"],"mr_rating_item":["multi-rating"],"mr_rating_item_entry":["multi-rating"],"mr_rating_item_entry_value":["multi-rating"],"mr_rating_subject":["multi-rating"],"customback":["custom-post-background"],"ppprotect":["pilotpress"],"dprv_licenses":["digiproveblog"],"dprv_log":["digiproveblog"],"dprv_post_content_files":["digiproveblog"],"dprv_posts":["digiproveblog"],"sp_cu":["sp-client-document-manager"],"sp_cu_cats":["sp-client-document-manager"],"sp_cu_event_log":["sp-client-document-manager"],"sp_cu_form_entries":["sp-client-document-manager"],"sp_cu_forms":["sp-client-document-manager"],"sp_cu_groups":["sp-client-document-manager"],"sp_cu_groups_assign":["sp-client-document-manager"],"sp_cu_meta":["sp-client-document-manager"],"sp_cu_project":["sp-client-document-manager"],"crfp_fields":["comment-rating-field-plugin"],"crfp_groups":["comment-rating-field-plugin"],"jzzf_element":["jazzy-forms"],"jzzf_email":["jazzy-forms"],"jzzf_form":["jazzy-forms"],"jzzf_option":["jazzy-forms"],"wpie_export_log":["woo-import-export-lite"],"simpleviews":["simple-post-views-counter","juicedmetrics"],"lrsync":["wplr-sync"],"lrsync_collections":["wplr-sync"],"lrsync_meta":["wplr-sync"],"lrsync_relations":["wplr-sync"],"op_user_templates":["tx-onepager"],"doifd_lab_downloads":["double-opt-in-for-download"],"doifd_lab_forms":["double-opt-in-for-download"],"doifd_lab_subscribers":["double-opt-in-for-download"],"pl_data_maps":["pl-platform"],"pl_data_sections":["pl-platform"],"backlinks":["incoming-links"],"backlinks_block_domain":["incoming-links"],"backlinks_block_ip":["incoming-links"],"backlinks_cron":["incoming-links"],"gdrts_itemmeta":["gd-rating-system"],"gdrts_items":["gd-rating-system"],"gdrts_logmeta":["gd-rating-system"],"gdrts_logs":["gd-rating-system"],"gdrts_cache":["gd-rating-system"],"gdrts_items_basic":["gd-rating-system"],"nls_subscribers":["newsletter-subscription-form"],"js_ticket_attachments":["js-support-ticket"],"js_ticket_config":["js-support-ticket"],"js_ticket_departments":["js-support-ticket"],"js_ticket_email":["js-support-ticket"],"js_ticket_emailtemplates":["js-support-ticket"],"js_ticket_fieldsordering":["js-support-ticket"],"js_ticket_priorities":["js-support-ticket"],"js_ticket_replies":["js-support-ticket"],"js_ticket_system_errors":["js-support-ticket"],"js_ticket_tickets":["js-support-ticket"],"js_ticket_erasedatarequests":["js-support-ticket"],"js_ticket_jshdsessiondata":["js-support-ticket"],"js_ticket_users":["js-support-ticket"],"js_ticket_slug":["js-support-ticket"],"wcp_useroptions":["wcp-openweather"],"revisr":["revisr"],"bbse_popup":["bbs-e-popup"],"bbse_popup_agent":["bbs-e-popup"],"sidemenu":["side-menu","mwp-side-menu"],"wpio_images":["imagerecycle-pdf-image-compression"],"wpio_listimages":["imagerecycle-pdf-image-compression"],"wpio_queue":["imagerecycle-pdf-image-compression"],"bws_country":["visitors-online"],"vstrsnln_detailing":["visitors-online"],"vstrsnln_general":["visitors-online"],"bws_list_countries":["visitors-online"],"bws_list_ip":["visitors-online"],"wpls":["wp-live-statistics"],"wpls_online":["wp-live-statistics"],"e_portfolio":["responsive-filterable-portfolio"],"oauth_access_tokens":["oauth2-provider","freshdesk-support","wpdrift-io-worker"],"oauth_authorization_codes":["oauth2-provider","freshdesk-support","wpdrift-io-worker"],"oauth_clients":["oauth2-provider"],"oauth_refresh_tokens":["oauth2-provider","freshdesk-support","wpdrift-io-worker"],"oauth_scopes":["oauth2-provider","freshdesk-support","wpdrift-io-worker"],"oauth_jwt":["oauth2-provider","freshdesk-support","wpdrift-io-worker"],"oauth_public_keys":["oauth2-provider","freshdesk-support","wpdrift-io-worker"],"sfbap_subscribers_lists":["wp-subscribe-form"],"sfbap_subscription_lists":["wp-subscribe-form"],"sfba_subscribers_lists":["wp-subscribe-form"],"sfba_subscription_lists":["wp-subscribe-form"],"name_directory":["name-directory"],"name_directory_name":["name-directory"],"th_buttons":["thrivehive"],"th_forms":["thrivehive"],"th_snippets":["thrivehive"],"th_theme_options":["thrivehive"],"th_wysiwyg_buttons":["thrivehive"],"apt_appearence":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"apt_appointments":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"apt_category":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"apt_clients":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"apt_coupons":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"apt_holidays":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"apt_payment":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"apt_services":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"apt_settings":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"apt_staff":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"mistape_reports":["mistape"],"spellcheck_dictionary":["wp-spell-check"],"spellcheck_empty":["wp-spell-check"],"spellcheck_ignore":["wp-spell-check"],"spellcheck_options":["wp-spell-check"],"spellcheck_words":["wp-spell-check"],"spellcheck_grammar":["wp-spell-check"],"spellcheck_grammar_options":["wp-spell-check"],"spellcheck_html":["wp-spell-check"],"spellcheck_errors":["wp-spell-check"],"spellcheck_error_catch":["wp-spell-check"],"page_generator_keywords":["page-generator"],"totalsoft_portfolio_albums":["gallery-portfolio"],"totalsoft_portfolio_cpopup":["gallery-portfolio"],"totalsoft_portfolio_dbt":["gallery-portfolio"],"totalsoft_portfolio_elgrid":["gallery-portfolio"],"totalsoft_portfolio_filgrid":["gallery-portfolio"],"totalsoft_portfolio_gaanim":["gallery-portfolio"],"totalsoft_portfolio_id":["gallery-portfolio"],"totalsoft_portfolio_images":["gallery-portfolio"],"totalsoft_portfolio_manager":["gallery-portfolio"],"totalsoft_portfolio_settings":["gallery-portfolio"],"totalsoft_portfolio_slport":["gallery-portfolio"],"totalsoft_portfolio_phe":["gallery-portfolio"],"totalsoft_portfolio_check":["gallery-portfolio"],"totalsoft_portfolio_dbt_1":["gallery-portfolio"],"totalsoft_portfolio_dbt_2":["gallery-portfolio"],"totalsoft_portfolio_dbt_3":["gallery-portfolio"],"totalsoft_portfolio_dbt_4":["gallery-portfolio"],"spectrom_sync":["wpsitesynccontent"],"spectrom_sync_log":["wpsitesynccontent"],"spectrom_sync_media":["wpsitesynccontent"],"spectrom_sync_sources":["wpsitesynccontent"],"webwinkelkeur_invite_error":["webwinkelkeur"],"podlovesubscribebutton_button":["podlove-subscribe-button"],"chained_choices":["chained-quiz"],"chained_completed":["chained-quiz"],"chained_questions":["chained-quiz"],"chained_quizzes":["chained-quiz"],"chained_results":["chained-quiz"],"chained_user_answers":["chained-quiz"],"chained_mail_relations":["chained-quiz"],"egoi_map_fields":["smart-marketing-for-wp"],"egoi_form_subscribers":["smart-marketing-for-wp"],"dfrcs_compsets":["datafeedr-comparison-sets"],"_appointments":["webba-booking-lite"],"_days_on_off":["webba-booking-lite"],"_email_templates":["webba-booking-lite"],"_locked_time_slots":["webba-booking-lite"],"_service_categories":["webba-booking-lite"],"_services":["webba-booking-lite"],"_gg_calendars":["webba-booking-lite"],"_coupons":["webba-booking-lite","photo-video-store"],"_cancelled_appointments":["webba-booking-lite"],"_pricing_rules":["webba-booking-lite"],"wbk_appointments":["webba-booking-lite"],"wbk_cancelled_appointments":["webba-booking-lite"],"wbk_coupons":["webba-booking-lite"],"wbk_days_on_off":["webba-booking-lite"],"wbk_email_templates":["webba-booking-lite"],"wbk_gg_calendars":["webba-booking-lite"],"wbk_locked_time_slots":["webba-booking-lite"],"wbk_pricing_rules":["webba-booking-lite"],"wbk_service_categories":["webba-booking-lite"],"wbk_services":["webba-booking-lite"],"gspin_shortcodes":["gs-pinterest-portfolio"],"rfmp_customers":["mollie-forms"],"rfmp_payments":["mollie-forms"],"rfmp_registration_fields":["mollie-forms"],"rfmp_registrations":["mollie-forms"],"rfmp_subscriptions":["mollie-forms"],"mollie_forms_customers":["mollie-forms"],"mollie_forms_payments":["mollie-forms"],"mollie_forms_price_options":["mollie-forms"],"mollie_forms_registration_fields":["mollie-forms"],"mollie_forms_registration_price_options":["mollie-forms"],"mollie_forms_registrations":["mollie-forms"],"mollie_forms_subscriptions":["mollie-forms"],"mollie_forms_discount_codes":["mollie-forms"],"asq_answers":["ari-stream-quiz"],"asq_questions":["ari-stream-quiz"],"asq_quizzes":["ari-stream-quiz"],"asq_result_templates":["ari-stream-quiz"],"moove_activity_log":["user-activity-tracking-and-log"],"twofas_light_authentications":["2fas-light"],"twofas_light_migrations":["2fas-light"],"twofas_light_session_variables":["2fas-light"],"twofas_light_sessions":["2fas-light"],"twofas_light_trusted_devices":["2fas-light"],"rich_web_font_family":["tabbed","form-forms"],"rich_web_icons":["tabbed","rich-event-timeline"],"rich_web_tabs_effect_1":["tabbed"],"rich_web_tabs_effects_data":["tabbed"],"rich_web_tabs_fields":["tabbed"],"rich_web_tabs_id":["tabbed"],"rich_web_tabs_manager":["tabbed"],"rich_web_tabs_effect_2":["tabbed"],"rich_web_tabs_font_family":["tabbed"],"rich_web_tabs_icons":["tabbed"],"rich_web_tabs_manager_data":["tabbed"],"rich_web_tabs_themes_data":["tabbed"],"hotelier_bookings":["wp-hotelier"],"hotelier_reservation_itemmeta":["wp-hotelier"],"hotelier_reservation_items":["wp-hotelier"],"hotelier_rooms_bookings":["wp-hotelier"],"hotelier_sessions":["wp-hotelier"],"gd_lightbox_settings":["responsive-lightbox-popup"],"ffi_cache":["insta-flow"],"ffi_comments":["insta-flow"],"ffi_image_cache":["insta-flow"],"ffi_options":["insta-flow"],"ffi_post_media":["insta-flow"],"ffi_posts":["insta-flow"],"ffi_snapshots":["insta-flow"],"ffi_streams":["insta-flow"],"ffi_streams_sources":["insta-flow"],"bounced_email_logs":["bounce-handler-mailpoet"],"wdseo_redirects":["seo-by-10web"],"e_fw_slider":["full-width-responsive-slider-wp"],"commentmeta_geo":["wp-mapbox-gl-js","wp-geometa"],"postmeta_geo":["wp-mapbox-gl-js","wp-geometa"],"termmeta_geo":["wp-mapbox-gl-js","wp-geometa"],"usermeta_geo":["wp-mapbox-gl-js","wp-geometa"],"rconvert-subscriptions":["rock-convert"],"vikbooking_adultsdiff":["vikbooking"],"vikbooking_busy":["vikbooking"],"vikbooking_categories":["vikbooking"],"vikbooking_characteristics":["vikbooking"],"vikbooking_config":["vikbooking"],"vikbooking_countries":["vikbooking"],"vikbooking_coupons":["vikbooking"],"vikbooking_cronjobs":["vikbooking"],"vikbooking_custfields":["vikbooking"],"vikbooking_customers":["vikbooking"],"vikbooking_customers_orders":["vikbooking"],"vikbooking_dispcost":["vikbooking"],"vikbooking_gpayments":["vikbooking"],"vikbooking_invoices":["vikbooking"],"vikbooking_iva":["vikbooking"],"vikbooking_optionals":["vikbooking"],"vikbooking_orderhistory":["vikbooking"],"vikbooking_orders":["vikbooking"],"vikbooking_ordersbusy":["vikbooking"],"vikbooking_ordersrooms":["vikbooking"],"vikbooking_packages":["vikbooking"],"vikbooking_packages_rooms":["vikbooking"],"vikbooking_prices":["vikbooking"],"vikbooking_receipts":["vikbooking"],"vikbooking_restrictions":["vikbooking"],"vikbooking_rooms":["vikbooking"],"vikbooking_seasons":["vikbooking"],"vikbooking_texts":["vikbooking"],"vikbooking_tmplock":["vikbooking"],"vikbooking_translations":["vikbooking"],"vikbooking_wpshortcodes":["vikbooking"],"vikbooking_einvoicing_config":["vikbooking"],"vikbooking_einvoicing_data":["vikbooking"],"vikbooking_operators":["vikbooking"],"vikbooking_tracking_infos":["vikbooking"],"vikbooking_trackings":["vikbooking"],"vikbooking_fests_dates":["vikbooking"],"vikbooking_calendars_xref":["vikbooking"],"vikbooking_greview_service":["vikbooking"],"vikbooking_critical_dates":["vikbooking"],"vikbooking_condtexts":["vikbooking"],"vikbooking_reminders":["vikbooking"],"wtbp_favorites":["woo-product-tables"],"wpsynchro_file_population_list":["wpsynchro"],"wpsynchro_sync_list":["wpsynchro"],"omnisend_logs":["omnisend-connect"],"sb_books":["sermon-browser"],"sb_books_sermons":["sermon-browser"],"sb_preachers":["sermon-browser"],"sb_series":["sermon-browser"],"sb_sermons":["sermon-browser"],"sb_sermons_tags":["sermon-browser"],"sb_services":["sermon-browser"],"sb_stuff":["sermon-browser"],"sb_tags":["sermon-browser"],"wpwbot_index":["chatbot"],"wpbot_sessions":["chatbot","knowledgebase-helpdesk"],"wpbot_response":["chatbot","knowledgebase-helpdesk"],"wpbot_response_category":["chatbot"],"rpress_customermeta":["restropress"],"rpress_customers":["restropress"],"rpress_order_notification":["restropress"],"wpf_logging":["wp-fusion-lite"],"vxcf_zoho":["cf7-zoho"],"vxcf_zoho_accounts":["cf7-zoho"],"vxcf_zoho_log":["cf7-zoho"],"ayspoll_answers":["poll-maker"],"ayspoll_categories":["poll-maker"],"ayspoll_polls":["poll-maker"],"ayspoll_reports":["poll-maker"],"ayspoll_settings":["poll-maker"],"robomarket_orders":["robokassa","robokassa-subscriptions"],"sms_stats":["robokassa","robokassa-subscriptions"],"wow_side_menu_pro":["side-menu-lite"],"visitors_stat":["wp-visitors-widget"],"masvideos_attribute_taxonomies":["masvideos"],"wcrw_request_notes":["wc-return-warrranty"],"wcrw_request_product_map":["wc-return-warrranty"],"wcrw_warranty_requests":["wc-return-warrranty"],"wdp_fundraising":["wp-fundraising-donation"],"wdp_fundraising_meta":["wp-fundraising-donation"],"wpsr_reviews":["wp-social-reviews"],"wpsr_caches":["wp-social-reviews"],"moblc_link_details_table":["broken-link-finder"],"moblc_scan_status_table":["broken-link-finder"],"export_page_to_html_logs":["export-wp-page-to-static-html"],"export_urls_logs":["export-wp-page-to-static-html"],"woot_tables":["profit-products-tables-for-woocommerce"],"woot_tables_columns":["profit-products-tables-for-woocommerce"],"woot_tables_meta":["profit-products-tables-for-woocommerce"],"woot_vocabulary":["profit-products-tables-for-woocommerce"],"patchstack_event_log":["patchstack"],"patchstack_firewall_log":["patchstack"],"patchstack_logic":["patchstack"],"word_replacer":["word-replacer"],"ps_exclude":["woocommerce-predictive-search"],"ps_postmeta":["woocommerce-predictive-search"],"ps_posts":["woocommerce-predictive-search"],"ps_product_sku":["woocommerce-predictive-search"],"pluginsl_shorturl":["shorten-url"],"atap_logs":["accesspress-twitter-auto-post"],"rcsm_subscribers":["responsive-coming-soon-page"],"sndr_mail_users_info":["subscriber","sender"],"comments_fbseo":["seo-facebook-comments"],"wpga_apps_access_log":["wp-google-authenticator"],"wpga_recovery_keys":["wp-google-authenticator"],"hl_twitter_replies":["hl-twitter"],"hl_twitter_tweets":["hl-twitter"],"hl_twitter_users":["hl-twitter"],"wpi_object_log":["wp-invoice"],"accua_forms_submissions":["contact-forms"],"accua_forms_submissions_values":["contact-forms"],"wsi_config":["wsi"],"wsi_splashimage":["wsi"],"followme_links":["follow-me"],"who_is_online":["who-is-online"],"stoutgc":["stout-google-calendar"],"wr_contactform_fields":["wr-contactform"],"wr_contactform_form_pages":["wr-contactform"],"wr_contactform_submission_data":["wr-contactform"],"post_right_content":["spider-faq"],"spider_faq_category":["spider-faq"],"spider_faq_faq":["spider-faq"],"spider_faq_question":["spider-faq"],"spider_faq_theme":["spider-faq"],"mdp_reviews":["mdp-local-business-seo"],"hdwplayer":["hdw-player-video-player-video-gallery"],"hdwplayer_gallery":["hdw-player-video-player-video-gallery"],"hdwplayer_playlist":["hdw-player-video-player-video-gallery"],"hdwplayer_videos":["hdw-player-video-player-video-gallery"],"robo_maps":["robo-maps"],"shopp_address":["shopp"],"shopp_asset":["shopp"],"shopp_customer":["shopp"],"shopp_index":["shopp"],"shopp_meta":["shopp"],"shopp_price":["shopp"],"shopp_promo":["shopp"],"shopp_purchase":["shopp"],"shopp_purchased":["shopp"],"shopp_shopping":["shopp"],"shopp_summary":["shopp"],"camera":["camera-slideshow"],"dc_mv_calendars":["cp-multi-view-calendar"],"dc_mv_configuration":["cp-multi-view-calendar"],"dc_mv_events":["cp-multi-view-calendar"],"dc_mv_views":["cp-multi-view-calendar"],"crm_log":["wp-crm"],"crm_log_meta":["wp-crm"],"pluginsl_traffic_manager":["traffic-manager"],"whtp_hitinfo":["who-hit-the-page-hit-counter"],"whtp_hits":["who-hit-the-page-hit-counter"],"whtp_ip2location":["who-hit-the-page-hit-counter"],"whtp_ip_hits":["who-hit-the-page-hit-counter"],"whtp_user_agents":["who-hit-the-page-hit-counter"],"whtp_visiting_countries":["who-hit-the-page-hit-counter"],"p_hitinfo":["who-hit-the-page-hit-counter"],"p_hits":["who-hit-the-page-hit-counter"],"p_ip2location":["who-hit-the-page-hit-counter"],"p_ip_hits":["who-hit-the-page-hit-counter"],"p_user_agents":["who-hit-the-page-hit-counter"],"p_visiting_countries":["who-hit-the-page-hit-counter"],"smart_maintenance_mode":["smart-maintenance-mode"],"easy2map_map_points":["easy2map"],"easy2map_maps":["easy2map"],"easy2map_pin_templates":["easy2map"],"easy2map_templates":["easy2map"],"easy2map_themes":["easy2map"],"qwall_monitor":["querywall"],"taxonomyfield":["ultimate-taxonomy-manager"],"activity":["wp-activity"],"gv_responsive_slider":["wp-responsive-photo-gallery"],"rjg_gallery":["wp-responsive-photo-gallery"],"cp_feeds":["purple-xmls-google-product-feed-for-woocommerce"],"cpf_custom_products":["purple-xmls-google-product-feed-for-woocommerce"],"cpf_feedproducts":["purple-xmls-google-product-feed-for-woocommerce"],"cpf_resolved_product_data":["purple-xmls-google-product-feed-for-woocommerce"],"cpf_customfeeds":["purple-xmls-google-product-feed-for-woocommerce"],"leaguemanager_leagues":["leaguemanager"],"leaguemanager_matches":["leaguemanager"],"leaguemanager_teams":["leaguemanager"],"wblm":["broken-link-manager"],"wblm_log":["broken-link-manager"],"ceceppa_ml":["ceceppa-multilingua"],"ceceppa_ml_cats":["ceceppa-multilingua"],"ceceppa_ml_relations":["ceceppa-multilingua"],"ceceppa_ml_trans":["ceceppa-multilingua"],"bup_bookings":["booking-ultra-pro"],"bup_bookings_meta":["booking-ultra-pro"],"bup_carts":["booking-ultra-pro"],"bup_categories":["booking-ultra-pro"],"bup_filter_staff":["booking-ultra-pro"],"bup_filters":["booking-ultra-pro"],"bup_orders":["booking-ultra-pro"],"bup_service_rates":["booking-ultra-pro"],"bup_service_variable_pricing":["booking-ultra-pro"],"bup_services":["booking-ultra-pro"],"bup_staff_availability":["booking-ultra-pro"],"bup_staff_availability_breaks":["booking-ultra-pro"],"yendif_player_media":["yendif-player"],"yendif_player_playlists":["yendif-player"],"yendif_player_settings":["yendif-player"],"openid_identities":["openid"],"eg_attachments_clicks":["eg-attachments"],"postview":["wp-post-view","yg-popular","anppopular-post"],"az_indexes":["azindex"],"sections":["my-posts-order"],"errors_404_logs":["404-error-monitor"],"tpcmem_checkpoints":["tpc-memory-usage","tpc-memory-usage-updated"],"tpcmem_log":["tpc-memory-usage","tpc-memory-usage-updated"],"gd_manager":["wp-google-drive"],"q2w3_post_order":["q2w3-post-order"],"shashin_album":["shashin"],"shashin_photo":["shashin"],"stray_quotes":["stray-quotes","xv-random-quotes"],"chat_log":["chat"],"chat_message":["chat"],"totalsoft_cal_1":["calendar-event"],"totalsoft_cal_2":["calendar-event"],"totalsoft_cal_3":["calendar-event"],"totalsoft_cal_events":["calendar-event"],"totalsoft_cal_events_p2":["calendar-event"],"totalsoft_cal_ids":["calendar-event"],"totalsoft_cal_part":["calendar-event"],"totalsoft_cal_types":["calendar-event"],"totalsoft_cal_4":["calendar-event"],"totalsoft_cal_check":["calendar-event"],"totalsoft_cal_events_p3":["calendar-event"],"totalsoft_cal_p1":["calendar-event"],"totalsoft_cal_p2":["calendar-event"],"totalsoft_cal_p3":["calendar-event"],"totalsoft_cal_p4":["calendar-event"],"totalsoft_cal_part1":["calendar-event"],"ig_caticons":["category-icons"],"vw_lsrooms":["videowhisper-live-streaming-integration"],"vw_lwsessions":["videowhisper-live-streaming-integration"],"vw_sessions":["videowhisper-live-streaming-integration"],"vw_vwls_chatlog":["videowhisper-live-streaming-integration"],"termsmeta":["wp-category-meta","wp-custom-taxonomy-meta","custom-taxonomy-category-and-term-fields"],"wdm_bidders":["ultimate-auction"],"bc_random_banner":["random-banner"],"bc_random_banner_category":["random-banner"],"bc_random_banner_options":["random-banner"],"satl_galleries":["slideshow-satellite"],"satl_slides":["slideshow-satellite"],"qb_bars":["quickiebar"],"qb_conversions":["quickiebar"],"qb_views":["quickiebar"],"wprmm_categories":["easy-restaurant-menu-manager"],"wprmm_icons":["easy-restaurant-menu-manager"],"wprmm_items":["easy-restaurant-menu-manager"],"wprmm_menus":["easy-restaurant-menu-manager"],"wpportfolio_custom_fields":["wp-portfolio"],"wpportfolio_debuglog":["wp-portfolio"],"wpportfolio_groups":["wp-portfolio"],"wpportfolio_groups_websites":["wp-portfolio"],"wpportfolio_websites":["wp-portfolio"],"wpportfolio_websites_meta":["wp-portfolio"],"gcf":["simple-contact-form"],"draftsforfriends":["wp-draftsforfriends"],"olimometer_olimometers":["olimometer"],"tinycarousel_gallery":["tiny-carousel-horizontal-slider-plus"],"tinycarousel_image":["tiny-carousel-horizontal-slider-plus"],"pb_banned_ips":["praybox"],"pb_flags":["praybox"],"pb_prayedfor":["praybox"],"pb_requests":["praybox"],"loginlog":["login-logger"],"nginxchampuru":["nginx-champuru"],"google_maps":["google-maps-bank"],"google_maps_meta":["google-maps-bank"],"comment_notifier":["comment-notifier","comment-notifier-no-spammers"],"mwd_display_options":["wd-mailchimp"],"mwd_forms":["wd-mailchimp"],"mwd_forms_backup":["wd-mailchimp"],"mwd_forms_blocked":["wd-mailchimp"],"mwd_forms_sessions":["wd-mailchimp"],"mwd_forms_submits":["wd-mailchimp"],"mwd_forms_views":["wd-mailchimp"],"mwd_themes":["wd-mailchimp"],"ywrr_email_blocklist":["yith-woocommerce-review-reminder"],"ywrr_email_schedule":["yith-woocommerce-review-reminder"],"slider_plus_lightbox":["wp-image-slider-with-lightbox"],"fav_icon_link":["easy-set-favicon"],"dps_modules":["digital-publications-by-supsystic"],"dps_modules_type":["digital-publications-by-supsystic"],"dps_page_as_img":["digital-publications-by-supsystic"],"dps_page_sort_order":["digital-publications-by-supsystic"],"dps_usage_stat":["digital-publications-by-supsystic"],"vertical_thumbnail_slider":["wp-vertical-image-slider"],"cubiq_add_to_home":["official-add-to-homescreen"],"facebook_likebox_meta":["facebook-likebox"],"facebook_likebox_parent":["facebook-likebox"],"wppizza_orders":["wppizza"],"wppizza_orders_meta":["wppizza"],"srzyt_albums":["srizon-responsive-youtube-album"],"esp_answer":["event-espresso-decaf"],"esp_attendee_meta":["event-espresso-decaf"],"esp_checkin":["event-espresso-decaf"],"esp_country":["event-espresso-decaf"],"esp_currency":["event-espresso-decaf"],"esp_currency_payment_method":["event-espresso-decaf"],"esp_datetime":["event-espresso-decaf"],"esp_datetime_ticket":["event-espresso-decaf"],"esp_event_message_template":["event-espresso-decaf"],"esp_event_meta":["event-espresso-decaf"],"esp_event_question_group":["event-espresso-decaf"],"esp_event_venue":["event-espresso-decaf"],"esp_extra_join":["event-espresso-decaf"],"esp_extra_meta":["event-espresso-decaf"],"esp_line_item":["event-espresso-decaf"],"esp_log":["event-espresso-decaf"],"esp_message":["event-espresso-decaf"],"esp_message_template":["event-espresso-decaf"],"esp_message_template_group":["event-espresso-decaf"],"esp_payment":["event-espresso-decaf"],"esp_payment_method":["event-espresso-decaf"],"esp_price":["event-espresso-decaf"],"esp_price_type":["event-espresso-decaf"],"esp_question":["event-espresso-decaf"],"esp_question_group":["event-espresso-decaf"],"esp_question_group_question":["event-espresso-decaf"],"esp_question_option":["event-espresso-decaf"],"esp_registration":["event-espresso-decaf"],"esp_registration_payment":["event-espresso-decaf"],"esp_state":["event-espresso-decaf"],"esp_status":["event-espresso-decaf"],"esp_ticket":["event-espresso-decaf"],"esp_ticket_price":["event-espresso-decaf"],"esp_ticket_template":["event-espresso-decaf"],"esp_transaction":["event-espresso-decaf"],"esp_venue_meta":["event-espresso-decaf"],"nodofollow":["dofollow-case-by-case"],"swp_category":["wp-testimonial-widget"],"swp_testimonial":["wp-testimonial-widget"],"mfgigcal":["mf-gig-calendar"],"ai_logs":["mycurator"],"postsread":["mycurator"],"sl_pages":["mycurator"],"topic":["mycurator"],"bp_group_documents":["bp-group-documents"],"404_log":["404-error-logger","site-auditor"],"continuous_image_carousel":["continuous-image-carousel-with-lightbox"],"amz_assets":["woocommerce-amazon-affiliates-light-version"],"amz_products":["woocommerce-amazon-affiliates-light-version"],"amz_cross_sell":["woocommerce-amazon-affiliates-light-version"],"amz_queue":["woocommerce-amazon-affiliates-light-version"],"amz_report_log":["woocommerce-amazon-affiliates-light-version"],"amz_search":["woocommerce-amazon-affiliates-light-version"],"amz_amazon_cache":["woocommerce-amazon-affiliates-light-version"],"amz_amzkeys":["woocommerce-amazon-affiliates-light-version"],"amz_import_stats":["woocommerce-amazon-affiliates-light-version"],"amz_locale_reference":["woocommerce-amazon-affiliates-light-version"],"amz_sync_widget":["woocommerce-amazon-affiliates-light-version"],"amz_sync_widget_asins":["woocommerce-amazon-affiliates-light-version"],"fullstripe_payment_forms":["wp-full-stripe-free"],"fullstripe_payments":["wp-full-stripe-free"],"dreamobjects_backup_log":["dreamobjects"],"wptsaf_security_404_detection_log":["security-antivirus-firewall"],"wptsaf_security_easy_password_log":["security-antivirus-firewall"],"wptsaf_security_extension_error_monitor_log":["security-antivirus-firewall"],"wptsaf_security_file_change_log":["security-antivirus-firewall"],"wptsaf_security_google_captcha_blog_settings":["security-antivirus-firewall"],"wptsaf_security_google_captcha_log":["security-antivirus-firewall"],"wptsaf_security_login_brute_force_log":["security-antivirus-firewall"],"wptsaf_security_malware_scanner_log":["security-antivirus-firewall"],"wptsaf_security_network_monitor_log":["security-antivirus-firewall"],"wptsaf_security_network_monitor_manager_ip":["security-antivirus-firewall"],"wptsaf_security_network_monitor_manager_ip_change_log":["security-antivirus-firewall"],"wptsaf_security_system_log":["security-antivirus-firewall"],"pta_sus_sheets":["pta-volunteer-sign-up-sheets"],"pta_sus_signups":["pta-volunteer-sign-up-sheets"],"pta_sus_tasks":["pta-volunteer-sign-up-sheets"],"radioforge_radio":["radio-forge"],"responsive_video_grid":["video-grid"],"iyzico_checkout_form_user":["iyzico-payment-module"],"iyzico_order_refunds":["iyzico-payment-module"],"contest_gal1ery":["contest-gallery"],"contest_gal1ery_comments":["contest-gallery"],"contest_gal1ery_entries":["contest-gallery"],"contest_gal1ery_f_input":["contest-gallery"],"contest_gal1ery_f_output":["contest-gallery"],"contest_gal1ery_ip":["contest-gallery"],"contest_gal1ery_mail":["contest-gallery"],"contest_gal1ery_mail_admin":["contest-gallery"],"contest_gal1ery_options":["contest-gallery"],"contest_gal1ery_options_input":["contest-gallery"],"contest_gal1ery_options_visual":["contest-gallery"],"contest_gal1ery_mail_confirmation":["contest-gallery"],"contest_gal1ery_mails_collected":["contest-gallery"],"contest_gal1ery_categories":["contest-gallery"],"contest_gal1ery_create_user_entries":["contest-gallery"],"contest_gal1ery_create_user_form":["contest-gallery"],"contest_gal1ery_pro_options":["contest-gallery"],"contest_gal1ery_comments_notification_options":["contest-gallery"],"contest_gal1ery_google_options":["contest-gallery"],"contest_gal1ery_google_users":["contest-gallery"],"contest_gal1ery_registry_and_login_options":["contest-gallery"],"wpc_comments_subscription":["woodiscuz-woocommerce-comments"],"wpc_phrases":["woodiscuz-woocommerce-comments"],"wpc_users_voted":["woodiscuz-woocommerce-comments"],"zotpress":["zotpress"],"zotpress_cache":["zotpress"],"zotpress_oauth":["zotpress"],"zotpress_zoteroitemimages":["zotpress"],"fmepco_poptions_table":["fma-product-custom-options"],"fmepco_rowoption_table":["fma-product-custom-options"],"fmepco_temp_table":["fma-product-custom-options"],"lctr2_conf":["locatoraid"],"lctr2_locations":["locatoraid"],"lctr2_migrations":["locatoraid"],"lctr2_relations":["locatoraid"],"lctr2_searchlog":["locatoraid"],"wswebinars_notifications":["wp-webinarsystem"],"wswebinars_questions":["wp-webinarsystem"],"wswebinars_subscribers":["wp-webinarsystem"],"wswebinars_chats":["wp-webinarsystem"],"wswebinars_email_queue":["wp-webinarsystem"],"wswebinars_unsubscribe":["wp-webinarsystem"],"responsive_video_gallery_plus_responsive_lightbox":["wp-responsive-video-gallery-with-lightbox"],"api_setting":["wp-gcalendar"],"siq_sync":["searchiq"],"securimagewp":["securimage-wp","securimage-wp-fixed"],"ytwd_shortcodes":["wd-youtube"],"ytwd_youtube":["wd-youtube"],"teachpress_artefacts":["teachpress"],"teachpress_assessments":["teachpress"],"teachpress_authors":["teachpress"],"teachpress_course_capabilites":["teachpress"],"teachpress_course_documents":["teachpress"],"teachpress_course_meta":["teachpress"],"teachpress_courses":["teachpress"],"teachpress_pub":["teachpress"],"teachpress_pub_capabilites":["teachpress"],"teachpress_pub_documents":["teachpress"],"teachpress_pub_meta":["teachpress"],"teachpress_rel_pub_auth":["teachpress"],"teachpress_relation":["teachpress"],"teachpress_settings":["teachpress"],"teachpress_signup":["teachpress"],"teachpress_stud":["teachpress"],"teachpress_stud_meta":["teachpress"],"teachpress_tags":["teachpress"],"teachpress_user":["teachpress"],"teachpress_pub_imports":["teachpress"],"teachpress_course_capabilities":["teachpress"],"teachpress_pub_capabilities":["teachpress"],"wpinventory_category":["wp-inventory-manager"],"wpinventory_image":["wp-inventory-manager"],"wpinventory_item":["wp-inventory-manager"],"wpinventory_item_backup":["wp-inventory-manager"],"wpinventory_label":["wp-inventory-manager"],"wpinventory_media":["wp-inventory-manager"],"wpinventory_status":["wp-inventory-manager"],"wpinventory_reservation":["wp-inventory-manager"],"wpinventory_reservation_item":["wp-inventory-manager"],"fpropdf_fields":["formidablepro-2-pdf"],"fpropdf_layouts":["formidablepro-2-pdf"],"fpropdf_tmp":["formidablepro-2-pdf"],"replace_mandegarweb":["replace-default-words"],"freshmail_forms":["freshmail-integration"],"freshmail_stats":["freshmail-integration"],"rp_sessions":["restaurantpress"],"facebook_pages":["wp-facebook-portal"],"geot_countries":["geotargeting","geo-redirects"],"exporttopdfrecord":["wp-advanced-pdf"],"ucare_logs":["ucare-support-system"],"wpia_calendars":["wp-ical-availability"],"rm_log":["easy-redirect-manager"],"nd_learning_courses":["nd-learning"],"wpuser_login_log":["wp-user"],"wpuser_loginattempts":["wp-user"],"wpuser_notification":["wp-user"],"wpuser_group_meta":["wp-user"],"wpuser_groups":["wp-user"],"wpuser_views":["wp-user"],"imagelinks":["imagelinks-interactive-image-builder-lite"],"androapp_stats":["androapp"],"pw_gcmusers":["androapp"],"sfm_redirects":["feedburner-alternative-and-rss-redirect"],"lana_downloads_manager_logs":["lana-downloads-manager"],"prflxtrflds_field_values":["profile-extra-fields"],"prflxtrflds_fields_id":["profile-extra-fields"],"prflxtrflds_roles_and_fields":["profile-extra-fields"],"prflxtrflds_roles_id":["profile-extra-fields"],"prflxtrflds_user_field_data":["profile-extra-fields"],"prflxtrflds_user_roles":["profile-extra-fields"],"prflxtrflds_fields_meta":["profile-extra-fields"],"cp_orders":["cryptocurrency-prices"],"nova_poshta_area":["woo-shipping-for-nova-poshta"],"nova_poshta_city":["woo-shipping-for-nova-poshta"],"nova_poshta_region":["woo-shipping-for-nova-poshta"],"nova_poshta_warehouse":["woo-shipping-for-nova-poshta"],"angelleye_paypal_for_divi_companies":["angelleye-paypal-for-divi"],"ph_email_log":["propertyhive"],"shareasale_wc_tracker_datafeeds":["shareasale-wc-tracker"],"shareasale_wc_tracker_logs":["shareasale-wc-tracker"],"moo_attribute":["clover-online-orders"],"moo_category":["clover-online-orders"],"moo_images":["clover-online-orders"],"moo_item":["clover-online-orders"],"moo_item_group":["clover-online-orders"],"moo_item_modifier_group":["clover-online-orders"],"moo_item_option":["clover-online-orders"],"moo_item_order":["clover-online-orders"],"moo_item_tag":["clover-online-orders"],"moo_item_tax_rate":["clover-online-orders"],"moo_modifier":["clover-online-orders"],"moo_modifier_group":["clover-online-orders"],"moo_option":["clover-online-orders"],"moo_order":["clover-online-orders"],"moo_order_types":["clover-online-orders"],"moo_tag":["clover-online-orders"],"moo_tax_rate":["clover-online-orders"],"xh_social_channel_qq":["wechat-social-login"],"xh_social_channel_wechat":["wechat-social-login"],"xh_social_channel_weibo":["wechat-social-login"],"xh_social_sessions":["wechat-social-login"],"xh_sessions":["wechat-social-login","wechat-shop-download","wc-china-checkout"],"zcwc_forms":["zoho-campaigns"],"mypos_upsells":["mypos-virtual-for-woocommerce"],"cta_ip_failed_atts":["captcha-them-all"],"wc_sf_log":["woocommerce-superfaktura"],"image_compression_settings":["wp-image-compression"],"image_compression_details":["wp-image-compression"],"bp_cron_config":["beepress"],"bp_profile":["beepress"],"joomsport_box_fields":["joomsport-sports-league-results-management"],"joomsport_box_match":["joomsport-sports-league-results-management"],"joomsport_config":["joomsport-sports-league-results-management"],"joomsport_events":["joomsport-sports-league-results-management"],"joomsport_extra_fields":["joomsport-sports-league-results-management"],"joomsport_extra_select":["joomsport-sports-league-results-management"],"joomsport_groups":["joomsport-sports-league-results-management"],"joomsport_maps":["joomsport-sports-league-results-management"],"joomsport_match_events":["joomsport-sports-league-results-management"],"joomsport_match_statuses":["joomsport-sports-league-results-management"],"joomsport_playerlist":["joomsport-sports-league-results-management"],"joomsport_season_table":["joomsport-sports-league-results-management"],"joomsport_seasons":["joomsport-sports-league-results-management"],"joomsport_squad":["joomsport-sports-league-results-management"],"joomsport_events_depending":["joomsport-sports-league-results-management"],"joomsport_matches":["joomsport-sports-league-results-management"],"joomsport_teamstats":["joomsport-sports-league-results-management"],"edr_answers":["educator"],"edr_choices":["educator"],"edr_entries":["educator"],"edr_entry_meta":["educator"],"edr_grades":["educator"],"edr_members":["educator"],"edr_payment_lines":["educator"],"edr_payments":["educator"],"edr_questions":["educator"],"edr_tax_rates":["educator"],"res_forms":["responder"],"oih_opt_ins":["opt-in-hound"],"oih_subscribers":["opt-in-hound"],"oih_lists":["opt-in-hound"],"mwp_herd_free":["mwp-herd-effect"],"wow_hep":["mwp-herd-effect"],"cf7db":["database-for-cf7","pepro-cf7-database"],"paytpv_customer":["paytpv-for-woocommerce"],"intel_submission":["intelligence"],"intel_visitor":["intelligence"],"intel_visitor_identifier":["intelligence"],"intel_entity_attr":["intelligence"],"intel_value_str":["intelligence"],"eg_galleries":["everest-gallery-lite"],"yumpu_documents":["yumpu-epaper-publishing"],"helpful":["helpful"],"helpful_feedback":["helpful"],"helpful_instances":["helpful"],"phone_orders_log":["phone-orders-for-woocommerce"],"watsonconv_actions":["conversation-watson"],"watsonconv_contexts":["conversation-watson"],"watsonconv_entities":["conversation-watson"],"watsonconv_input_entities":["conversation-watson"],"watsonconv_input_intents":["conversation-watson"],"watsonconv_intents":["conversation-watson"],"watsonconv_output_entities":["conversation-watson"],"watsonconv_output_intents":["conversation-watson"],"watsonconv_requests":["conversation-watson"],"watsonconv_sessions":["conversation-watson"],"watsonconv_task_runner_queue":["conversation-watson"],"watsonconv_user_inputs":["conversation-watson"],"watsonconv_watson_outputs":["conversation-watson"],"watsonconv_debug_log":["conversation-watson"],"rich_web_timeline_manager":["rich-event-timeline"],"rich_web_timeline_options":["rich-event-timeline"],"rich_web_timeline_short_options":["rich-event-timeline"],"rich_web_timeline_style_options":["rich-event-timeline"],"rich_web_timeline_style_options_2":["rich-event-timeline"],"wctofb":["woo-to-facebook-shop"],"apexnb_subscriber":["apex-notification-bar-lite"],"fed_menu":["frontend-dashboard"],"fed_post":["frontend-dashboard"],"fed_user_profile":["frontend-dashboard"],"fed_menu_meta":["frontend-dashboard"],"fed_payment":["frontend-dashboard"],"fed_payment_items":["frontend-dashboard"],"smtpmail_data":["smtp-mail"],"star_testimonial_settings":["stars-testimonials-with-slider-and-masonry-grid"],"wof_lite_optins":["wp-optin-wheel"],"rednao_wc_invoice":["woo-pdf-invoice-builder"],"rednao_wc_invoices_created":["woo-pdf-invoice-builder"],"rednao_wc_invoices_custom_field":["woo-pdf-invoice-builder"],"premmerce_search_words":["premmerce-search"],"yesno_question":["yesno"],"yesno_set":["yesno"],"babe_av_cal":["ba-book-everything"],"babe_booking_rules":["ba-book-everything"],"babe_discount":["ba-book-everything"],"babe_order_itemmeta":["ba-book-everything"],"babe_order_items":["ba-book-everything"],"babe_payment_tokenmeta":["ba-book-everything"],"babe_payment_tokens":["ba-book-everything"],"babe_rates":["ba-book-everything"],"babe_rates_meta":["ba-book-everything"],"est_settings":["easy-side-tab-cta"],"est_cta_settings":["easy-side-tab-cta"],"woocommerce_p24_data":["woo-przelewy24-payment-gateway"],"proofreading_languages":["proofreading"],"proofreading_rules":["proofreading"],"proofreading_rules_settings":["proofreading"],"arm_activity":["armember-membership"],"arm_bank_transfer_log":["armember-membership"],"arm_email_templates":["armember-membership"],"arm_entries":["armember-membership"],"arm_fail_attempts":["armember-membership"],"arm_form_field":["armember-membership"],"arm_forms":["armember-membership"],"arm_lockdown":["armember-membership"],"arm_login_history":["armember-membership"],"arm_member_templates":["armember-membership"],"arm_members":["armember-membership"],"arm_membership_setup":["armember-membership"],"arm_payment_log":["armember-membership"],"arm_subscription_plans":["armember-membership"],"arm_termmeta":["armember-membership"],"giftvouchers_list":["gift-voucher"],"giftvouchers_setting":["gift-voucher"],"giftvouchers_template":["gift-voucher"],"giftvouchers_activity":["gift-voucher"],"multiparcels_terminals":["multiparcels-shipping-for-woocommerce"],"multiparcels_carrier_selections":["multiparcels-shipping-for-woocommerce"],"multiparcels_shipping_shipments":["multiparcels-shipping-for-woocommerce"],"multiparcels_shippings":["multiparcels-shipping-for-woocommerce"],"plgwap2_config":["wp-website-antivirus-protection","malware-scanner"],"wpsi_files":["wp-smart-import"],"wpsi_imports":["wp-smart-import"],"wpsi_posts":["wp-smart-import"],"wpap_cache":["wp-associate-post-r2"],"elementor_splittest":["split-test-for-elementor"],"elementor_splittest_interactions":["split-test-for-elementor"],"elementor_splittest_post":["split-test-for-elementor"],"elementor_splittest_variations":["split-test-for-elementor"],"shared_files_log":["shared-files"],"rbrurls_redirect":["role-based-redirect"],"ipages_flipbook":["ipages-flipbook"],"wow_fbtnp":["floating-button"],"scc_form_parameters":["stylish-cost-calculator"],"scc_forms":["stylish-cost-calculator"],"scc_coupons":["stylish-cost-calculator"],"scc_shortcodes":["stylish-cost-calculator"],"df_scc_conditions":["stylish-cost-calculator"],"df_scc_coupons":["stylish-cost-calculator"],"df_scc_elementitems":["stylish-cost-calculator"],"df_scc_elements":["stylish-cost-calculator"],"df_scc_forms":["stylish-cost-calculator"],"df_scc_quote_submissions":["stylish-cost-calculator"],"df_scc_sections":["stylish-cost-calculator"],"df_scc_subsections":["stylish-cost-calculator"],"gh_activity":["groundhogg"],"gh_broadcasts":["groundhogg"],"gh_contactmeta":["groundhogg"],"gh_contacts":["groundhogg"],"gh_emailmeta":["groundhogg"],"gh_emails":["groundhogg"],"gh_events":["groundhogg"],"gh_funnels":["groundhogg"],"gh_stepmeta":["groundhogg"],"gh_steps":["groundhogg"],"gh_superlinks":["groundhogg"],"gh_tag_relationships":["groundhogg"],"gh_tags":["groundhogg"],"gh_api_tokens":["groundhogg"],"gh_sms":["groundhogg"],"gh_form_impressions":["groundhogg"],"gh_submissionmeta":["groundhogg"],"gh_submissions":["groundhogg"],"gh_funnelmeta":["groundhogg"],"gh_event_queue":["groundhogg"],"gh_contactnotes":["groundhogg"],"gh_broadcastmeta":["groundhogg"],"gh_permissions_keys":["groundhogg"],"gh_activitymeta":["groundhogg"],"gh_email_log":["groundhogg"],"gh_notes":["groundhogg"],"gh_campaigns":["groundhogg"],"gh_object_relationships":["groundhogg"],"gh_other_activity":["groundhogg"],"gh_other_activitymeta":["groundhogg"],"gh_page_visits":["groundhogg"],"gh_logs":["groundhogg"],"web_paceportfolio_images":["photo-portfolio-gallery"],"web_paceportfolio_portfolios":["photo-portfolio-gallery"],"wrt_tabs":["responsive-horizontal-vertical-and-accordion-tabs"],"wrt_tabs_settings":["responsive-horizontal-vertical-and-accordion-tabs"],"vxcf_sales":["cf7-salesforce"],"vxcf_sales_accounts":["cf7-salesforce"],"vxcf_sales_log":["cf7-salesforce"],"vxg_salesforce":["gf-salesforce-crmperks"],"vxg_salesforce_accounts":["gf-salesforce-crmperks"],"vxg_salesforce_log":["gf-salesforce-crmperks"],"vxc_zoho_accounts":["woo-zoho"],"vxc_zoho_log":["woo-zoho"],"jtl_connector_category_level":["woo-jtl-connector"],"jtl_connector_link_category":["woo-jtl-connector"],"jtl_connector_link_crossselling":["woo-jtl-connector"],"jtl_connector_link_customer":["woo-jtl-connector"],"jtl_connector_link_image":["woo-jtl-connector"],"jtl_connector_link_order":["woo-jtl-connector"],"jtl_connector_link_payment":["woo-jtl-connector"],"jtl_connector_link_product":["woo-jtl-connector"],"jtl_connector_link_shipping_class":["woo-jtl-connector"],"jtl_connector_link_specific":["woo-jtl-connector"],"jtl_connector_link_specific_value":["woo-jtl-connector"],"jtl_connector_product_checksum":["woo-jtl-connector"],"jtl_connector_link_manufacturer":["woo-jtl-connector"],"jtl_connector_link_currency":["woo-jtl-connector"],"jtl_connector_link_customer_group":["woo-jtl-connector"],"jtl_connector_link_language":["woo-jtl-connector"],"jtl_connector_link_measurement_unit":["woo-jtl-connector"],"jtl_connector_link_shipping_method":["woo-jtl-connector"],"jtl_connector_link_crossselling_group":["woo-jtl-connector"],"jtl_connector_link_tax_class":["woo-jtl-connector"],"jtl_connector_link_category_level":["woo-jtl-connector"],"_connector_link_customer":["woo-jtl-connector"],"_connector_link_image":["woo-jtl-connector"],"nd_rst_booking":["nd-restaurant-reservations"],"wpsp_attendance":["wpschoolpress"],"wpsp_class":["wpschoolpress"],"wpsp_events":["wpschoolpress"],"wpsp_exam":["wpschoolpress"],"wpsp_fee_payment_history":["wpschoolpress"],"wpsp_fees":["wpschoolpress"],"wpsp_fees_payment":["wpschoolpress"],"wpsp_grade":["wpschoolpress"],"wpsp_import_history":["wpschoolpress"],"wpsp_leavedays":["wpschoolpress"],"wpsp_mark":["wpschoolpress"],"wpsp_mark_extract":["wpschoolpress"],"wpsp_mark_fields":["wpschoolpress"],"wpsp_messages":["wpschoolpress"],"wpsp_notification":["wpschoolpress"],"wpsp_settings":["wpschoolpress"],"wpsp_student":["wpschoolpress"],"wpsp_subject":["wpschoolpress"],"wpsp_teacher":["wpschoolpress"],"wpsp_teacher_attendance":["wpschoolpress"],"wpsp_timetable":["wpschoolpress"],"wpsp_transport":["wpschoolpress"],"wpsp_workinghours":["wpschoolpress"],"wpsp_class_mapping":["wpschoolpress"],"wpsp_messages_delete":["wpschoolpress"],"wpsp_temp":["wpschoolpress"],"fr_options":["fat-rat-collect"],"fr_post":["fat-rat-collect"],"frc_options":["fat-rat-collect"],"frc_post":["fat-rat-collect"],"contactic_notices":["contactic"],"contactic_st":["contactic"],"contactic_submits":["contactic"],"mailpress_mailmeta":["mailpress"],"mailpress_mails":["mailpress"],"mailpress_stats":["mailpress"],"mailpress_usermeta":["mailpress"],"mailpress_users":["mailpress"],"css_js_manager":["css-js-manager"],"wpf_order_items":["wp-payment-form"],"wpf_order_transactions":["wp-payment-form"],"wpf_submission_activities":["wp-payment-form"],"wpf_submissions":["wp-payment-form"],"wpf_meta":["wp-payment-form"],"wpf_subscriptions":["wp-payment-form"],"dpd_barcodes":["woo-shipping-dpd-baltic"],"dpd_manifests":["woo-shipping-dpd-baltic"],"dpd_terminals":["woo-shipping-dpd-baltic"],"social_rocket_count_data":["social-rocket"],"social_rocket_count_queue":["social-rocket"],"stcfq_queries":["contact-form-query"],"rank_math_schema":["schema-markup-rich-snippets"],"rank_math_schema_cache":["schema-markup-rich-snippets"],"tripetto_attachments":["tripetto"],"tripetto_entries":["tripetto"],"tripetto_forms":["tripetto"],"tripetto_announcements":["tripetto"],"tripetto_snapshots":["tripetto"],"rsfirewall_hashes":["rsfirewall"],"rsfirewall_ignored":["rsfirewall"],"rsfirewall_offenders":["rsfirewall"],"rsfirewall_signatures":["rsfirewall"],"rednaowooextraproduct_global_table":["additional-product-fields-for-woocommerce"],"wp24_whois_queries":["wp24-domain-check"],"wp24_tld_prices_links":["wp24-domain-check"],"wp24_tld_woocommerce":["wp24-domain-check"],"wp24_whois_servers":["wp24-domain-check"],"rtg_attachments":["real-thumbnail-generator-lite"],"vxg_googlesheets":["wp-gravity-forms-spreadsheets"],"vxg_googlesheets_accounts":["wp-gravity-forms-spreadsheets"],"vxg_googlesheets_log":["wp-gravity-forms-spreadsheets"],"ct_mc_sub":["crafthemes-demo-import"],"ct_notification":["crafthemes-demo-import"],"dologin_failure":["dologin"],"dologin_sms":["dologin"],"dologin_pswdless":["dologin"],"eem_attendees":["easy-events-manager"],"origincode_asc_desc":["displayproduct"],"origincode_catalog_album_contact":["displayproduct"],"origincode_catalog_albums":["displayproduct"],"origincode_catalogs":["displayproduct"],"origincode_general_options":["displayproduct"],"origincode_products":["displayproduct"],"origincode_rating":["displayproduct"],"origincode_reviews":["displayproduct"],"wow_sbtn":["sticky-buttons"],"cf7costcaloc_forms":["cost-calculator-contact-form-7"],"ps":["perfect-survey"],"ps_answers":["perfect-survey"],"ps_answers_values":["perfect-survey"],"ps_data":["perfect-survey"],"ps_logic_conditions":["perfect-survey"],"ps_questions":["perfect-survey"],"njt_fastdup_entities":["fastdup"],"njt_fastdup_packages":["fastdup"],"userback":["userback"],"innozilla_per_product_shipping_rules_woo":["innozilla-per-product-shipping-woocommerce"],"baidu_seo_day":["baiduseo"],"baiduseo_zhizhu":["baiduseo","nleilian-guanjc","key-spider"],"baiduseo_keywords":["baiduseo","nleilian-guanjc","key-spider"],"baiduseo_zhizhu_suoyin":["baiduseo","nleilian-guanjc","key-spider"],"baiduseo_kp":["baiduseo"],"baiduseo_kp_log":["baiduseo"],"baiduseo_neilian":["baiduseo","nleilian-guanjc"],"baiduseo_zz":["baiduseo"],"wc_revolut_orders":["revolut-gateway-for-woocommerce"],"wc_revolut_customer":["revolut-gateway-for-woocommerce"],"ninja_charts":["ninja-charts"],"seo":["contentstudio"],"anc_6310_counter":["animated-number-counters","accordion-faq-for-elementor"],"anc_6310_icons":["animated-number-counters","accordion-faq-for-elementor"],"anc_6310_style":["animated-number-counters","accordion-faq-for-elementor"],"moppm_user_login_info":["password-policy-manager"],"moppm_user_report_table":["password-policy-manager"],"betterlinks":["betterlinks"],"betterlinks_clicks":["betterlinks"],"betterlinks_terms":["betterlinks"],"betterlinks_terms_relationships":["betterlinks"],"betterlinkmeta":["betterlinks"],"extcf7_db":["extensions-for-cf7"],"seraph_accel_queue":["seraphinite-accelerator"],"irrp_redirectionmeta":["redirect-redirection"],"irrp_redirections":["redirect-redirection"],"irrp_redirection_logs":["redirect-redirection"],"index_now_log":["mihdan-index-now"],"indexnow_failed_submissions":["indexnow"],"indexnow_passed_submissions":["indexnow"],"cloaker_clicks":["wp-cloaker"],"amoforms_amo_user":["amoforms"],"amoforms_entries":["amoforms"],"amoforms_forms":["amoforms"],"pmlc_geoipcountry":["wp-wizard-cloak","wp-dynamic-links","prosociate-amazon"],"pmlc_automatches":["wp-wizard-cloak","wp-dynamic-links"],"pmlc_destinations":["wp-wizard-cloak","wp-dynamic-links"],"pmlc_links":["wp-wizard-cloak","wp-dynamic-links"],"pmlc_rules":["wp-wizard-cloak","wp-dynamic-links"],"pmlc_stats":["wp-wizard-cloak","wp-dynamic-links"],"pmlc_keywords":["wp-wizard-cloak"],"wpspro_lockouts":["wp-smart-security"],"wpspro_log":["wp-smart-security"],"ak_404_log":["404-notifier"],"users_ultra_pm":["users-ultra"],"usersultra_ajaxrating_vote":["users-ultra"],"usersultra_ajaxrating_votesummary":["users-ultra"],"usersultra_friends":["users-ultra"],"usersultra_galleries":["users-ultra"],"usersultra_likes":["users-ultra"],"usersultra_orders":["users-ultra"],"usersultra_packages":["users-ultra"],"usersultra_photo_cat_rel":["users-ultra"],"usersultra_photo_categories":["users-ultra"],"usersultra_photos":["users-ultra"],"usersultra_stats":["users-ultra"],"usersultra_stats_raw":["users-ultra"],"usersultra_videos":["users-ultra"],"usersultra_activity":["users-ultra"],"usersultra_credits":["users-ultra"],"usersultra_followers":["users-ultra"],"usersultra_groups":["users-ultra"],"usersultra_groups_post_rel":["users-ultra"],"usersultra_groups_users_groups_rel":["users-ultra"],"usersultra_ip_defender":["users-ultra"],"usersultra_ticket_categories":["users-ultra"],"usersultra_ticket_departments":["users-ultra"],"usersultra_ticket_replies":["users-ultra"],"usersultra_tickets":["users-ultra"],"usersultra_wall":["users-ultra"],"usersultra_wall_replies":["users-ultra"],"tinycarousel":["tiny-carousel-horizontal-slider"],"mc_forms":["nmedia-mailchimp-widget"],"cp_easy_form_settings":["cp-easy-form-builder"],"cup_cp_profiles":["contact-us-page-contact-people"],"cntctfrmtdb_blogname":["contact-form-to-db"],"cntctfrmtdb_field_selection":["contact-form-to-db"],"cntctfrmtdb_hosted_site":["contact-form-to-db"],"cntctfrmtdb_message":["contact-form-to-db"],"cntctfrmtdb_message_status":["contact-form-to-db"],"cntctfrmtdb_refer":["contact-form-to-db"],"cntctfrmtdb_to_email":["contact-form-to-db"],"ai_contact":["responsive-contact-form"],"wpshop_ordered":["wp-shop-original"],"wpshop_orders":["wp-shop-original"],"wpshop_selected_items":["wp-shop-original"],"ewd_feup_fields":["front-end-only-users"],"ewd_feup_levels":["front-end-only-users"],"ewd_feup_payments":["front-end-only-users"],"ewd_feup_user_events":["front-end-only-users"],"ewd_feup_user_fields":["front-end-only-users"],"ewd_feup_users":["front-end-only-users"],"ez_adsense_options":["adsense-now-lite","google-adsense-lite","ajax-adsense"],"crony_jobs":["crony"],"crony_logs":["crony"],"bup_htmltype":["backup-by-supsystic"],"bup_modules":["backup-by-supsystic"],"bup_modules_type":["backup-by-supsystic"],"bup_options":["backup-by-supsystic"],"bup_options_categories":["backup-by-supsystic"],"hndtst_saved":["handsome-testimonials"],"interlinker":["cross-linker"],"interlinker_attributes":["cross-linker"],"interlinker_backups":["cross-linker"],"interlinker_divide_chars":["cross-linker"],"interlinker_lng_wds":["cross-linker"],"interlinker_multilang":["cross-linker"],"interlinker_settings":["cross-linker"],"interlinker_special_chars":["cross-linker"],"interlinker_times":["cross-linker"],"interlinker_stats_details":["cross-linker"],"interlinker_stats_main":["cross-linker"],"_interlinker_backups":["cross-linker"],"dk_speakup_petitions":["speakup-email-petitions"],"dk_speakup_signatures":["speakup-email-petitions"],"appointy_calendar":["appointy-appointment-scheduler"],"cas_plugin":["continuous-announcement-scroller"],"yapbimage":["yet-another-photoblog"],"feed_clickthroughs":["wordpress-feed-statistics"],"feed_links":["wordpress-feed-statistics"],"feed_postviews":["wordpress-feed-statistics"],"feed_subscribers":["wordpress-feed-statistics"],"xmt_acc":["xhanch-my-twitter"],"xmt_ath":["xhanch-my-twitter"],"xmt_twt":["xhanch-my-twitter"],"spidercatalog_id":["catalog"],"spidercatalog_params":["catalog"],"spidercatalog_product_categories":["catalog"],"spidercatalog_product_reviews":["catalog"],"spidercatalog_product_votes":["catalog"],"spidercatalog_products":["catalog"],"optinrev":["optin-revolution"],"sola_nl_advanced_link_tracking":["sola-newsletters"],"sola_nl_campaign_lists":["sola-newsletters"],"sola_nl_campaign_subscribers":["sola-newsletters"],"sola_nl_campaigns":["sola-newsletters"],"sola_nl_css_options":["sola-newsletters"],"sola_nl_link_tracking":["sola-newsletters"],"sola_nl_list":["sola-newsletters"],"sola_nl_subscribers":["sola-newsletters"],"sola_nl_subscribers_list":["sola-newsletters"],"sola_nl_themes":["sola-newsletters"],"iframepopup":["iframe-popup"],"gigs_gig":["gigs-calendar"],"gigs_performance":["gigs-calendar"],"gigs_tour":["gigs-calendar"],"gigs_venue":["gigs-calendar"],"mobiloud_categories":["mobiloud-mobile-app-plugin"],"mobiloud_notification_categories":["mobiloud-mobile-app-plugin"],"mobiloud_notifications":["mobiloud-mobile-app-plugin"],"mobiloud_pages":["mobiloud-mobile-app-plugin"],"bft_attachments":["bft-autoresponder"],"bft_emaillog":["bft-autoresponder"],"bft_mails":["bft-autoresponder"],"bft_newsletters":["bft-autoresponder"],"bft_sentmails":["bft-autoresponder"],"bft_users":["bft-autoresponder"],"bft_unsubs":["bft-autoresponder"],"bft_webhooks":["bft-autoresponder"],"ha_custom_event":["hotspots"],"ha_user":["hotspots"],"ha_user_environment":["hotspots"],"ha_user_event":["hotspots"],"wp_fb_social_stream":["facebook-social-stream","botnet-attack-blocker","jquery-drop-down-menu-plugin","flattr"],"botnetblocker":["botnet-attack-blocker"],"awp_contact_form":["new-contact-form-widget"],"psn_rules":["post-status-notifier-lite"],"newsman_an_clicks":["wpnewsman-newsletters"],"newsman_an_links":["wpnewsman-newsletters"],"newsman_an_sub_details":["wpnewsman-newsletters"],"newsman_an_timeline":["wpnewsman-newsletters"],"newsman_blocked_domains":["wpnewsman-newsletters"],"newsman_email_templates":["wpnewsman-newsletters"],"newsman_emails":["wpnewsman-newsletters"],"newsman_lists":["wpnewsman-newsletters"],"newsman_locks":["wpnewsman-newsletters"],"newsman_lst_default":["wpnewsman-newsletters"],"newsman_lst_wp_users":["wpnewsman-newsletters"],"newsman_sentlog":["wpnewsman-newsletters"],"newsman_workers":["wpnewsman-newsletters"],"sc_log":["google-translate-widget","link-to-us","share-buttons-widget","simple-google-translate-widget"],"ccpo_post_order_rel":["custom-post-order-category"],"responsive_slider_plus_responsive_lightbox":["wp-responsive-slider-with-lightbox"],"mdp_gwt_external_links":["mdp-google-webmaster-tools"],"mdp_gwt_internal_links":["mdp-google-webmaster-tools"],"mdp_gwt_keywords":["mdp-google-webmaster-tools"],"mdp_gwt_pages":["mdp-google-webmaster-tools"],"mdp_gwt_query":["mdp-google-webmaster-tools"],"nggv_settings":["nextgen-gallery-voting"],"nggv_votes":["nextgen-gallery-voting"],"ads_banners":["wpads"],"total_security_log":["total-security"],"fsg_galleries":["flickr-set-slideshows"],"fbthumbnails":["easy-facebook-share-thumbnails"],"pluginsl_spam_captcha":["spam-captcha"],"post_sorting":["wp-post-sorting"],"ql":["quick-localization"],"sc_eventmeta":["sugar-calendar-lite"],"sc_events":["sugar-calendar-lite"],"fs_data":["feedstats-de"],"fs_visits":["feedstats-de"],"ivrss_plugin":["image-vertical-reel-scroll-slideshow"],"shortcodes":["shortbus","shortcode-generator","scode-by-mojwp"],"monalisa":["wp-monalisa"],"edge_suite_composition_definition":["edge-suite"],"simple_feed_stats":["simple-feed-stats"],"ltw_testimonial_groups":["ltw-testimonials"],"ltw_testimonials":["ltw-testimonials"],"flgallery_albums":["global-flash-galleries"],"flgallery_galleries":["global-flash-galleries"],"flgallery_images":["global-flash-galleries"],"flgallery_settings":["global-flash-galleries"],"amd_yrecipe_recipes":["yummly-rich-recipes"],"cwp_poll":["cardoza-wordpress-poll"],"cwp_poll_answers":["cardoza-wordpress-poll"],"cwp_poll_logs":["cardoza-wordpress-poll"],"bwwc_btc_addresses":["bitcoin-payments-for-woocommerce"],"ap_ips":["blue-captcha"],"ap_log":["blue-captcha"],"ap_sessions":["blue-captcha"],"simple_events":["simple-events-calendar"],"ecp_data":["easy-code-placement"],"ecp_options":["easy-code-placement"],"cackle_channel":["cackle"],"hermit":["hermit"],"hermit_cat":["hermit"],"afi_types":["attachment-file-icons"],"langselrel_posts":["language-selector-related"],"langselrel_terms":["language-selector-related"],"rs_slider":["m-vslider"],"bccf_dex_bccf_submissions":["booking-calendar-contact-form"],"bccf_dex_discount_codes":["booking-calendar-contact-form"],"bccf_dex_season_prices":["booking-calendar-contact-form"],"bccf_reservation_calendars":["booking-calendar-contact-form"],"bccf_reservation_calendars_data":["booking-calendar-contact-form"],"postviews_plus":["wp-postviews-plus"],"popup_manager":["popup-manager"],"popup_manager_templates":["popup-manager"],"pm":["private-messages-for-wordpress","cryptopoints-manager"],"mylocation":["my-loginlogout"],"mylogin":["my-loginlogout"],"events_answer":["event-espresso-free"],"events_attendee":["event-espresso-free"],"events_attendee_meta":["event-espresso-free"],"events_category_detail":["event-espresso-free"],"events_category_rel":["event-espresso-free"],"events_detail":["event-espresso-free"],"events_discount_codes":["event-espresso-free"],"events_discount_rel":["event-espresso-free"],"events_email":["event-espresso-free"],"events_locale":["event-espresso-free"],"events_locale_rel":["event-espresso-free"],"events_meta":["event-espresso-free"],"events_multi_event_registration_id_group":["event-espresso-free"],"events_personnel":["event-espresso-free"],"events_personnel_rel":["event-espresso-free"],"events_prices":["event-espresso-free"],"events_qst_group":["event-espresso-free"],"events_qst_group_rel":["event-espresso-free"],"events_question":["event-espresso-free"],"events_start_end":["event-espresso-free"],"events_venue":["event-espresso-free"],"events_venue_rel":["event-espresso-free"],"indeed_job_importer":["indeed-job-importer"],"accordionslider_accordions":["accordion-slider-lite","accordion-slider"],"accordionslider_layers":["accordion-slider-lite","accordion-slider"],"accordionslider_panels":["accordion-slider-lite","accordion-slider"],"wm_ya_stat_texts":["webmaster-yandex"],"wm_ya_texts":["webmaster-yandex"],"tla_data":["text-link-ads"],"availability":["availability","prosolution-wp-client"],"cloudwok":["cloudwok-file-upload"],"backup_and_move":["backup-and-move"],"ccf_fields":["categorycustomfields"],"ccf_value":["categorycustomfields"],"schreikasten":["schreikasten"],"schreikasten_blacklist":["schreikasten"],"l24bd_wpcounter_visitors":["wp-counter"],"gallery_master":["gallery-master"],"gallery_master_licensing":["gallery-master"],"gallery_master_meta":["gallery-master"],"gallery_master_settings":["gallery-master"],"albopretorio_allegati":["albo-pretorio-on-line"],"albopretorio_atti":["albo-pretorio-on-line"],"albopretorio_categorie":["albo-pretorio-on-line"],"albopretorio_enti":["albo-pretorio-on-line"],"albopretorio_log":["albo-pretorio-on-line"],"albopretorio_resprocedura":["albo-pretorio-on-line"],"albopretorio_attimeta":["albo-pretorio-on-line"],"albopretorio_unitaorganizzative":["albo-pretorio-on-line"],"ckxml_line_log":["wp-advanced-importer"],"ckxml_pie_log":["wp-advanced-importer"],"ck_field_types_xml":["wp-advanced-importer"],"ckuci_events_xml":["wp-advanced-importer"],"ckuci_history_xml":["wp-advanced-importer"],"ultimate_csv_importer_log_values_xml":["wp-advanced-importer"],"ultimate_csv_importer_manageshortcodes_xml":["wp-advanced-importer"],"ultimate_csv_importer_mappingtemplate_xml":["wp-advanced-importer"],"ultimate_csv_importer_shortcodes_statusrel_xml":["wp-advanced-importer"],"tc_shortcodes":["tiempocom"],"backup_bank":["wp-backup-bank"],"backup_bank_meta":["wp-backup-bank"],"backup_bank_restore":["wp-backup-bank"],"birthdays":["birthdays-widget"],"donations":["donate-plus","donate-extra"],"iq_testimonials":["iq-testimonials"],"iq_testimonials_settings":["iq-testimonials"],"contentreports":["report-content"],"plenewsletter_subscriptions":["simple-newsletter-br"],"lme_areas":["local-market-explorer"],"cp":["cubepoints"],"simple_contact_messages":["simplecontact"],"simple_contact_subjects":["simplecontact"],"notify":["jazz-popups"],"sampro_ads":["sam-pro-free"],"sampro_blocks":["sam-pro-free"],"sampro_errors":["sam-pro-free"],"sampro_places":["sam-pro-free"],"sampro_places_ads":["sam-pro-free"],"sampro_stats":["sam-pro-free"],"sampro_zones":["sam-pro-free"],"sampro_zones_rules":["sam-pro-free"],"caa_profile_db":["custom-about-author"],"agm_maps":["wordpress-google-maps"],"post_styling_library":["wp-post-styling"],"avartan_sliders":["avartan-slider-lite"],"avartan_slides":["avartan-slider-lite"],"avartan_preset":["avartan-slider-lite"],"upicrm_fields":["upi-crm-universal-crm-solution"],"upicrm_fields_mapping":["upi-crm-universal-crm-solution"],"upicrm_integrations":["upi-crm-universal-crm-solution"],"upicrm_leads":["upi-crm-universal-crm-solution"],"upicrm_leads_campaign":["upi-crm-universal-crm-solution"],"upicrm_leads_integration":["upi-crm-universal-crm-solution"],"upicrm_leads_route":["upi-crm-universal-crm-solution"],"upicrm_leads_status":["upi-crm-universal-crm-solution"],"upicrm_mails":["upi-crm-universal-crm-solution"],"upicrm_options":["upi-crm-universal-crm-solution"],"upicrm_users":["upi-crm-universal-crm-solution"],"upicrm_webservice":["upi-crm-universal-crm-solution"],"upicrm_webservice_parameters":["upi-crm-universal-crm-solution"],"upicrm_leads_changes_log":["upi-crm-universal-crm-solution"],"iire_social":["iire-social-icons"],"osefirewall_adminemails":["ose-firewall"],"osefirewall_aiscan":["ose-firewall"],"osefirewall_domains":["ose-firewall"],"osefirewall_fileuploadext":["ose-firewall"],"osefirewall_gitlog":["ose-firewall"],"osefirewall_scanhist":["ose-firewall"],"osefirewall_versions":["ose-firewall"],"osefirewall_vlscanner":["ose-firewall"],"osefirewall_vshash":["ose-firewall"],"osefirewall_cronsettings":["ose-firewall"],"osefirewall_dbconfiggit":["ose-firewall"],"osefirewall_emailnotificationmgmtv7":["ose-firewall"],"osefirewall_fileuploadlogv7":["ose-firewall"],"osefirewall_fwscannerv7config":["ose-firewall"],"osefirewall_ipmanagement":["ose-firewall"],"osefirewall_versioninfo":["ose-firewall"],"osefirewall_whitelistmgmt":["ose-firewall"],"lazyestfiles":["lazyest-gallery"],"messagebox":["simple-ajax-shoutbox"],"messagebox_embed_cache":["simple-ajax-shoutbox"],"dls_sus_sheets":["sign-up-sheets"],"dls_sus_signups":["sign-up-sheets"],"dls_sus_tasks":["sign-up-sheets"],"llp_templates":["wp-landing-pages"],"tz_plusgallery_images":["tz-plus-gallery"],"tz_plusgallery_item":["tz-plus-gallery"],"tz_plusgallery_options":["tz-plus-gallery"],"tz_plusgallery_type":["tz-plus-gallery"],"afsa_processed_order":["addfreestats"],"loginsecurity_logs":["rename-wp-loginphp-to-anything-you-want"],"dsfaq_name":["wp-ds-faq","wp-ds-faq-plus"],"dsfaq_quest":["wp-ds-faq","wp-ds-faq-plus"],"urls":["staticpress","staticpress2019"],"_taboola_settings":["taboola"],"pv_am_activities":["plainview-activity-monitor"],"mk_newsletter_data":["newsletter-popup"],"mk_newsletter_local_records":["newsletter-popup"],"mywebtonetperfstatsresults":["mywebtonet-performancestats"],"mywebtonetqtest":["mywebtonet-performancestats"],"cas_count":["peters-custom-anti-spam-image"],"cas_image":["peters-custom-anti-spam-image"],"jquery_newsticker":["jquery-news-ticker"],"voucherpress_downloads":["voucherpress"],"voucherpress_templates":["voucherpress"],"voucherpress_vouchers":["voucherpress"],"spr_rating":["simple-rating"],"spr_votes":["simple-rating"],"wptao_events":["wp-tao"],"wptao_events_meta":["wp-tao"],"wptao_events_tags":["wp-tao"],"wptao_fingerprints":["wp-tao"],"wptao_users":["wp-tao"],"wptao_users_meta":["wp-tao"],"wptao_users_tags":["wp-tao"],"wsecure_params":["wsecure"],"wsecure_config":["wsecure"],"book_review_custom_link_urls":["book-review"],"book_review_custom_links":["book-review"],"impressum_manager_content":["impressum-manager"],"umbrella_sp_log":["umbrella-antivirus-hack-protection"],"wp_copy":["copy-link"],"infopopup":["infopopup"],"exportsreports_groups":["exports-and-reports"],"exportsreports_log":["exports-and-reports"],"exportsreports_reports":["exports-and-reports"],"contact_form_7":["contact-form-8"],"totalpoll_entries":["totalpoll-lite"],"totalpoll_log":["totalpoll-lite"],"totalpoll_votes":["totalpoll-lite"],"sgpt_pricing_table":["pricing-table-builder"],"sgpt_pt_feature":["pricing-table-builder"],"sgpt_pt_plan":["pricing-table-builder"],"mbdb_books":["mooberry-book-manager"],"gravatars":["fv-gravatar-cache"],"itor":["visitor-map"],"newsletter_users":["wordpress-newsletter"],"coming_soon_booster":["wp-coming-soon-booster"],"coming_soon_booster_meta":["wp-coming-soon-booster"],"coming_soon_booster_ip_locations":["wp-coming-soon-booster"],"query_override_terms":["query-wrangler"],"query_wrangler":["query-wrangler"],"stock_widgets":["custom-stock-widget"],"redi_restaurant_reservation":["redi-restaurant-reservation"],"redi_restaurant_reservation_v1":["redi-restaurant-reservation"],"redi_restaurant_reservation_v1_custom_fields":["redi-restaurant-reservation"],"redi_restaurant_reservation_v2":["redi-restaurant-reservation"],"redi_restaurant_reservation_v2_custom_fields":["redi-restaurant-reservation"],"redi_restaurant_reservation_v6":["redi-restaurant-reservation"],"redi_restaurant_reservation_v6_custom_fields":["redi-restaurant-reservation"],"wp_seo_groups":["404-redirection-manager"],"wpdoctor_configuration":["wp-doctor"],"bar_info":["banner-ads-rotator"],"amazon_accounts":["wp-lister-for-amazon"],"amazon_btg":["wp-lister-for-amazon"],"amazon_categories":["wp-lister-for-amazon"],"amazon_feed_templates":["wp-lister-for-amazon"],"amazon_feed_tpl_data":["wp-lister-for-amazon"],"amazon_feed_tpl_values":["wp-lister-for-amazon"],"amazon_feeds":["wp-lister-for-amazon"],"amazon_jobs":["wp-lister-for-amazon"],"amazon_listings":["wp-lister-for-amazon"],"amazon_log":["wp-lister-for-amazon"],"amazon_markets":["wp-lister-for-amazon"],"amazon_orders":["wp-lister-for-amazon"],"amazon_payment":["wp-lister-for-amazon"],"amazon_profiles":["wp-lister-for-amazon"],"amazon_reports":["wp-lister-for-amazon"],"amazon_shipping":["wp-lister-for-amazon"],"amazon_stock_log":["wp-lister-for-amazon"],"mystatclick":["wp-mystat"],"mystatdata":["wp-mystat"],"mystatsize":["wp-mystat"],"canva_images":["canva"],"stc_joblist":["subscribe-to-category"],"dc_code_groups":["wp-download-codes"],"dc_codes":["wp-download-codes"],"dc_downloads":["wp-download-codes"],"dc_releases":["wp-download-codes"],"most_read_hits":["most-read-posts-in-xx-days"],"wpa_auctions":["wp-auctions"],"wpa_bids":["wp-auctions"],"hugeit_colorbox":["colorbox"],"cip_logs":["country-ip-specific-redirections"],"cip_rules":["country-ip-specific-redirections"],"copyscape_tbl":["copyscape-premium"],"ip_based_login":["ip-based-login"],"effecto":["instant-feedback"],"popup4phone_leads":["popup4phone"],"jsdelivr_cdn_files":["jsdelivr-wordpress-cdn-plugin"],"jsdelivr_cdn_packages":["jsdelivr-wordpress-cdn-plugin"],"jsdelivr_files":["jsdelivr-wordpress-cdn-plugin"],"reportedlinks":["report-broken-links"],"paypal_wp_button_manager_companies":["paypal-wp-button-manager"],"ec_stars_votes":["ec-stars-rating"],"feedly_insight_history":["feedly-insight"],"fc_items":["frontend-checklist"],"eneric_phmm_comments":["photography-management"],"wsko_cache":["wp-seo-keyword-optimizer"],"wsko_cache_rows":["wp-seo-keyword-optimizer"],"wsko_cache_data_an":["wp-seo-keyword-optimizer"],"wsko_cache_data_se":["wp-seo-keyword-optimizer"],"wsko_cache_data_social":["wp-seo-keyword-optimizer"],"wsko_cache_days":["wp-seo-keyword-optimizer"],"wsko_cache_data_onpage":["wp-seo-keyword-optimizer"],"wsko_cache_data_se_d":["wp-seo-keyword-optimizer"],"wsko_options":["wp-seo-keyword-optimizer"],"memberful_mapping":["memberful-wp"],"plugin_papercite":["papercite"],"plugin_papercite_url":["papercite"],"wps_awesome_logos":["awesome-logos"],"wps_awesome_logos_meta":["awesome-logos"],"advsh":["wp-advanced-search"],"autosuggest":["wp-advanced-search","fancy-search"],"fv_digiwidgetsdata":["digiwidgets-image-editor"],"fv_digiwidgetslog":["digiwidgets-image-editor"],"fv_digiwidgetsloghistory":["digiwidgets-image-editor"],"fv_digiwidgetstemplates":["digiwidgets-image-editor"],"spiderfc_calendar":["flash-calendar"],"spiderfc_events":["flash-calendar"],"spiderfc_theme":["flash-calendar"],"codeneric_uam_events":["ultimate-ads-manager"],"llm":["link-list-manager"],"cf_access":["cfiltering"],"cf_number":["cfiltering"],"featured_posts":["select-featured-posts"],"bpm_categories":["portfolio-manager-powered-by-behance"],"bpm_projects":["portfolio-manager-powered-by-behance"],"task_breaker_comments":["taskbreaker-project-management"],"task_breaker_task_meta":["taskbreaker-project-management"],"task_breaker_tasks":["taskbreaker-project-management"],"task_breaker_tasks_user_assignment":["taskbreaker-project-management"],"k_breaker_comments":["taskbreaker-project-management"],"k_breaker_task_meta":["taskbreaker-project-management"],"k_breaker_tasks":["taskbreaker-project-management"],"k_breaker_tasks_user_assignment":["taskbreaker-project-management"],"importer_files":["jc-importer"],"importer_log":["jc-importer"],"fc_action":["oasis-workflow","oasis-workflow-pro"],"fc_action_history":["oasis-workflow","oasis-workflow-pro"],"fc_emails":["oasis-workflow","oasis-workflow-pro"],"fc_workflow_steps":["oasis-workflow","oasis-workflow-pro"],"fc_workflows":["oasis-workflow","oasis-workflow-pro"],"cp_donations":["custom-post-donations"],"_active_folder":["dms"],"_audit_log":["dms"],"_config":["dms"],"_exp_folders":["dms"],"_file_sys_counters":["dms"],"_groups_users_link":["dms"],"_help_system":["dms"],"_lifecycle_stages":["dms"],"_lifecycles":["dms"],"_notify":["dms"],"_object_misc":["dms"],"_object_perms":["dms"],"_object_properties":["dms"],"_object_properties_sb":["dms"],"_object_version_comments":["dms"],"_object_versions":["dms"],"_objects":["dms"],"_routing_data":["dms"],"_subscriptions":["dms"],"_user_doc_history":["dms"],"_user_prefs":["dms"],"_auto_folder_creation":["dms"],"fb_comments_image_data":["fb-comments-importer"],"seo_hostindex":["seo-consultant"],"seo_hostlog":["seo-consultant"],"arete_buddypress_smiley_settings":["activity-reactions-for-buddypress"],"arete_buddypress_smileys":["activity-reactions-for-buddypress"],"arete_buddypress_smileys_manage":["activity-reactions-for-buddypress"],"belegung_config":["occupancyplan"],"belegung_daten":["occupancyplan"],"belegung_objekte":["occupancyplan"],"stock_tickers":["custom-stock-ticker"],"kcc_clicks":["kama-clic-counter"],"arplite_arprice":["arprice-responsive-pricing-table"],"arplite_arprice_analytics":["arprice-responsive-pricing-table"],"arplite_arprice_options":["arprice-responsive-pricing-table"],"indica_econo":["widget-indicadores-economicos-chile"],"nbs_forms":["newsletter-by-supsystic"],"nbs_modules":["newsletter-by-supsystic"],"nbs_modules_type":["newsletter-by-supsystic"],"nbs_newsletters":["newsletter-by-supsystic"],"nbs_newsletters_to_lists":["newsletter-by-supsystic"],"nbs_octo":["newsletter-by-supsystic"],"nbs_octo_blocks":["newsletter-by-supsystic"],"nbs_octo_blocks_categories":["newsletter-by-supsystic"],"nbs_octo_blocks_mission":["newsletter-by-supsystic"],"nbs_octo_cache":["newsletter-by-supsystic"],"nbs_queue":["newsletter-by-supsystic"],"nbs_subscribers":["newsletter-by-supsystic"],"nbs_subscribers_lists":["newsletter-by-supsystic"],"nbs_subscribers_to_lists":["newsletter-by-supsystic"],"nbs_subscribers_to_lists_prev":["newsletter-by-supsystic"],"nbs_usage_stat":["newsletter-by-supsystic"],"nbs_countries":["newsletter-by-supsystic"],"l_wp_bonusquestions":["football-pool"],"l_wp_bonusquestions_type":["football-pool"],"l_wp_bonusquestions_useranswers":["football-pool"],"l_wp_groups":["football-pool"],"l_wp_league_users":["football-pool"],"l_wp_leagues":["football-pool"],"l_wp_matches":["football-pool"],"l_wp_matchtypes":["football-pool"],"l_wp_predictions":["football-pool"],"l_wp_rankings":["football-pool"],"l_wp_rankings_bonusquestions":["football-pool"],"l_wp_rankings_matches":["football-pool"],"l_wp_scorehistory_s1_t1":["football-pool"],"l_wp_scorehistory_s1_t2":["football-pool"],"l_wp_seasons":["football-pool"],"l_wp_shoutbox":["football-pool"],"l_wp_stadiums":["football-pool"],"l_wp_teams":["football-pool"],"login_attempt_log":["wp-login-attempt-log"],"jot_groupinvites":["joy-of-text"],"jot_groupmembers":["joy-of-text"],"jot_groupmemxref":["joy-of-text"],"jot_groupmeta":["joy-of-text"],"jot_groups":["joy-of-text"],"jot_messagequeue":["joy-of-text"],"jot_messages":["joy-of-text"],"lic_key_tbl":["software-license-manager"],"lic_reg_domain_tbl":["software-license-manager"],"randomize":["randomize"],"cdi":["colissimo-delivery-integration"],"limb_gallery_albums":["limb-gallery"],"limb_gallery_albumscontent":["limb-gallery"],"limb_gallery_comments":["limb-gallery"],"limb_gallery_galleries":["limb-gallery"],"limb_gallery_galleriescontent":["limb-gallery"],"limb_gallery_settings":["limb-gallery"],"limb_gallery_themes":["limb-gallery"],"limb_gallery_shortcodes":["limb-gallery"],"es_advanced_form":["email-subscribers-advanced-form"],"bbp_messages_2p0":["bbp-messages"],"bbp_messages_2p0_meta":["bbp-messages"],"wp_mpdf_posts":["wp-mpdf"],"kanban_boards":["kanban"],"kanban_estimates":["kanban"],"kanban_log_comments":["kanban"],"kanban_log_status_changes":["kanban"],"kanban_options":["kanban"],"kanban_projects":["kanban"],"kanban_statuses":["kanban"],"kanban_task_hours":["kanban"],"kanban_taskmeta":["kanban"],"kanban_tasks":["kanban"],"wpwox_custom_css":["responsive-css-editor"],"wpwox_responsive_css":["responsive-css-editor"],"menu_manager_plus":["advance-menu-manager"],"mwp_countdown_free":["mwp-countdown"],"wow_countdowns_free":["mwp-countdown"],"ssr_studentinfo":["simple-student-result"],"fmera_fields":["fma-additional-registration-attributes"],"fmera_meta":["fma-additional-registration-attributes"],"torro_containers":["torro-forms"],"torro_element_choices":["torro-forms"],"torro_element_settings":["torro-forms"],"torro_elements":["torro-forms"],"torro_submission_values":["torro-forms"],"torro_submissionmeta":["torro-forms"],"torro_submissions":["torro-forms"],"torro_element_answers":["torro-forms"],"torro_email_notifications":["torro-forms"],"torro_participants":["torro-forms"],"torro_result_values":["torro-forms"],"torro_results":["torro-forms"],"prayer_comment":["wp-prayer"],"prayer_engine":["wp-prayer"],"prayer_users":["wp-prayer"],"vspfw":["very-simple-password"],"dmm_menu":["different-menu-in-different-pages"],"opalestate_usersearch":["opal-estate","opal-estate-pro"],"internalinks":["internal-links-generator"],"jssor_slider_sliders":["jssor-slider"],"jssor_slider_trans":["jssor-slider"],"webpages_data":["wp-hosting-performance-check"],"fca_lpc_subscribers":["landing-page-cat"],"mts_locker_stats":["content-locker"],"rps_batches":["easy-student-results"],"rps_departments":["easy-student-results"],"rps_exam_record_meta":["easy-student-results"],"rps_exam_records":["easy-student-results"],"rps_exams":["easy-student-results"],"rps_grade":["easy-student-results"],"rps_marks":["easy-student-results"],"ca3d_model":["canvasio3d-light"],"volunteer_emails":["wired-impact-volunteer-management"],"volunteer_rsvps":["wired-impact-volunteer-management"],"easy_amazon_product_information_data":["easy-amazon-product-information"],"olb_history":["online-lesson-booking-system"],"olb_logs":["online-lesson-booking-system"],"olb_timetable":["online-lesson-booking-system"],"g5_board":["gnucommerce","gnupress"],"g5_board_good":["gnucommerce","gnupress"],"g5_point":["gnucommerce","gnupress"],"g5_scrap":["gnucommerce","gnupress"],"g5_term_relationships":["gnucommerce","gnupress"],"g5_term_taxonomy":["gnucommerce","gnupress"],"g5_write":["gnucommerce","gnupress"],"g5_write_comment":["gnucommerce","gnupress"],"g5_writemeta":["gnucommerce","gnupress"],"gc_cert_history":["gnucommerce"],"gc_inicis_log":["gnucommerce"],"gc_item_option":["gnucommerce"],"gc_item_use":["gnucommerce"],"gc_shop_cart":["gnucommerce"],"gc_shop_coupon":["gnucommerce"],"gc_shop_coupon_log":["gnucommerce"],"gc_shop_item":["gnucommerce"],"gc_shop_item_qa":["gnucommerce"],"gc_shop_item_stocksms":["gnucommerce"],"gc_shop_mileage":["gnucommerce"],"gc_shop_order":["gnucommerce"],"gc_shop_order_data":["gnucommerce"],"gc_shop_order_delete":["gnucommerce"],"gc_shop_personalpay":["gnucommerce"],"gc_shop_sendcost":["gnucommerce"],"gc_shop_wish":["gnucommerce"],"gc_uniqid":["gnucommerce"],"opalhotel_order_itemmeta":["opal-hotel-room-booking"],"opalhotel_order_items":["opal-hotel-room-booking"],"opalhotel_pricing":["opal-hotel-room-booking"],"opalhotel_rating_item":["opal-hotel-room-booking"],"opalhotel_ratings":["opal-hotel-room-booking"],"mpd_log":["multisite-post-duplicator"],"os_diagnosis_generator_data":["os-diagnosis-generator"],"os_diagnosis_generator_detail_data":["os-diagnosis-generator"],"os_diagnosis_generator_form_options":["os-diagnosis-generator"],"os_diagnosis_generator_question_data":["os-diagnosis-generator"],"atkp_additionaloffers":["affiliate-toolkit-starter"],"bodi0_bot_counter":["bodi0s-bots-visits-counter"],"il_local":["inlocation"],"woo_square_integration_deleted_data":["woosquare"],"woo_square_integration_logs":["woosquare"],"wpbannerizeclicks":["wp-bannerize-pro"],"wpbannerizeimpressions":["wp-bannerize-pro"],"w_p_bannerize_clicks":["wp-bannerize-pro"],"w_p_bannerize_impressions":["wp-bannerize-pro"],"wm_maps":["tree-website-map"],"wm_trees":["tree-website-map"],"envato_items_sales":["nd-stats-for-envato-sales-by-item"],"mwp_skype_free":["mwp-skype"],"wow_skype_free":["mwp-skype"],"wow_skype_new":["mwp-skype"],"wppen_jobs":["wp-post-email-notification"],"wppen_subscribers":["wp-post-email-notification"],"tp_image_optimizer":["tp-image-optimizer"],"wpms":["shortcode-gallery-for-matterport-showcase"],"b_testimo_slide":["easy-testimonial-rotator"],"wpcrm_system_recurring_entries":["wp-crm-system"],"attmgr_schedule":["attendance-manager"],"church_admin_app":["church-admin"],"church_admin_attendance":["church-admin"],"church_admin_brplan":["church-admin"],"church_admin_calendar_category":["church-admin"],"church_admin_calendar_date":["church-admin"],"church_admin_classes":["church-admin"],"church_admin_comments":["church-admin"],"church_admin_email":["church-admin"],"church_admin_email_build":["church-admin"],"church_admin_facilities":["church-admin"],"church_admin_follow_up":["church-admin"],"church_admin_funnels":["church-admin"],"church_admin_hope_team":["church-admin"],"church_admin_household":["church-admin"],"church_admin_individual_attendance":["church-admin"],"church_admin_kidswork":["church-admin"],"church_admin_member_types":["church-admin"],"church_admin_ministries":["church-admin"],"church_admin_new_rota":["church-admin"],"church_admin_people":["church-admin"],"church_admin_people_meta":["church-admin"],"church_admin_rota_settings":["church-admin"],"church_admin_safeguarding":["church-admin"],"church_admin_sermon_files":["church-admin"],"church_admin_sermon_series":["church-admin"],"church_admin_services":["church-admin"],"church_admin_session":["church-admin"],"church_admin_session_meta":["church-admin"],"church_admin_sites":["church-admin"],"church_admin_smallgroup":["church-admin"],"church_admin_bible_books":["church-admin"],"church_admin_bookings":["church-admin"],"church_admin_events":["church-admin"],"church_admin_tickets":["church-admin"],"church_admin_custom_fields":["church-admin"],"church_admin_app_visits":["church-admin"],"church_admin_cell_structure":["church-admin"],"church_admin_event_payments":["church-admin"],"church_admin_unit_meta":["church-admin"],"church_admin_units":["church-admin"],"church_admin_livestream_comments":["church-admin"],"liv_tbl":["church-admin"],"church_admin_covid_attendance":["church-admin"],"church_admin_giving":["church-admin"],"church_admin_pledge":["church-admin"],"church_admin_twilio_messages":["church-admin"],"church_admin_facilities_bookings":["church-admin"],"church_admin_custom_fields_meta":["church-admin"],"church_admin_giving_meta":["church-admin"],"church_admin_donor_receipts":["church-admin"],"timetable":["daily-prayer-time-for-mosques"],"timetable_cities":["daily-prayer-time-for-mosques"],"supsystic_membership_activity":["membership-by-supsystic"],"supsystic_membership_activity_images":["membership-by-supsystic"],"supsystic_membership_activity_links":["membership-by-supsystic"],"supsystic_membership_activity_tags":["membership-by-supsystic"],"supsystic_membership_albums":["membership-by-supsystic"],"supsystic_membership_albums_images":["membership-by-supsystic"],"supsystic_membership_attachments":["membership-by-supsystic"],"supsystic_membership_conversations":["membership-by-supsystic"],"supsystic_membership_conversations_users":["membership-by-supsystic"],"supsystic_membership_conversations_users_blocks":["membership-by-supsystic"],"supsystic_membership_fields":["membership-by-supsystic"],"supsystic_membership_fields_data":["membership-by-supsystic"],"supsystic_membership_followers":["membership-by-supsystic"],"supsystic_membership_friends":["membership-by-supsystic"],"supsystic_membership_groups":["membership-by-supsystic"],"supsystic_membership_groups_albums":["membership-by-supsystic"],"supsystic_membership_groups_blacklists":["membership-by-supsystic"],"supsystic_membership_groups_followers":["membership-by-supsystic"],"supsystic_membership_groups_images":["membership-by-supsystic"],"supsystic_membership_groups_invites":["membership-by-supsystic"],"supsystic_membership_groups_settings":["membership-by-supsystic"],"supsystic_membership_groups_tags":["membership-by-supsystic"],"supsystic_membership_groups_users":["membership-by-supsystic"],"supsystic_membership_images":["membership-by-supsystic"],"supsystic_membership_images_thumbnails":["membership-by-supsystic"],"supsystic_membership_links":["membership-by-supsystic"],"supsystic_membership_messages":["membership-by-supsystic"],"supsystic_membership_messages_users":["membership-by-supsystic"],"supsystic_membership_notifications":["membership-by-supsystic"],"supsystic_membership_photo_gallery":["membership-by-supsystic"],"supsystic_membership_photo_gallery_images":["membership-by-supsystic"],"supsystic_membership_reports":["membership-by-supsystic"],"supsystic_membership_roles":["membership-by-supsystic"],"supsystic_membership_settings":["membership-by-supsystic"],"supsystic_membership_slider":["membership-by-supsystic"],"supsystic_membership_slider_images":["membership-by-supsystic"],"supsystic_membership_tags":["membership-by-supsystic"],"supsystic_membership_users_albums":["membership-by-supsystic"],"supsystic_membership_users_images":["membership-by-supsystic"],"supsystic_membership_users_roles":["membership-by-supsystic"],"supsystic_membership_users_statuses":["membership-by-supsystic"],"supsystic_membership_google_maps_easy":["membership-by-supsystic"],"supsystic_membership_activity_attachments":["membership-by-supsystic"],"supsystic_membership_attachment_type":["membership-by-supsystic"],"supsystic_membership_attachments_all":["membership-by-supsystic"],"supsystic_membership_badge":["membership-by-supsystic"],"supsystic_membership_groups_category":["membership-by-supsystic"],"supsystic_membership_messages_attachments":["membership-by-supsystic"],"supsystic_membership_users_badges_points":["membership-by-supsystic"],"gs_team":["gs-team-members"],"plgsggeo_config":["wp-geo-website-protection","easy-geo-blocker-and-redirect","advanced-geo-protection"],"plgsggeo_ip":["wp-geo-website-protection","easy-geo-blocker-and-redirect","advanced-geo-protection"],"plgsggeo_stats":["wp-geo-website-protection","easy-geo-blocker-and-redirect","advanced-geo-protection"],"post_views_count__spvc":["simple-post-views-count"],"simple_post_views_count__errors_log":["simple-post-views-count"],"ah_stats":["antihacker"],"ah_blockeds":["antihacker"],"ah_visitorslog":["antihacker"],"ah_fingerprint":["antihacker"],"ah_tor":["antihacker"],"ah_rules":["antihacker"],"ah_scan":["antihacker"],"ah_scan_files":["antihacker"],"mapsvg_r2d":["mapsvg-lite-interactive-vector-maps"],"mapsvg_schema":["mapsvg-lite-interactive-vector-maps"],"cart":["activedemand"],"cart_product":["activedemand"],"activedemand_access":["activedemand"],"activedemand_access_rule":["activedemand"],"cf_geo_seo_redirection":["cf-geoplugin"],"cfgp_rest_access_token":["cf-geoplugin"],"cfgp_seo_redirection":["cf-geoplugin"],"dwul_disable_user_email":["wp-users-disable"],"salon_branch":["salon-booking"],"salon_category":["salon-booking"],"salon_customer":["salon-booking"],"salon_customer_record":["salon-booking"],"salon_item":["salon-booking"],"salon_log":["salon-booking"],"salon_photo":["salon-booking"],"salon_position":["salon-booking"],"salon_promotion":["salon-booking"],"salon_reservation":["salon-booking"],"salon_sales":["salon-booking"],"salon_staff":["salon-booking"],"salon_working":["salon-booking"],"upfs_files":["upstream"],"jackmail_campaigns":["jackmail-newsletters"],"jackmail_lists":["jackmail-newsletters"],"jackmail_lists_contacts_1":["jackmail-newsletters"],"jackmail_scenarios":["jackmail-newsletters"],"jackmail_scenarios_events":["jackmail-newsletters"],"jackmail_templates":["jackmail-newsletters"],"jackmail_campaigns_urls":["jackmail-newsletters"],"jackmail_scenarios_urls":["jackmail-newsletters"],"jackmail_woocommerce_email_notification":["jackmail-newsletters"],"sirv_images":["sirv"],"sirv_shortcodes":["sirv"],"sirv_fetching_errors":["sirv"],"easytimetable_planning":["easytimetable-responsive-schedule-management-system"],"worthy_markers":["wp-worthy"],"wow_bmp":["bubble-menu"],"wow_fp":["wpcalc"],"emailoctopus_custom_fields":["emailoctopus"],"emailoctopus_forms":["emailoctopus"],"emailoctopus_forms_meta":["emailoctopus"],"cbxuseronline":["cbxuseronline"],"wpre_emails":["wp-reroute-email"],"optionspage_fields":["custom-settings"],"optionspage_section":["custom-settings"],"woocommerce_order_alert":["woc-order-alert"],"woocommerce_order_listener":["woc-order-alert"],"integrity_checker_files":["integrity-checker"],"wpbooklist_jre_active_extensions":["wpbooklist"],"wpbooklist_jre_book_quotes":["wpbooklist"],"wpbooklist_jre_list_dynamic_db_names":["wpbooklist"],"wpbooklist_jre_page_options":["wpbooklist"],"wpbooklist_jre_post_options":["wpbooklist"],"wpbooklist_jre_saved_book_log":["wpbooklist"],"wpbooklist_jre_saved_books_for_featured":["wpbooklist"],"wpbooklist_jre_saved_page_post_log":["wpbooklist"],"wpbooklist_jre_user_options":["wpbooklist"],"wpbooklist_jre_color_options":["wpbooklist"],"wpbooklist_jre_storytime_stories":["wpbooklist"],"wpbooklist_jre_storytime_stories_settings":["wpbooklist"],"wpbooklist_jre_users_table":["wpbooklist"],"poststats_visits":["wp-post-real-time-statistics"],"a4barcode_custom_formats":["a4-barcode-generator"],"a4barcode_paper_formats":["a4-barcode-generator"],"a4barcode_custom_templates":["a4-barcode-generator"],"barcode_v3_dimension":["a4-barcode-generator"],"barcode_v3_label_sheets":["a4-barcode-generator"],"barcode_v3_paper_formats":["a4-barcode-generator"],"barcode_v3_profiles":["a4-barcode-generator"],"barcode_v3_shortcodes":["a4-barcode-generator"],"barcode_v3_template_to_user":["a4-barcode-generator"],"barcode_v3_templates":["a4-barcode-generator"],"barcode_v3_fields_matching":["a4-barcode-generator"],"barcode_v3_user_settings":["a4-barcode-generator"],"tsi_docs":["fulltext-search"],"tsi_index":["fulltext-search"],"tsi_stops":["fulltext-search"],"tsi_vectors":["fulltext-search"],"tsi_words":["fulltext-search"],"kjm_notices_views":["kjm-admin-notices"],"c2c_config":["cart2cart-magento-to-woocommerce-migration","cart2cart-shopify-to-woocommerce-migration","cart2cart-opencart-to-woocommerce-migration","cart2cart-virtuemart-to-woocommerce-migration","cart2cart-woocommerce-to-woocommerce-migration","cart2cart-bigcommerce-to-woocommerce-migration","cart2cart-zen-cart-to-woocommerce-migration","cart2cart-wp-e-commerce-to-woocommerce-migration","cart2cart-jigoshop-to-woocommerce-migration"],"formlift_submissions":["formlift"],"formlift_impressions":["formlift"],"formlift_sessions":["formlift"],"wpdevart_gallery":["gallery-album"],"wpdevart_gallery_theme":["gallery-album"],"wpdevart_images":["gallery-album"],"wpdevart_gallery_popup_theme":["gallery-album"],"skrill_transaction_log":["official-skrill-woocommerce"],"cbxwpbookmark":["cbxwpbookmark"],"cbxwpbookmarkcat":["cbxwpbookmark"],"woocommerce_cpsi":["corvuspay-woocommerce-integration"],"wp_optimisation_sizes_info":["cache-performance"],"wp_cache_gravatars":["cache-performance"],"wsdesk_settings":["wsdesk","elex-helpdesk-customer-support-ticket-system"],"wsdesk_settingsmeta":["wsdesk","elex-helpdesk-customer-support-ticket-system"],"wsdesk_tickets":["wsdesk","elex-helpdesk-customer-support-ticket-system"],"wsdesk_ticketsmeta":["wsdesk","elex-helpdesk-customer-support-ticket-system"],"ubigeo_departamento":["ubigeo-peru","ubigeo-peru-woocommerce"],"ubigeo_distrito":["ubigeo-peru","ubigeo-peru-woocommerce"],"ubigeo_provincia":["ubigeo-peru","ubigeo-peru-woocommerce"],"em_attendees":["event-monster"],"rich_web_cs_font_family":["coming-soons"],"rich_web_cs_form_fields":["coming-soons"],"rich_web_cs_forms_cust_id":["coming-soons"],"rich_web_cs_forms_info":["coming-soons"],"rich_web_cs_forms_mails":["coming-soons"],"rich_web_cs_forms_options":["coming-soons"],"rich_web_cs_forms_saved":["coming-soons"],"rich_web_cs_forms_themes1":["coming-soons"],"rich_web_cs_forms_themes2":["coming-soons"],"rich_web_cs_forms_themes3":["coming-soons"],"bsk_gfbl_items":["bsk-gravityforms-blacklist"],"bsk_gfbl_list":["bsk-gravityforms-blacklist"],"bsk_gfbl_entries":["bsk-gravityforms-blacklist"],"bsk_gfbl_hits":["bsk-gravityforms-blacklist"],"iz_notifications_onpush":["izooto-web-push"],"reviews_configuration":["netreviews"],"reviews_products_average":["netreviews"],"reviews_products_reviews":["netreviews"],"netreviews_configuration":["netreviews"],"netreviews_products_average":["netreviews"],"netreviews_products_reviews":["netreviews"],"avatar_privacy":["avatar-privacy"],"avatar_privacy_hashes":["avatar-privacy"],"giveasap_entries":["giveasap"],"giveasap_meta":["giveasap"],"giveasap_actions":["giveasap"],"kbs_customermeta":["kb-support"],"kbs_customers":["kb-support"],"wpyelp_post_templates":["wp-yelp-review-slider"],"wpyelp_reviews":["wp-yelp-review-slider"],"wcusage_clicks":["woo-coupon-usage"],"image_hover_with_carousel_list":["image-hover-effects-with-carousel"],"image_hover_with_carousel_style":["image-hover-effects-with-carousel"],"wpfd_statistics":["wp-smart-editor"],"wptm_categories":["wp-smart-editor"],"wptm_charts":["wp-smart-editor"],"wptm_charttypes":["wp-smart-editor"],"wptm_styles":["wp-smart-editor"],"wptm_tables":["wp-smart-editor"],"ezfc_debug":["ez-form-calculator","ez-form-calculator-premium"],"ezfc_files":["ez-form-calculator","ez-form-calculator-premium"],"ezfc_forms":["ez-form-calculator","ez-form-calculator-premium"],"ezfc_forms_elements":["ez-form-calculator","ez-form-calculator-premium"],"ezfc_forms_options":["ez-form-calculator","ez-form-calculator-premium"],"ezfc_options":["ez-form-calculator","ez-form-calculator-premium"],"ezfc_preview":["ez-form-calculator","ez-form-calculator-premium"],"ezfc_submissions":["ez-form-calculator","ez-form-calculator-premium"],"ezfc_templates":["ez-form-calculator","ez-form-calculator-premium"],"ezfc_forms_views":["ez-form-calculator","ez-form-calculator-premium"],"lhr_log":["log-http-requests"],"media_folder_file_relationship":["wp-media-manager-lite"],"media_folders_lists":["wp-media-manager-lite"],"cms2cms_connector_options":["cms2cms-connector"],"cis_categories":["creative-image-slider"],"cis_images":["creative-image-slider"],"cis_sliders":["creative-image-slider"],"revision_control":["companion-revision-manager"],"agodapartnertextlink":["agoda-affiliate-partners-text-link-generator"],"mailplus_logs":["wp-sendgrid-mailer"],"liveforms_conreqs":["liveforms"],"liveforms_stats":["liveforms"],"liveforms_addons":["liveforms"],"liveforms_addons_active":["liveforms"],"liveforms_addons_form_details":["liveforms"],"liveforms_payments":["liveforms"],"liveforms_replies":["liveforms"],"delipress_list_subscriber":["delipress"],"delipress_optin_stats":["delipress"],"delipress_subscriber":["delipress"],"delipress_meta":["delipress"],"delipress_subscriber_meta":["delipress"],"wp_openstreetmap":["wp-open-street-map"],"wp_openstreetmap_markers":["wp-open-street-map"],"e_gallery":["video-slider-with-thumbnails"],"ecs_subscribers":["everest-coming-soon-lite"],"_uwpm_email_links_clicked_events":["ultimate-wp-mail"],"_uwpm_email_open_events":["ultimate-wp-mail"],"_uwpm_email_send_events":["ultimate-wp-mail"],"_uwpm_email_only_users":["ultimate-wp-mail"],"ewd_uwpm_email_links_clicked_events":["ultimate-wp-mail"],"ewd_uwpm_email_only_users":["ultimate-wp-mail"],"ewd_uwpm_email_open_events":["ultimate-wp-mail"],"ewd_uwpm_email_send_events":["ultimate-wp-mail"],"hypeanimations":["tumult-hype-animations"],"novomap_gmap":["novo-map"],"novomap_marker":["novo-map"],"novomap_marker_logo":["novo-map"],"cron_logs":["cron-logger"],"raysgrid_setting":["rays-grid"],"premmerce_price_types":["premmerce-woocommerce-wholesale-pricing"],"premmerce_price_types_roles":["premmerce-woocommerce-wholesale-pricing"],"melipayamak_gfverification":["melipayamak"],"melipayamak_groups":["melipayamak","melipayamak-woocommerce-sms"],"melipayamak_members":["melipayamak","melipayamak-woocommerce-sms"],"melipayamak_messages":["melipayamak","melipayamak-woocommerce-sms"],"wxsync_config":["wxsync"],"premmerce_redirects":["premmerce-redirect-manager"],"sb_queue":["servebolt-optimizer"],"premmerce_wishlist":["premmerce-woocommerce-wishlist"],"premmerce_bundles":["premmerce-woocommerce-product-bundles"],"premmerce_bundles_products":["premmerce-woocommerce-product-bundles"],"banhammer":["banhammer"],"wpda_vertical_menu_theme":["wpdevart-vertical-menu"],"mb_relationships":["mb-relationships","curbside-pickup"],"cocart_carts":["cart-rest-api-for-woocommerce"],"mwt_search_history":["search-analytics"],"mwt_search_terms":["search-analytics"],"seur_custom_rates":["seur"],"seur_svpr":["seur"],"wapg_coin_addresses":["woo-altcoin-payment-gateway"],"wapg_coin_offers":["woo-altcoin-payment-gateway"],"wapg_coins":["woo-altcoin-payment-gateway"],"wapg_coin_transactions":["woo-altcoin-payment-gateway"],"eventer_users":["eventer"],"pafw_transaction":["pgall-for-woocommerce"],"pafw_statistics":["pgall-for-woocommerce"],"to_hootsuite_log":["wp-to-hootsuite"],"stax_active_headers":["stax"],"stax_columns":["stax"],"stax_components":["stax"],"stax_elements":["stax"],"stax_grp_header":["stax"],"stax_grp_header_items":["stax"],"stax_headers":["stax"],"stax_templates":["stax"],"stax_container_items":["stax"],"stax_container_viewport":["stax"],"stax_containers":["stax"],"stax_zones":["stax"],"mcwp_coins":["cryptocurrency-widgets-pack"],"shop_ct_attributes":["shopconstruct"],"shop_ct_cart":["shopconstruct"],"shop_ct_download_permissions":["shopconstruct"],"shop_ct_order_meta":["shopconstruct"],"shop_ct_order_products":["shopconstruct"],"shop_ct_product_meta":["shopconstruct"],"shop_ct_sessions":["shopconstruct"],"shop_ct_shipping_zone_countries":["shopconstruct"],"shop_ct_shipping_zones":["shopconstruct"],"zp_locations":["print-google-cloud-print-gcp-woocommerce"],"nd_travel_booking":["nd-travel"],"bingmappro_map_pins":["api-bing-map-2018"],"bingmappro_maps":["api-bing-map-2018"],"bingmappro_pins":["api-bing-map-2018"],"bingmappro_map_shapes":["api-bing-map-2018"],"bingmappro_shapes":["api-bing-map-2018"],"bingmappro_map_shortcodes":["api-bing-map-2018"],"buddykit_user_files":["buddykit"],"votes_custom_field_contestant":["wp-voting-contest"],"votes_custom_registeration_contestant":["wp-voting-contest"],"votes_post_contestant_track":["wp-voting-contest"],"votes_post_entry_contestant":["wp-voting-contest"],"votes_tbl":["wp-voting-contest"],"votes_user_entry_contestant":["wp-voting-contest"],"shwattributes":["showcaster"],"shwcatalogproductattributes":["showcaster"],"shwcatalogproductcategories":["showcaster"],"shwcatalogproductoptions":["showcaster"],"shwcatalogproducts":["showcaster"],"shwcatalogproductthumbnails":["showcaster"],"shwcatalogs":["showcaster"],"shwcategories":["showcaster"],"shwproductoptions":["showcaster"],"shwthemes":["showcaster"],"cfx_form_forms":["crm-perks-forms"],"vnr_visitors":["the-visitor-counter"],"wpairbnb_reviews":["wp-airbnb-review-slider"],"wpairbnb_post_templates":["wp-airbnb-review-slider"],"zpm_activity":["zephyr-project-manager"],"zpm_categories":["zephyr-project-manager"],"zpm_messages":["zephyr-project-manager"],"zpm_projects":["zephyr-project-manager"],"zpm_tasks":["zephyr-project-manager"],"paytm_donation":["paytm-donation","wp-paytm-pay"],"paytm_donation_order_data":["paytm-donation"],"audima_plugin_audio":["audima"],"wsf_field":["ws-form"],"wsf_field_meta":["ws-form"],"wsf_form":["ws-form"],"wsf_form_meta":["ws-form"],"wsf_group":["ws-form"],"wsf_group_meta":["ws-form"],"wsf_section":["ws-form"],"wsf_section_meta":["ws-form"],"wsf_submit":["ws-form"],"wsf_submit_meta":["ws-form"],"wsf_wizard":["ws-form"],"wsf_wizard_category":["ws-form"],"wsf_form_stat":["ws-form"],"iconpresslite_collections":["iconpress-lite"],"iconpresslite_icons":["iconpress-lite"],"ff_customer_cache":["flowfact-wp-connector"],"ff_entity_cache":["flowfact-wp-connector"],"ff_general_cache":["flowfact-wp-connector"],"ff_schema_cache":["flowfact-wp-connector"],"mpesa_trx":["woo-m-pesa-payment-gateway"],"vxcf_ccontact":["cf7-constant-contact"],"vxcf_ccontact_accounts":["cf7-constant-contact"],"vxcf_ccontact_log":["cf7-constant-contact"],"bc_import_queue":["bigcommerce"],"bc_products":["bigcommerce"],"bc_reviews":["bigcommerce"],"bc_variants":["bigcommerce"],"cptslotsbk_forms":["wp-time-slots-booking-form"],"cptslotsbk_messages":["wp-time-slots-booking-form"],"oada_scans":["online-accessibility"],"oada_false_positives":["online-accessibility"],"shortcode_imdb_cache":["shortcode-imdb"],"share_logins_log":["share-logins"],"mpg_projects":["multiple-pages-generator-by-porthas"],"mpg_spintax":["multiple-pages-generator-by-porthas"],"mpg_cache":["multiple-pages-generator-by-porthas"],"mpg_logs":["multiple-pages-generator-by-porthas"],"serial_numbers":["wc-serial-numbers"],"serial_numbers_activations":["wc-serial-numbers"],"clickervolt_actions":["clickervolt"],"clickervolt_actions_summary":["clickervolt"],"clickervolt_aids":["clickervolt"],"clickervolt_clicks":["clickervolt"],"clickervolt_devices":["clickervolt"],"clickervolt_funnel_links":["clickervolt"],"clickervolt_geos":["clickervolt"],"clickervolt_links":["clickervolt"],"clickervolt_parallel_ids":["clickervolt"],"clickervolt_referrers":["clickervolt"],"clickervolt_source_templates":["clickervolt"],"clickervolt_stats_base":["clickervolt"],"clickervolt_stats_whole_path":["clickervolt"],"clickervolt_stats_whole_path_devices":["clickervolt"],"clickervolt_stats_whole_path_geos":["clickervolt"],"clickervolt_stats_whole_path_referrers":["clickervolt"],"clickervolt_stats_whole_path_var1":["clickervolt"],"clickervolt_stats_whole_path_var10":["clickervolt"],"clickervolt_stats_whole_path_var2":["clickervolt"],"clickervolt_stats_whole_path_var3":["clickervolt"],"clickervolt_stats_whole_path_var4":["clickervolt"],"clickervolt_stats_whole_path_var5":["clickervolt"],"clickervolt_stats_whole_path_var6":["clickervolt"],"clickervolt_stats_whole_path_var7":["clickervolt"],"clickervolt_stats_whole_path_var8":["clickervolt"],"clickervolt_stats_whole_path_var9":["clickervolt"],"clickervolt_suspicious_clicks":["clickervolt"],"clickervolt_urls_paths":["clickervolt"],"clickervolt_external_ids":["clickervolt"],"clickervolt_custom_reports":["clickervolt"],"gdsec_csp_reports":["gd-security-headers"],"gdsec_xxp_reports":["gd-security-headers"],"rednaopdfwpform_form_config":["pdf-builder-for-wpforms"],"rednaopdfwpform_records":["pdf-builder-for-wpforms"],"rednaopdfwpform_templates":["pdf-builder-for-wpforms"],"rednaopdfwpform_custom_field":["pdf-builder-for-wpforms"],"rednaopdfwpform_links":["pdf-builder-for-wpforms"],"sendlelogs":["official-sendle-shipping-method"],"nmmpro_carousel":["nomiddleman-crypto-payments-for-woocommerce"],"nmmpro_hd_addresses":["nomiddleman-crypto-payments-for-woocommerce"],"nmmpro_payments":["nomiddleman-crypto-payments-for-woocommerce"],"wordable":["wordable"],"pvs_counter":["post-views-stats-counter"],"zmhub_forms":["zoho-marketinghub"],"honeypot_wp_comments_logs":["honeypot-for-wp-comment"],"ethpress_addresses":["ethpress"],"wp_radio_statistics":["wp-radio"],"wp_radio_visitors":["wp-radio"],"automatic_text_generator_for_important_pages__errors_log":["automatic-pages-for-privacy-policy-terms-about-and-contact"],"vxc_qbooks_accounts":["wp-woocommerce-quickbooks"],"vxc_qbooks_log":["wp-woocommerce-quickbooks"],"applets_subscribe_message":["wp-mini-program"],"applets_subscribe_user":["wp-mini-program"],"gks_sliders":["yoo-slider"],"gks_slides":["yoo-slider"],"webpay_transactions":["wc-transbank-webpay-plus"],"wqforms":["aforms-form-builder-for-price-calculator-cost-estimation"],"wqorders":["aforms-form-builder-for-price-calculator-cost-estimation"],"lsd_data":["listdom"],"cex_customer_codes":["correos-express"],"cex_customer_options":["correos-express"],"cex_envios_bultos":["correos-express"],"cex_history":["correos-express"],"cex_migrations":["correos-express"],"cex_officedeliverycorreo":["correos-express"],"cex_savedmodeships":["correos-express"],"cex_savedsenders":["correos-express"],"cex_savedships":["correos-express"],"wlsm_admin_subject":["school-management-system"],"wlsm_admins":["school-management-system"],"wlsm_class_school":["school-management-system"],"wlsm_classes":["school-management-system"],"wlsm_inquiries":["school-management-system"],"wlsm_invoices":["school-management-system"],"wlsm_notices":["school-management-system"],"wlsm_payments":["school-management-system"],"wlsm_promotions":["school-management-system"],"wlsm_roles":["school-management-system"],"wlsm_schools":["school-management-system"],"wlsm_sections":["school-management-system"],"wlsm_sessions":["school-management-system"],"wlsm_settings":["school-management-system"],"wlsm_staff":["school-management-system"],"wlsm_student_records":["school-management-system"],"wlsm_subjects":["school-management-system"],"cfm_shows":["captivatesync-trade"],"mzldr_impressions":["maz-loader"],"mzldr_loaders":["maz-loader"],"wpreactions_reacted_users":["wp-reactions-lite"],"fwantispam_log":["fullworks-anti-spam"],"vikrentcar_busy":["vikrentcar"],"vikrentcar_caratteristiche":["vikrentcar"],"vikrentcar_cars":["vikrentcar"],"vikrentcar_categories":["vikrentcar"],"vikrentcar_config":["vikrentcar"],"vikrentcar_countries":["vikrentcar"],"vikrentcar_coupons":["vikrentcar"],"vikrentcar_custfields":["vikrentcar"],"vikrentcar_customers":["vikrentcar"],"vikrentcar_customers_orders":["vikrentcar"],"vikrentcar_dispcost":["vikrentcar"],"vikrentcar_dispcosthours":["vikrentcar"],"vikrentcar_gpayments":["vikrentcar"],"vikrentcar_hourscharges":["vikrentcar"],"vikrentcar_iva":["vikrentcar"],"vikrentcar_locfees":["vikrentcar"],"vikrentcar_oldorders":["vikrentcar"],"vikrentcar_oohfees":["vikrentcar"],"vikrentcar_oohfees_locxref":["vikrentcar"],"vikrentcar_optionals":["vikrentcar"],"vikrentcar_orders":["vikrentcar"],"vikrentcar_places":["vikrentcar"],"vikrentcar_prices":["vikrentcar"],"vikrentcar_restrictions":["vikrentcar"],"vikrentcar_seasons":["vikrentcar"],"vikrentcar_texts":["vikrentcar"],"vikrentcar_tmplock":["vikrentcar"],"vikrentcar_tracking_infos":["vikrentcar"],"vikrentcar_trackings":["vikrentcar"],"vikrentcar_translations":["vikrentcar"],"vikrentcar_usersdata":["vikrentcar"],"vikrentcar_wpshortcodes":["vikrentcar"],"vikrentcar_cronjobs":["vikrentcar"],"vikrentcar_critical_dates":["vikrentcar"],"vikrentcar_orderhistory":["vikrentcar"],"wczp_postcode":["check-pincodezipcode-for-shipping-woocommerce"],"slicewp_affiliate_meta":["slicewp"],"slicewp_affiliates":["slicewp"],"slicewp_commission_meta":["slicewp"],"slicewp_commissions":["slicewp"],"slicewp_creatives":["slicewp"],"slicewp_payment_meta":["slicewp"],"slicewp_payments":["slicewp"],"slicewp_payout_meta":["slicewp"],"slicewp_payouts":["slicewp"],"slicewp_visits":["slicewp"],"slicewp_notes":["slicewp"],"slicewp_customer_meta":["slicewp"],"slicewp_customers":["slicewp"],"upd_amazon_plugin":["add-replace-affiliate-links-for-amazon"],"upd_amazon_updated_pages":["add-replace-affiliate-links-for-amazon"],"upd_amazon_jobs_log":["add-replace-affiliate-links-for-amazon"],"wc_mewz_wcas_match_rows":["attribute-stock-for-woocommerce"],"wc_mewz_wcas_match_sets":["attribute-stock-for-woocommerce"],"wcas_match_rows":["attribute-stock-for-woocommerce"],"wcas_match_sets":["attribute-stock-for-woocommerce"],"whitepage":["white-page-publication"],"update_tracking":["wp-client-reports"],"brm_groups":["best-restaurant-menu-by-pricelisto"],"brm_items":["best-restaurant-menu-by-pricelisto"],"brm_options":["best-restaurant-menu-by-pricelisto"],"popup_box":["popup-box"],"wpsd_stripe_donation":["wp-stripe-donation"],"dropshipping_logs":["bdroppy"],"dropshipping_orders":["bdroppy"],"dropshipping_product_models":["bdroppy"],"dropshipping_products":["bdroppy"],"dropshipping_queues":["bdroppy"],"wpcal_availability_dates":["wpcal"],"wpcal_availability_periods":["wpcal"],"wpcal_background_tasks":["wpcal"],"wpcal_bookings":["wpcal"],"wpcal_calendar_accounts":["wpcal"],"wpcal_calendar_events":["wpcal"],"wpcal_calendars":["wpcal"],"wpcal_service_admins":["wpcal"],"wpcal_service_availability":["wpcal"],"wpcal_service_availability_slots_cache":["wpcal"],"wpcal_services":["wpcal"],"wpcal_tp_accounts":["wpcal"],"wpcal_tp_resources":["wpcal"],"wpcal_admins":["wpcal"],"wpcal_notices":["wpcal"],"sgbv":["simple-googlebot-visit"],"bulletinwp_bulletins":["bulletin-announcements"],"bulletinwp_options":["bulletin-announcements"],"cl_abandon_cart":["cart-lift"],"cl_campaign_history":["cart-lift"],"cl_email_templates":["cart-lift"],"counter_box":["counter-box"],"qahm_recterm":["qa-heatmap-analytics"],"dv_assign_awb":["delhivery-logistics-courier"],"dv_awb_no_details":["delhivery-logistics-courier"],"dv_logs":["delhivery-logistics-courier"],"dv_my_warehouse":["delhivery-logistics-courier"],"dv_settings":["delhivery-logistics-courier"],"bitforms_email_template":["bit-form"],"bitforms_form":["bit-form"],"bitforms_form_entries":["bit-form"],"bitforms_form_entrymeta":["bit-form"],"bitforms_integration":["bit-form"],"bitforms_reports":["bit-form"],"bitforms_success_messages":["bit-form"],"bitforms_workflows":["bit-form"],"bitforms_form_entry_log":["bit-form"],"bitforms_form_log_details":["bit-form"],"bitforms_form_entry_relatedinfo":["bit-form"],"taggbox_active_widget_user":["taggbox-widget"],"taggbox_collaborator":["taggbox-widget"],"taggbox_user":["taggbox-widget"],"taggbox_widget":["taggbox-widget"],"mihanpanel_sessions":["mihanpanel-lite"],"mihanpanelfields":["mihanpanel-lite"],"mihanpaneltabs":["mihanpanel-lite"],"daextam_autolink":["daext-autolinks-manager"],"daextam_category":["daext-autolinks-manager"],"daextam_statistic":["daext-autolinks-manager"],"daextam_term_group":["daext-autolinks-manager"],"lddfw_orders":["local-delivery-drivers-for-woocommerce"],"kc_appointments":["kivicare-clinic-management-system"],"kc_bill_items":["kivicare-clinic-management-system"],"kc_bills":["kivicare-clinic-management-system"],"kc_clinic_schedule":["kivicare-clinic-management-system"],"kc_clinic_sessions":["kivicare-clinic-management-system"],"kc_clinics":["kivicare-clinic-management-system"],"kc_custom_fields":["kivicare-clinic-management-system"],"kc_custom_fields_data":["kivicare-clinic-management-system"],"kc_doctor_clinic_mappings":["kivicare-clinic-management-system"],"kc_medical_history":["kivicare-clinic-management-system"],"kc_medical_problems":["kivicare-clinic-management-system"],"kc_patient_encounters":["kivicare-clinic-management-system"],"kc_prescription":["kivicare-clinic-management-system"],"kc_receptionist_clinic_mappings":["kivicare-clinic-management-system"],"kc_services":["kivicare-clinic-management-system"],"kc_static_data":["kivicare-clinic-management-system"],"kc_appointment_service_mapping":["kivicare-clinic-management-system"],"kc_service_doctor_mapping":["kivicare-clinic-management-system"],"rapidload_uucss_job":["unusedcss"],"rapidload_uucss_rule":["unusedcss"],"rapidload_job":["unusedcss"],"rapidload_job_data":["unusedcss"],"tablesome_records":["tablesome"],"tablesome_table_0":["tablesome"],"tablesome_table_38":["tablesome"],"tablesome_table_39":["tablesome"],"tablesome_table_40":["tablesome"],"tablesome_event_log":["tablesome"],"hkdev_mm_access_keys":["hkdev-maintenance-mode"],"hkdev_mm_unrestricted_ips":["hkdev-maintenance-mode"],"kata_plus_fonts_manager":["kata-plus"],"yaysmtp_email_logs":["yaysmtp"],"ayssurvey_answers":["survey-maker"],"ayssurvey_question_categories":["survey-maker"],"ayssurvey_questions":["survey-maker"],"ayssurvey_sections":["survey-maker"],"ayssurvey_settings":["survey-maker"],"ayssurvey_submissions":["survey-maker"],"ayssurvey_submissions_questions":["survey-maker"],"ayssurvey_survey_categories":["survey-maker"],"ayssurvey_surveys":["survey-maker"],"app_builder_cart":["app-builder"],"wishsuite_list":["wishsuite"],"wms_labels":["wc-multishipping"],"daexthrmal_connection":["hreflang-manager-lite"],"naaa_item_amazon":["no-api-amazon-affiliate"],"naaa_bestselleer_amazon":["no-api-amazon-affiliate"],"wpda_org_chart_theme":["organization-chart"],"wpda_org_chart_tree":["organization-chart"],"wpda_org_chart_popup_theme":["organization-chart"],"ip_location_block_cache":["ip-location-block"],"ip_location_block_logs":["ip-location-block"],"ip_location_block_stat":["ip-location-block"],"radio_player_statistics":["radio-player"],"ccew_coins":["cryptocurrency-widgets-for-elementor"],"masteriyo_order_itemmeta":["learning-management-system"],"masteriyo_order_items":["learning-management-system"],"masteriyo_quiz_attempts":["learning-management-system"],"masteriyo_sessions":["learning-management-system"],"masteriyo_user_activities":["learning-management-system"],"masteriyo_user_activitymeta":["learning-management-system"],"masteriyo_user_itemmeta":["learning-management-system"],"masteriyo_user_items":["learning-management-system"],"masteriyo_migrations":["learning-management-system"],"masteriyo_notifications":["learning-management-system"],"fs_activities":["fluent-support"],"fs_attachments":["fluent-support"],"fs_conversations":["fluent-support"],"fs_data_metrix":["fluent-support"],"fs_mail_boxes":["fluent-support"],"fs_meta":["fluent-support"],"fs_persons":["fluent-support"],"fs_products":["fluent-support"],"fs_tag_pivot":["fluent-support"],"fs_taggables":["fluent-support"],"fs_tickets":["fluent-support"],"tcp_addresses":["thecartpress"],"tcp_countries":["thecartpress"],"tcp_currencies":["thecartpress"],"tcp_orders":["thecartpress"],"tcp_orders_costs":["thecartpress"],"tcp_orders_costsmeta":["thecartpress"],"tcp_orders_details":["thecartpress"],"tcp_orders_detailsmeta":["thecartpress"],"tcp_ordersmeta":["thecartpress"],"tcp_rel_entities":["thecartpress"],"tcp_tax_rates":["thecartpress"],"tcp_taxes":["thecartpress"],"wpai_blocks":["wp-advertize-it"],"wpai_placements":["wp-advertize-it"],"wpai_settings":["wp-advertize-it"],"meow2_log":["apocalypse-meow"],"information_reel":["information-reel"],"mt_plugin":["message-ticker"],"login_access":["login-security"],"login_access_blacklist":["login-security"],"looksee2_core":["look-see-security-scanner"],"looksee2_files":["look-see-security-scanner"],"looksee3_core":["look-see-security-scanner"],"looksee3_scan_files":["look-see-security-scanner"],"looksee3_scan_warnings":["look-see-security-scanner"],"looksee3_scans":["look-see-security-scanner"],"ww_extras":["widget-wrangler"],"rfr2b_options":["readers-from-rss-2-blog"],"rfr2b_target":["readers-from-rss-2-blog"],"ura_fields":["user-registration-aide"],"ctsop_plugin":["content-text-slider-on-post"],"thequoterotator":["quote-rotator"],"corner_ad":["corner-ad"],"corner_ad_img":["corner-ad"],"simmer_recipe_itemmeta":["simmer"],"simmer_recipe_items":["simmer"],"sgrb_category":["review-builder"],"sgrb_comment":["review-builder"],"sgrb_comment_rating":["review-builder"],"sgrb_page_review":["review-builder"],"sgrb_rate_log":["review-builder"],"sgrb_review":["review-builder"],"sgrb_template":["review-builder"],"sgrb_template_design":["review-builder"],"mnm_spider_tracker":["spider-tracker"],"mnm_spider_tracker_log":["spider-tracker"],"ftcalendar_events":["ft-calendar"],"namaste_certificates":["namaste-lms"],"namaste_history":["namaste-lms"],"namaste_homework_notes":["namaste-lms"],"namaste_homeworks":["namaste-lms"],"namaste_payments":["namaste-lms"],"namaste_student_certificates":["namaste-lms"],"namaste_student_courses":["namaste-lms"],"namaste_student_homeworks":["namaste-lms"],"namaste_student_lessons":["namaste-lms"],"namaste_student_modules":["namaste-lms"],"namaste_visits":["namaste-lms"],"namaste_solution_files":["namaste-lms"],"namaste_course_reviews":["namaste-lms"],"namaste_webhooks":["namaste-lms"],"rj_quickcharts":["rj-quickcharts"],"post_widget_layouts":["wp-posts-master"],"post_widget_rules":["wp-posts-master"],"custom_btns":["button-maker"],"select_post":["button-maker"],"ketchup_rr_bookings":["ketchup-restaurant-reservations"],"ketchup_rr_tables":["ketchup-restaurant-reservations"],"posts_relations":["relation-post-types"],"slider":["wp-slider"],"slider_element":["wp-slider"],"simple_locator_history":["simple-locator"],"plgwpgcp_config":["wp-graphic-captcha-protection"],"erima_donate":["erima-zarinpal-donate"],"wpjoan":["joan"],"dpc_404_redirects":["delucks-seo"],"dpc_statistics":["delucks-seo"],"aeidn_account":["affiliateimporteral"],"aeidn_blacklist":["affiliateimporteral"],"aeidn_goods":["affiliateimporteral"],"aeidn_goods_archive":["affiliateimporteral"],"aeidn_log":["affiliateimporteral"],"aeidn_price_formula":["affiliateimporteral"],"aeidn_stats":["affiliateimporteral"],"urpro":["uptime-robot-monitor"],"vrcalandar":["vr-calendar-sync"],"vrcalandar_bookings":["vr-calendar-sync"],"emailbroadcasting":["e-mail-broadcasting"],"user_info":["resume-upload-form"],"daily_quotes":["cleverwise-daily-quotes"],"easy_query":["easy-query"],"cmeb_free_domains":["cm-email-blacklist"],"cmeb_userlist":["cm-email-blacklist"],"cmeb_email_list":["cm-email-blacklist"],"cstmdmnpg_pages":["custom-admin-page"],"woodle_termmeta":["moowoodle"],"sd_subscribers":["sarbacane-desktop","mailify"],"sd_updates":["sarbacane-desktop","mailify"],"wpc_rules":["wp-courses"],"wpc_connections":["wp-courses"],"wpc_tracking":["wp-courses"],"ycf_fields":["contact-form-master","contact-form-monster"],"ycf_form":["contact-form-master","contact-form-monster"],"wp_criticalcss_api_queue":["wp-criticalcss"],"wp_criticalcss_web_check_queue":["wp-criticalcss"],"wp_criticalcss":["wp-criticalcss"],"wp_criticalcss_processed_items":["wp-criticalcss"],"wp_criticalcss_template_log":["wp-criticalcss"],"wp_video_gallery":["wp-video-gallery-free"],"wp_video_gallery_grids":["wp-video-gallery-free"],"wp_video_gallery_grids_videos":["wp-video-gallery-free"],"wp_video_gallery_params":["wp-video-gallery-free"],"wp_video_gallery_tags":["wp-video-gallery-free"],"accordeonmenuck_styles":["accordeon-menu-ck"],"wp_qiniu_files":["wp-qiniu"],"etcpf_etsy_configuration":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_feeds":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_listings":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_shipping_template":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_feedproducts":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_resolved_product_data":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_category_mappings":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_custom_feed_products":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_listing_variations":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_orders":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_settings":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_etsy_product_count":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_etsy_sync":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_image_links":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_profiles":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_variationupload_preparation":["exportfeed-for-woocommerce-product-to-etsy"],"keyword_stack":["lava-ajax-search"],"ya_turbo_adnetwork":["ya-turbo"],"ya_turbo_feed":["ya-turbo"],"w2dc_content_fields":["web-directory-free"],"w2dc_content_fields_groups":["web-directory-free"],"w2dc_directories":["web-directory-free"],"w2dc_levels":["web-directory-free"],"w2dc_levels_relationships":["web-directory-free"],"w2dc_locations_levels":["web-directory-free"],"w2dc_locations_relationships":["web-directory-free"],"wcsearch_cache":["web-directory-free"],"wss_log":["stock-sync-for-woocommerce"],"em_price_options":["eventprime-event-calendar-management"],"adamlabsgallery_grids":["photo-gallery-portfolio"],"adamlabsgallery_item_elements":["photo-gallery-portfolio"],"adamlabsgallery_item_skins":["photo-gallery-portfolio"],"adamlabsgallery_navigation_skins":["photo-gallery-portfolio"],"forms_to_zapier":["forms-to-zapier"],"avalex":["avalex"],"shipit":["shipit"],"user_shipit":["shipit"],"shipit_emergency_rates":["shipit"],"shipit_communes":["shipit"],"shipit_rates_request":["shipit"],"wfb_form_entries":["conversational-forms"],"wfb_form_entry_meta":["conversational-forms"],"wfb_form_entry_values":["conversational-forms"],"wfb_forms":["conversational-forms"],"wfb_queue_failures":["conversational-forms"],"wfb_queue_jobs":["conversational-forms"],"s201_bai":["ba-plus-before-after-image-slider-free"],"migla_campaign":["total-donations"],"migla_client_log":["total-donations"],"migla_donation":["total-donations"],"migla_donation_meta":["total-donations"],"migla_email":["total-donations"],"migla_email_meta":["total-donations"],"migla_form":["total-donations"],"migla_form_field":["total-donations"],"migla_form_meta":["total-donations"],"migla_languages":["total-donations"],"migla_options":["total-donations"],"migla_redirect":["total-donations"],"p_limitlogin_attempts_logs":["feather-login-page"],"perfecty_push_notifications":["perfecty-push-notifications"],"perfecty_push_users":["perfecty-push-notifications"],"perfecty_push_logs":["perfecty-push-notifications"],"tatum_lazy_nft":["tatum"],"tatum_prepared_nft":["tatum"],"rmmuc_subscribers":["maintenance-mode-and-under-construction-page"],"social_links":["social-links","about-me"],"amazonfeed_cache":["amazonfeed"],"amazonfeed_log":["amazonfeed"],"amazonfeed_products":["amazonfeed"],"a3_rslider_images":["a3-responsive-slider"],"wpex_stats":["wp-experiments-free"],"wpex_titles":["wp-experiments-free"],"smack_ecom_info":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"smackformrelation":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"smackleadbulider_field_manager":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"smackleadbulider_form_field_manager":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"smackleadbulider_shortcode_manager":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"smackthirdpartyformfieldrelation":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"push_encryption_keys":["push-notifications-for-wp"],"push_excluded_categories":["push-notifications-for-wp"],"push_logs":["push-notifications-for-wp"],"push_sent":["push-notifications-for-wp"],"push_tokens":["push-notifications-for-wp"],"push_viewed":["push-notifications-for-wp"],"nl_email":["sendit"],"nl_liste":["sendit"],"tmve_allowed_elements":["tinymce-valid-elements"],"meetup_events":["wp-meetup"],"meetup_groups":["wp-meetup"],"liveoptim_balise_ignore":["liveoptim"],"liveoptim_capping":["liveoptim"],"liveoptim_mot_cle":["liveoptim"],"liveoptim_page_restriction":["liveoptim"],"liveoptim_parametres":["liveoptim"],"liveoptim_pattern":["liveoptim"],"liveoptim_pattern_cible":["liveoptim"],"cunjoshare":["share-social"],"simplehitcounter_hits":["simplehitcounter","visit-counter"],"comments_antispam_log":["antispam"],"zara4_exclude_from_bulk_compression_r1":["zara-4"],"zara4_file_compression_metadata_r1":["zara-4"],"ibeducator_answers":["ibeducator"],"ibeducator_choices":["ibeducator"],"ibeducator_entries":["ibeducator"],"ibeducator_grades":["ibeducator"],"ibeducator_members":["ibeducator"],"ibeducator_payment_lines":["ibeducator"],"ibeducator_payments":["ibeducator"],"ibeducator_questions":["ibeducator"],"ibeducator_tax_rates":["ibeducator"],"ccf":["woo-custom-checkout-field"],"circle_image_carousel":["circle-image-slider-with-lightbox"],"dmec":["dm-confirm-email"],"disclosure_userlabels":["wp-access-areas"],"quiz_answer":["quizzin","jibu-pro"],"quiz_question":["quizzin","jibu-pro"],"quiz_quiz":["quizzin","jibu-pro"],"plugmatter_ab_stats":["plugmatter-optin-feature-box-lite"],"plugmatter_ab_test":["plugmatter-optin-feature-box-lite"],"plugmatter_templates":["plugmatter-optin-feature-box-lite"],"scormcloudinvitationregs":["scormcloud"],"scormcloudinvitations":["scormcloud"],"wpoi_users":["wp-opt-in"],"dbox_slider":["dbox-slider-lite"],"dbox_slider_meta":["dbox-slider-lite"],"dbox_slider_postmeta":["dbox-slider-lite"],"plugin_bota":["seo-crawlytics"],"galleryvotes":["gallery-voting","voting-for-a-photo"],"currencyr":["currencyr"],"wp_sap_answers":["wp-survey-and-poll"],"wp_sap_questions":["wp-survey-and-poll"],"wp_sap_surveys":["wp-survey-and-poll"],"nh_locations":["yournewsapp"],"sph_counter":["wordpress-sphinx-plugin"],"sph_stats":["wordpress-sphinx-plugin"],"documentor":["documentor-lite"],"documentor_feedback":["documentor-lite"],"documentor_sections":["documentor-lite"],"mwp_side_menu_free":["mwp-side-menu"],"wppano_hotspots":["wp-pano"],"swc_crawler_type":["stop-web-crawlers"],"swc_crawlers":["stop-web-crawlers"],"swc_crawlers_log":["stop-web-crawlers"],"script_optimizer":["wp-script-optimizer"],"yk_tt_data":["weight-loss-tracker","covid-19-track-and-trace"],"ws_ls_data":["weight-loss-tracker"],"ws_ls_data_targets":["weight-loss-tracker"],"ws_ls_data_user_preferences":["weight-loss-tracker"],"ws_ls_data_user_stats":["weight-loss-tracker"],"ws_ls_error_log":["weight-loss-tracker"],"ws_ls_meta_entry":["weight-loss-tracker"],"ws_ls_meta_fields":["weight-loss-tracker"],"ws_ls_awards":["weight-loss-tracker"],"ws_ls_awards_given":["weight-loss-tracker"],"ws_ls_email_templates":["weight-loss-tracker"],"ws_ls_groups":["weight-loss-tracker"],"ws_ls_groups_user":["weight-loss-tracker"],"ws_ls_challenges":["weight-loss-tracker"],"ws_ls_challenges_data":["weight-loss-tracker"],"ws_ls_export":["weight-loss-tracker"],"ws_ls_export_report":["weight-loss-tracker"],"ws_ls_meta_groups":["weight-loss-tracker"],"ws_ls_messaging":["weight-loss-tracker"],"clsfy_uploads":["closify-maestro-image-uploader-gallery-builder"],"vagaro":["vagaro-booking-widget"],"woocommerce_buckaroo_transactions":["wc-buckaroo-bpe-gateway"],"buckaroo_log":["wc-buckaroo-bpe-gateway"],"rdp_wiki_embed":["rdp-wiki-embed"],"mcgfuidgen_data":["gf-mc-unique-id-generator-field"],"screenreader_config":["screen-reader-with-fontsize"],"wmcc_relationships":["wp-multisite-content-copier"],"amwscp_amazon_accounts":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"amwscp_amazon_feeds":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"amwscp_amazon_templates":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"amwscp_feeds":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"amwscp_orders":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"amwscp_template_values":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"amwscp_feed_product_record":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"dplr_field":["doppler-form"],"dplr_field_settings":["doppler-form"],"dplr_form":["doppler-form"],"dplr_form_settings":["doppler-form"],"fontsampler_fonts":["fontsampler"],"fontsampler_sets":["fontsampler"],"fontsampler_sets_x_fonts":["fontsampler"],"fontsampler_settings":["fontsampler"],"gj_allegro_settings":["my-auctions-allegro-free-edition"],"gj_auction_category":["my-auctions-allegro-free-edition"],"gj_auction_item":["my-auctions-allegro-free-edition"],"gj_auctions_allegro":["my-auctions-allegro-free-edition"],"gj_auctions_item":["my-auctions-allegro-free-edition"],"gj_map_category_settings":["my-auctions-allegro-free-edition"],"gjmaa_categories":["my-auctions-allegro-free-edition"],"gjmaa_mapcategory_settings":["my-auctions-allegro-free-edition"],"gjmaa_profiles":["my-auctions-allegro-free-edition"],"gjmaa_settings":["my-auctions-allegro-free-edition"],"gjmaa_auctions":["my-auctions-allegro-free-edition"],"gjmaa_allegro_attributes":["my-auctions-allegro-free-edition"],"gjmaa_attachments":["my-auctions-allegro-free-edition"],"wooms_logger":["wooms"],"mbe_shipping_standard_package_product":["mail-boxes-etc"],"mbe_shipping_standard_packages":["mail-boxes-etc"],"mbeshippingrate":["mail-boxes-etc"],"conwr_stats":["content-writer"],"conwr_titles":["content-writer"],"t_cartedit":["wp-olivecart"],"t_commission":["wp-olivecart"],"t_postage":["wp-olivecart"],"cart_meta":["wp-olivecart"],"woocommerce_yapay_intermediador_request":["woo-yapay"],"woocommerce_yapay_intermediador_response":["woo-yapay"],"woocommerce_yapay_intermediador_transactions":["woo-yapay"],"zmseo_support":["zmseo"],"adguru_ad_links":["wp-ad-guru"],"woomotiv_custom_popups":["woomotiv"],"woomotiv_stats":["woomotiv"],"sform_shortcodes":["simpleform"],"sform_submissions":["simpleform","simpleform-contact-form-submissions"],"mobile_builder_templates":["mobile-builder"],"mobile_builder":["mobile-builder"],"mobile_builder_carts":["mobile-builder"],"rnlab_template_mobile":["mobile-builder"],"rtwalwm_mlm":["affiliaa-affiliate-program-with-mlm"],"rtwalwm_referrals":["affiliaa-affiliate-program-with-mlm"],"rtwwwap_referrals":["affiliaa-affiliate-program-with-mlm"],"rtwwwap_mlm":["affiliaa-affiliate-program-with-mlm"],"sticky_cta":["easy-sticky-sidebar"],"sticky_cta_options":["easy-sticky-sidebar"],"icp_keyword_stats":["serped-net"],"icp_links":["serped-net"],"icp_project_keywords":["serped-net"],"icp_project_links":["serped-net"],"icp_projects":["serped-net"],"icp_sa_forms":["serped-net"],"polls":["polls-widget"],"polls_question":["polls-widget"],"polls_templates":["polls-widget"],"polls_users":["polls-widget"],"msdb_post_data":["music-store","sell-downloads"],"msdb_purchase":["music-store","sell-downloads"],"msdb_reviews":["music-store"],"slug_history":["wp-seo-redirect-301"],"livelychatsupport_convos":["lively-chat-support"],"livelychatsupport_hours":["lively-chat-support"],"livelychatsupport_messages":["lively-chat-support"],"livelychatsupport_surveys":["lively-chat-support"],"livelychatsupport_triggers":["lively-chat-support"],"onclick_show_popup":["onclick-show-popup"],"spidercontacts_contacts":["spider-contacts"],"spidercontacts_contacts_categories":["spider-contacts"],"spidercontacts_messages":["spider-contacts"],"spidercontacts_params":["spider-contacts"],"aas_logged":["advanced-advertising-system"],"terms_hit":["2d-tag-cloud-widget-by-sujin"],"btev_events":["bluetrait-event-viewer"],"downloadstats":["wp-downloadcounter"],"downloadtracking":["wp-downloadcounter"],"gml_locations":["google-map-locations"],"gml_settings":["google-map-locations"],"pf_relationships":["pressforward"],"nav2me_maps":["nav2me"],"etd_manager":["email-to-download"],"wpreport":["wp-reportpost"],"wpreport_archive":["wp-reportpost"],"wpreport_comments":["wp-reportpost"],"mj_contact_fields":["mj-contact-us"],"mj_contact_forms":["mj-contact-us"],"mj_contact_saved_forms":["mj-contact-us"],"rp_address":["rootspersona"],"rp_event_cite":["rootspersona"],"rp_event_detail":["rootspersona"],"rp_event_note":["rootspersona"],"rp_fam":["rootspersona"],"rp_fam_child":["rootspersona"],"rp_fam_cite":["rootspersona"],"rp_fam_event":["rootspersona"],"rp_fam_note":["rootspersona"],"rp_fam_seq":["rootspersona"],"rp_header":["rootspersona"],"rp_indi":["rootspersona"],"rp_indi_cite":["rootspersona"],"rp_indi_event":["rootspersona"],"rp_indi_fam":["rootspersona"],"rp_indi_name":["rootspersona"],"rp_indi_note":["rootspersona"],"rp_indi_option":["rootspersona"],"rp_indi_seq":["rootspersona"],"rp_name_cite":["rootspersona"],"rp_name_name":["rootspersona"],"rp_name_note":["rootspersona"],"rp_name_personal":["rootspersona"],"rp_note":["rootspersona"],"rp_repo":["rootspersona"],"rp_repo_note":["rootspersona"],"rp_source":["rootspersona"],"rp_source_cite":["rootspersona"],"rp_source_note":["rootspersona"],"rp_submitter":["rootspersona"],"rp_submitter_note":["rootspersona"],"wpbegpay_orders":["bank-mellat"],"_booking_seats_relation":["row-seats"],"_bookings":["row-seats"],"_customer_session":["row-seats"],"_payment_transactions":["row-seats"],"_seat_colors":["row-seats"],"_seats":["row-seats"],"_shows":["row-seats"],"onedrive_access":["pwebonedrive"],"onedrive_storage":["pwebonedrive"],"post_notif_post":["post-notif"],"post_notif_sub_cat":["post-notif"],"post_notif_sub_cat_stage":["post-notif"],"post_notif_subscriber":["post-notif"],"post_notif_subscriber_stage":["post-notif"],"plgwpap_config":["wp-admin-protection"],"rich_web_forms_cust_id":["form-forms"],"rich_web_forms_fields":["form-forms"],"rich_web_forms_id":["form-forms"],"rich_web_forms_info":["form-forms"],"rich_web_forms_mails":["form-forms"],"rich_web_forms_manager":["form-forms"],"rich_web_forms_options":["form-forms"],"rich_web_forms_saved":["form-forms"],"rich_web_forms_themes1":["form-forms"],"rich_web_forms_themes2":["form-forms"],"rich_web_forms_themes3":["form-forms"],"ukuu_favorites":["ukuupeople-the-simple-crm"],"urlkeywordsmapping":["inlinks"],"stock_quote_data":["stock-quote"],"skystats_cache":["skystats"],"hook_list":["debug-objects"],"sw_ips":["author-and-post-statistic-widgets"],"sw_statistics":["author-and-post-statistic-widgets"],"rencontre_dbip":["rencontre"],"rencontre_liste":["rencontre"],"rencontre_msg":["rencontre"],"rencontre_prison":["rencontre"],"rencontre_profil":["rencontre"],"rencontre_users":["rencontre"],"rencontre_users_profil":["rencontre"],"wct1":["custom-tables"],"wct_cron":["custom-tables"],"wct_fields":["custom-tables"],"wct_form":["custom-tables"],"wct_list":["custom-tables"],"wct_relations":["custom-tables"],"wct_setup":["custom-tables"],"quoterotator_plus":["flexible-quote-rotator-plus"],"haw_mautic_form_fields":["wp-mautic-form-integrator"],"haw_mautic_forms":["wp-mautic-form-integrator"],"haw_mautic_integration_form":["wp-mautic-form-integrator"],"wordpoints_hook_hitmeta":["wordpoints"],"wordpoints_hook_hits":["wordpoints"],"wordpoints_hook_periods":["wordpoints"],"wordpoints_points_log_meta":["wordpoints"],"wordpoints_points_logs":["wordpoints"],"cpalead_gateways":["cpaleadcom-wordpress-plugin"],"cpasettings":["cpaleadcom-wordpress-plugin"],"tabulate_changes":["tabulate"],"tabulate_changesets":["tabulate"],"tabulate_report_sources":["tabulate"],"tabulate_reports":["tabulate"],"logincount":["user-login-count"],"harrys_gravatar_cache":["harrys-gravatar-cache"],"harrys_gravatar_store":["harrys-gravatar-cache"],"ts_locations":["trackserver"],"ts_tracks":["trackserver"],"tweetshare_post_view_click":["tweetshare-click-to-tweet"],"refersion_cart_tracking":["refersion-for-woocommerce"],"lookbook_sliders_free":["altima-lookbook-free-for-woocommerce"],"lookbook_slides_free":["altima-lookbook-free-for-woocommerce"],"gc_comment_pairing":["graphcomment-comment-system"],"oc_recipients_import":["gatewayapi"],"ultimate_subscribe":["ultimate-subscribe"],"ultimate_subscribe_lists":["ultimate-subscribe"],"wallets_adds":["wallets"],"wallets_txs":["wallets"],"nm_wooconvo":["admin-and-client-message-after-order-for-woocommerce"],"object_sync_sf_field_map":["object-sync-for-salesforce"],"object_sync_sf_object_map":["object-sync-for-salesforce"],"wblib_keystore":["weeblramp"],"wshop_email":["wechat-shop-download"],"wshop_order":["wechat-shop-download"],"wshop_order_item":["wechat-shop-download"],"wshop_order_note":["wechat-shop-download"],"wshop_order_sn":["wechat-shop-download"],"wshop_product":["wechat-shop-download"],"wshop_shopping_cart":["wechat-shop-download"],"wshop_order_session":["wechat-shop-download"],"wshop_shopping_carts":["wechat-shop-download"],"foosales_square_checkouts":["foosales"],"foosales_square_devices":["foosales"],"foosales_square_refunds":["foosales"],"srzmrt_instances":["reactive-mortgage-calculator"],"wp_linkbuilder_backlink":["wp-linkbuilder"],"wpchtmlp_pages":["wp-custom-html-pages"],"sovstack_logs":["security-safe"],"sovstack_stats":["security-safe"],"anwpfl_matches":["football-leagues-by-anwppro"],"anwpfl_players":["football-leagues-by-anwppro"],"anwpfl_missing_players":["football-leagues-by-anwppro"],"anwpfl_players_manual_stats":["football-leagues-by-anwppro"],"ttp_custom_design_template_table":["total-team-lite"],"wbtm_bus_booking_list":["bus-ticket-booking-with-seat-reservation"],"vxcf_infusionsoft":["cf7-infusionsoft"],"vxcf_infusionsoft_accounts":["cf7-infusionsoft"],"vxcf_infusionsoft_log":["cf7-infusionsoft"],"vxg_infusionsoft":["gf-infusionsoft"],"vxg_infusionsoft_accounts":["gf-infusionsoft"],"vxg_infusionsoft_log":["gf-infusionsoft"],"wptelegrampro_users":["wp-telegram-pro"],"gdmaq_queue":["gd-mail-queue"],"gdmaq_emails":["gd-mail-queue"],"gdmaq_log":["gd-mail-queue"],"gdmaq_log_email":["gd-mail-queue"],"yydev_redirect":["advanced-301-and-302-redirect"],"yydev_redirects":["advanced-301-and-302-redirect"],"opalestate_message":["opal-estate-pro"],"opalestate_message_reply":["opal-estate-pro"],"opalestate_api_keys":["opal-estate-pro"],"owac_category":["availability-calendar"],"owac_event":["availability-calendar"],"wa_log":["wunderautomation"],"wa_queue":["wunderautomation"],"wa_confirmationlinks":["wunderautomation"],"ocwma_billingadress":["multiple-shipping-address-woocommerce"],"wpak_keywords":["wp-autokeyword"],"vxcf_pipedrive":["integration-for-contact-form-7-and-pipedrive"],"vxcf_pipedrive_accounts":["integration-for-contact-form-7-and-pipedrive"],"vxcf_pipedrive_log":["integration-for-contact-form-7-and-pipedrive"],"tencent_wordpress_options":["tencentcloud-cos","tencentcloud-captcha","tencentcloud-tms","tencentcloud-cdn","tencentcloud-vod","tencentcloud-sms","tencentcloud-ims"],"sender_automated_emails_carts":["sender-net-automated-emails"],"sender_automated_emails_users":["sender-net-automated-emails"],"cpmw_transaction":["cryptocurrency-payments-using-metamask-for-woocommerce"],"simpleecommcart_cart_settings":["simple-e-commerce-shopping-cart"],"simpleecommcart_downloads":["simple-e-commerce-shopping-cart"],"simpleecommcart_inventory":["simple-e-commerce-shopping-cart"],"simpleecommcart_order_items":["simple-e-commerce-shopping-cart"],"simpleecommcart_product_categories":["simple-e-commerce-shopping-cart"],"simpleecommcart_products":["simple-e-commerce-shopping-cart"],"simpleecommcart_promotions":["simple-e-commerce-shopping-cart"],"simpleecommcart_sessions":["simple-e-commerce-shopping-cart"],"simpleecommcart_shipping_methods":["simple-e-commerce-shopping-cart"],"simpleecommcart_shipping_rates":["simple-e-commerce-shopping-cart"],"simpleecommcart_shipping_rules":["simple-e-commerce-shopping-cart"],"simpleecommcart_shipping_table_rate":["simple-e-commerce-shopping-cart"],"simpleecommcart_shipping_variation":["simple-e-commerce-shopping-cart"],"simpleecommcart_shipping_weight_rate":["simple-e-commerce-shopping-cart"],"simpleecommcart_tax_rates":["simple-e-commerce-shopping-cart"],"wpanything_content":["wp-anything-slider"],"wpanything_settings":["wp-anything-slider"],"impact_hooks":["impact-template-editor"],"impact_templates":["impact-template-editor"],"impact_widgets":["impact-template-editor"],"invisible_optin_settings":["invisible-optin"],"abd_adblocker_stats":["ad-blocking-detector"],"pluginsl_sociallinkz":["social-linkz"],"find_me_on":["find-me-on"],"wscategories":["weekly-schedule"],"wsdays":["weekly-schedule"],"wsitems":["weekly-schedule"],"utubevideo_album":["utubevideo-gallery"],"utubevideo_dataset":["utubevideo-gallery"],"utubevideo_video":["utubevideo-gallery"],"utubevideo_playlist":["utubevideo-gallery"],"numix_post_slider_lite":["numix-post-slider"],"ch_participants":["contesthopper"],"ch_participants_meta":["contesthopper"],"mollom":["mollom"],"wp_ticker":["wp-ticker"],"wp_ticker_content":["wp-ticker"],"fadeintext_plugin":["wp-fade-in-text-news"],"daisycon_tools":["daisycon"],"daisycon_tools_settings":["daisycon"],"ft_lua_userlogins":["log-user-access"],"tracking_clicks":["wp-click-track"],"tracking_links":["wp-click-track"],"banner":["wp-banner","banner-slider","wpadcenter-lite"],"gabcaptchasecret":["gab-captcha-2"],"sh_slides":["sh-slideshow"],"sh_slideshow":["sh-slideshow"],"ezinearticles_diagnostic_log":["ezinearticles-plugin"],"ezinearticles_post_settings":["ezinearticles-plugin"],"ezinearticles_posts_to_articles":["ezinearticles-plugin"],"oder_paypal":["paypal-express-checkout"],"tradetracker_cat":["tradetracker-store"],"tradetracker_extra":["tradetracker-store"],"tradetracker_item":["tradetracker-store"],"tradetracker_layout":["tradetracker-store"],"tradetracker_multi":["tradetracker-store"],"tradetracker_store":["tradetracker-store"],"tradetracker_xml":["tradetracker-store"],"defensio":["defensio-anti-spam"],"randomyoutube":["random-youtube-video"],"wcs_selection_data":["homepage-product-organizer-for-woocommerce"],"gtwbundle_webinars":["gotowp"],"gtwbundle_meetings":["gotowp"],"es_download_counter":["electric-studio-download-counter"],"nme_gmaps_data":["google-maps-route-plugin"],"zd_ml_comments":["zdmultilang"],"zd_ml_langs":["zdmultilang"],"zd_ml_linktrans":["zdmultilang"],"zd_ml_termtrans":["zdmultilang"],"zd_ml_trans":["zdmultilang"],"purehtml_functions":["pure-html"],"quotes_llama":["quotes-llama"],"user_profile_follow":["user-profile"],"user_profile_reactions":["user-profile"],"appointment_settings":["fastbook-responsive-appointment-booking-and-scheduling-system"],"booked_appointments":["fastbook-responsive-appointment-booking-and-scheduling-system"],"wsi_queue":["wp-social-invitations","wp-social-broadcast"],"wsi_stats":["wp-social-invitations","wp-social-broadcast"],"wsi_accepted_invites":["wp-social-invitations"],"wsi_invites":["wp-social-invitations"],"wsi_logs":["wp-social-invitations"],"js_job_activitylog":["js-jobs"],"js_job_ages":["js-jobs"],"js_job_careerlevels":["js-jobs"],"js_job_categories":["js-jobs"],"js_job_cities":["js-jobs"],"js_job_companies":["js-jobs"],"js_job_companycities":["js-jobs"],"js_job_config":["js-jobs"],"js_job_countries":["js-jobs"],"js_job_coverletters":["js-jobs"],"js_job_currencies":["js-jobs"],"js_job_departments":["js-jobs"],"js_job_emailtemplates":["js-jobs"],"js_job_emailtemplates_config":["js-jobs"],"js_job_experiences":["js-jobs"],"js_job_fieldsordering":["js-jobs"],"js_job_heighesteducation":["js-jobs"],"js_job_jobapply":["js-jobs"],"js_job_jobcities":["js-jobs"],"js_job_jobs":["js-jobs"],"js_job_jobstatus":["js-jobs"],"js_job_jobtypes":["js-jobs"],"js_job_resume":["js-jobs"],"js_job_resumeaddresses":["js-jobs"],"js_job_resumeemployers":["js-jobs"],"js_job_resumefiles":["js-jobs"],"js_job_resumeinstitutes":["js-jobs"],"js_job_resumelanguages":["js-jobs"],"js_job_resumereferences":["js-jobs"],"js_job_salaryrange":["js-jobs"],"js_job_salaryrangetypes":["js-jobs"],"js_job_shifts":["js-jobs"],"js_job_states":["js-jobs"],"js_job_system_errors":["js-jobs"],"js_job_users":["js-jobs"],"js_job_slug":["js-jobs"],"js_job_jsjobsessiondata":["js-jobs"],"weblib_collection":["weblibrarian"],"weblib_holditems":["weblibrarian"],"weblib_keywords":["weblibrarian"],"weblib_outitems":["weblibrarian"],"weblib_patrons":["weblibrarian"],"weblib_statistics":["weblibrarian"],"weblib_types":["weblibrarian"],"vw_vcrooms":["videowhisper-video-conference-integration"],"vw_vcsessions":["videowhisper-video-conference-integration"],"dailytipdata":["st-daily-tip"],"note_press":["note-press"],"ainterlock_wp_note_press":["note-press"],"multifeedreader_feed":["multi-feed-reader"],"multifeedreader_feedcollection":["multi-feed-reader"],"wooexim_export_archive":["wooexim"],"wpsc_haet_purchase_details":["wp-ecommerce-shop-styling"],"simpledocumentation":["client-documentation"],"list_item":["pre-publish-post-checklist"],"list_item_instance":["pre-publish-post-checklist"],"unisender_contact_list":["unisender-integration"],"unisender_field":["unisender-integration"],"inf_donors":["infunding"],"inf_logs":["infunding"],"inf_orders":["infunding"],"inf_volunteer":["infunding"],"l_people":["vo-locator-the-wp-store-locator"],"vosl_setting":["vo-locator-the-wp-store-locator"],"vosl_tags":["vo-locator-the-wp-store-locator"],"vosl_tags_locations":["vo-locator-the-wp-store-locator"],"vostore_locator":["vo-locator-the-wp-store-locator"],"vosl_custom_fields":["vo-locator-the-wp-store-locator"],"vosl_store_custom_fields":["vo-locator-the-wp-store-locator"],"mail_booster":["wp-mail-booster"],"mail_booster_email_logs":["wp-mail-booster"],"mail_booster_meta":["wp-mail-booster"],"mail_booster_logs":["wp-mail-booster"],"fma_currency":["fma-woo-multi-currency"],"bap_carts":["book-a-place"],"bap_events":["book-a-place"],"bap_orders":["book-a-place"],"bap_places":["book-a-place"],"bap_schemes":["book-a-place"],"pitchprint_projects":["pitchprint"],"an":["quran-text-multilanguage"],"math_quiz_problems":["math-quiz"],"gp_glossaries":["glotpress"],"gp_glossary_entries":["glotpress"],"gp_meta":["glotpress"],"gp_originals":["glotpress"],"gp_permissions":["glotpress"],"gp_projects":["glotpress"],"gp_translation_sets":["glotpress"],"gp_translations":["glotpress"],"crrntl_currency":["car-rental"],"crrntl_extras_order":["car-rental"],"crrntl_locations":["car-rental"],"crrntl_orders":["car-rental"],"crrntl_statuses":["car-rental"],"woo_file_dropzone":["woo-file-dropzone"],"p3dlite_coatings":["3dprint-lite"],"p3dlite_materials":["3dprint-lite"],"p3dlite_price_requests":["3dprint-lite"],"p3dlite_printers":["3dprint-lite"],"sw_couriers":["shipway-shipment-tracking-and-notify"],"linklog":["link-log"],"linklog_descriptions":["link-log"],"cest_uiform_fields":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_fields_type":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_form":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_form_records":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_pay_gateways":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_pay_logs":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_pay_records":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_settings":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_visitor":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_visitor_error":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_uiform_form_log":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_addon":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_addon_details":["zigaform-calculator-cost-estimation-form-builder-lite"],"cest_addon_details_log":["zigaform-calculator-cost-estimation-form-builder-lite"],"emtr_email":["email-tracker"],"emtr_track_email_link_click_log":["email-tracker"],"emtr_track_email_link_master":["email-tracker"],"emtr_track_email_open_log":["email-tracker"],"wooraffle_tickets_customer_to_tickets":["raffle-ticket-generator"],"wl_relation_instances":["wordlift"],"wl_mapping":["wordlift"],"wl_mapping_property":["wordlift"],"wl_mapping_rule":["wordlift"],"wl_mapping_rule_group":["wordlift"],"wl_entities":["wordlift"],"mo_sp_attributes":["miniorange-wp-as-saml-idp"],"mo_sp_data":["miniorange-wp-as-saml-idp"],"image_refresh":["wp-image-refresh"],"image_gallery":["wp-image-refresh"],"actionnetwork":["wp-action-network"],"actionnetwork_queue":["wp-action-network"],"cjl_bdemail_unsubscribe":["birthday-emails"],"add_hierarchy_parent_to_post__errors_log":["add-hierarchy-parent-to-post"],"xlutm":["utm-leads-tracker-lite"],"xlutmmeta":["utm-leads-tracker-lite"],"wphr_audit_log":["wp-hr-manager"],"wphr_company_locations":["wp-hr-manager"],"wphr_hr_announcement":["wp-hr-manager"],"wphr_hr_dependents":["wp-hr-manager"],"wphr_hr_depts":["wp-hr-manager"],"wphr_hr_designations":["wp-hr-manager"],"wphr_hr_education":["wp-hr-manager"],"wphr_hr_employee_history":["wp-hr-manager"],"wphr_hr_employee_notes":["wp-hr-manager"],"wphr_hr_employee_performance":["wp-hr-manager"],"wphr_hr_employees":["wp-hr-manager"],"wphr_hr_holiday":["wp-hr-manager"],"wphr_hr_leave_entitlements":["wp-hr-manager"],"wphr_hr_leave_policies":["wp-hr-manager"],"wphr_hr_leave_requests":["wp-hr-manager"],"wphr_hr_leaves":["wp-hr-manager"],"wphr_hr_work_exp":["wp-hr-manager"],"wphr_people_type_relations":["wp-hr-manager"],"wphr_people_types":["wp-hr-manager"],"wphr_peoplemeta":["wp-hr-manager"],"wphr_peoples":["wp-hr-manager"],"wphr_files_upload":["wp-hr-manager"],"wphr_hr_upload":["wp-hr-manager"],"ht_activity":["honeypot-toolkit"],"ht_ip_list":["honeypot-toolkit"],"h5pxapikatchu":["h5pxapikatchu"],"h5pxapikatchu_actor":["h5pxapikatchu"],"h5pxapikatchu_object":["h5pxapikatchu"],"h5pxapikatchu_result":["h5pxapikatchu"],"h5pxapikatchu_verb":["h5pxapikatchu"],"enable_wp_debug_from_admin_dashboard__errors_log":["enable-wp-debug-from-admin-dashboard"],"totalsoft_icons":["woo-pricing-table"],"totalsoft_ptable_cols":["woo-pricing-table"],"totalsoft_ptable_id":["woo-pricing-table"],"totalsoft_ptable_manager":["woo-pricing-table"],"totalsoft_ptable_sets":["woo-pricing-table"],"totalsoft_ptable_sets_prev":["woo-pricing-table"],"totalsoft_ptable_cols_def":["woo-pricing-table"],"totalsoft_ptable_cols_new":["woo-pricing-table"],"totalsoft_ptable_manager_new":["woo-pricing-table"],"totalsoft_ptable_sets_def":["woo-pricing-table"],"totalsoft_ptable_sets_new":["woo-pricing-table"],"wdplugin_api_key":["wp-whydonate"],"wdplugin_config_widget":["wp-whydonate"],"wdplugin_style":["wp-whydonate"],"ke_page_form":["kirimemail-form-integration"],"ke_page_lp":["kirimemail-form-integration"],"tnc_bg_process":["tainacan"],"regenerate_dir_images":["regenerate-thumbnails-in-cloud"],"ad_buttons":["ad-buttons"],"ad_buttons_stats":["ad-buttons"],"ad_buttons_stats_hst":["ad-buttons"],"vxcf_zendesk":["cf7-zendesk"],"vxcf_zendesk_accounts":["cf7-zendesk"],"vxcf_zendesk_log":["cf7-zendesk"],"wpzillow_post_templates":["wp-zillow-review-slider"],"wpzillow_reviews":["wp-zillow-review-slider"],"cluevo_competence_areas":["cluevo-lms"],"cluevo_competences":["cluevo-lms"],"cluevo_competences_to_areas":["cluevo-lms"],"cluevo_languages":["cluevo-lms"],"cluevo_module_mime_types":["cluevo-lms"],"cluevo_module_types":["cluevo-lms"],"cluevo_modules":["cluevo-lms"],"cluevo_modules_competences":["cluevo-lms"],"cluevo_modules_progress":["cluevo-lms"],"cluevo_scorm_parameters":["cluevo-lms"],"cluevo_tree":["cluevo-lms"],"cluevo_tree_dependencies":["cluevo-lms"],"cluevo_tree_item_types":["cluevo-lms"],"cluevo_tree_module_dependencies":["cluevo-lms"],"cluevo_tree_modules":["cluevo-lms"],"cluevo_tree_perms":["cluevo-lms"],"cluevo_user_data":["cluevo-lms"],"cluevo_user_exp_log":["cluevo-lms"],"cluevo_user_groups":["cluevo-lms"],"cluevo_users_to_groups":["cluevo-lms"],"webpace_maps_circles":["web-pace-google-map"],"webpace_maps_directions":["web-pace-google-map"],"webpace_maps_maps":["web-pace-google-map"],"webpace_maps_markers":["web-pace-google-map"],"webpace_maps_polygons":["web-pace-google-map"],"webpace_maps_polylines":["web-pace-google-map"],"webpace_maps_stores":["web-pace-google-map"],"kiotviet_sync_categories":["kiotvietsync"],"kiotviet_sync_logs":["kiotvietsync"],"kiotviet_sync_orders":["kiotvietsync"],"kiotviet_sync_products":["kiotvietsync"],"aew_data_default":["woo-aliexpress"],"aew_jobs":["woo-aliexpress"],"aew_mapping_attributes":["woo-aliexpress"],"aew_mapping_carriers":["woo-aliexpress"],"aew_mapping_features":["woo-aliexpress"],"aew_products_error":["woo-aliexpress"],"cart_table":["innovs-woo-manager"],"woo_manage_checkout_field":["innovs-woo-manager"],"woo_manage_checkout_order_note":["innovs-woo-manager"],"woo_manage_checkout_shipping_field":["innovs-woo-manager"],"tochatbe_log":["tochat-be"],"bkash_transactions":["woo-payment-bkash"],"yydev_notes":["page-post-notes"],"pac_products":["product-availability-checker"],"pac_results":["product-availability-checker"],"pac_scans":["product-availability-checker"],"tagembed_active_widget_user":["tagembed-widget"],"tagembed_collaborator":["tagembed-widget"],"tagembed_user":["tagembed-widget"],"tagembed_widget":["tagembed-widget"],"tagembed_active_widget":["tagembed-widget"],"tagembed_menus":["tagembed-widget"],"guardgiant_ip_failed_logins":["guardgiant"],"guardgiant_login_activity_log":["guardgiant"],"guardgiant_user_failed_logins":["guardgiant"],"accessibility_checker":["accessibility-checker"],"iconfonts":["icons-font-loader"],"gswpts_tables":["sheets-to-wp-table-live-sync"],"gswpts_tabs":["sheets-to-wp-table-live-sync"],"ecommercewd_currencies":["ecommerce-wd"],"ecommercewd_options":["ecommerce-wd"],"ecommercewd_orderproducts":["ecommerce-wd"],"ecommercewd_orders":["ecommerce-wd"],"ecommercewd_orderstatuses":["ecommerce-wd"],"ecommercewd_parametertypes":["ecommerce-wd"],"ecommercewd_payments":["ecommerce-wd"],"ecommercewd_ratings":["ecommerce-wd"],"ecommercewd_shippingclasses":["ecommerce-wd"],"ecommercewd_shippingzones":["ecommerce-wd"],"ecommercewd_tax_rates":["ecommerce-wd"],"ecommercewd_themes":["ecommerce-wd"],"ecommercewd_tools":["ecommerce-wd"],"spam_master_keys":["spam-master"],"spam_master_threats":["spam-master"],"spam_master_white":["spam-master"],"spam_master_bots":["spam-master"],"tnt_videos":["video-list-manager"],"tnt_videos_cat":["video-list-manager"],"tnt_videos_type":["video-list-manager"],"rsvp_volunteer_time":["rsvpmaker"],"rsvpmaker":["rsvpmaker"],"rsvpmaker_event":["rsvpmaker"],"rsvpmailer_blocked":["rsvpmaker"],"rsvpmaker_money":["rsvpmaker"],"sticky_social_bar":["sticky-social-bar"],"ai_album":["ai-responsive-gallery-album"],"ai_photos":["ai-responsive-gallery-album"],"ssg_superb_gallery":["superb-slideshow-gallery"],"alcud":["aeroleads-contact-us-details"],"alcud_options":["aeroleads-contact-us-details"],"cf_participants":["contestfriend"],"cf_participants_meta":["contestfriend"],"obr_humancaptcha_admin":["humancaptcha"],"obr_humancaptcha_qanda":["humancaptcha"],"quick_count_users":["quick-count"],"pd_downloadlinks":["paid-downloads","zarinpal-paid-downloads"],"pd_files":["paid-downloads","zarinpal-paid-downloads"],"pd_transactions":["paid-downloads","zarinpal-paid-downloads"],"simple_subscription_popup":["simple-signup-form"],"pi_hit_counter":["wiloke-most-popular-widget"],"pricing_detail":["easy-pricing-table-manager"],"pricing_table":["easy-pricing-table-manager"],"cm_campaign_images":["cm-ad-changer"],"cm_campaigns":["cm-ad-changer"],"cbpress_cat":["cbpress"],"cbpress_import":["cbpress"],"cbpress_list":["cbpress"],"cbpress_list_item":["cbpress"],"cbpress_parse_prod":["cbpress"],"cbpress_parse_tree":["cbpress"],"cbpress_parse_user":["cbpress"],"cbpress_prod":["cbpress"],"cbpress_tree":["cbpress"],"hat_subscribers_lite_history":["wechat-subscribers-lite"],"cp_project_users":["collabpress"],"quick_flag_countries":["quick-flag"],"quick_flag_ip_ranges":["quick-flag"],"fotomoto_categorymeta":["fotomoto"],"wps_bans":["wp-sentinel"],"wps_logins":["wp-sentinel"],"wps_logs":["wp-sentinel"],"st_social_widgets":["socialize-this"],"google_marker_settings":["google-map-professional"],"google_markers":["google-map-professional"],"thanks_counters":["thanks-you-counter-button"],"thanks_readers":["thanks-you-counter-button"],"userstats_count":["user-stats"],"sentry_groups":["wp-sentry"],"hs_brand_logo":["hs-brand-logo-slider"],"bmibmr":["bmi-bmr-calculator"],"cw_css":["super-simple-custom-css"],"paymill_cache_offers":["paymill"],"paymill_clients":["paymill"],"paymill_subscriptions":["paymill"],"paymill_transactions":["paymill"],"questions_answers":["questions"],"questions_participiants":["questions"],"questions_questions":["questions"],"questions_respond_answers":["questions"],"questions_responds":["questions"],"questions_settings":["questions"],"cmm_subscriber":["custom-maintenance-mode"],"gmtr_data":["google-maps-travel-route"],"emb_embeds":["embedder"],"gcl_certificates":["gift-certificates-lite"],"gcl_transactions":["gift-certificates-lite"],"stw_error_log":["shrinktheweb-website-preview-plugin"],"shopbop_cache":["shopbop-widget"],"shopbop_category_assignments":["shopbop-widget"],"dms_mapping_values":["domain-mapping-system"],"dms_mappings":["domain-mapping-system"],"competition_entries":["competition-form"],"competition_entries_meta":["competition-form"],"fc_captcha_store":["flexible-captcha"],"plugin_websters_kalendar":["kalendar-cz"],"musli":["musli"],"pd_orders":["zarinpal-paid-downloads"],"ai_quiz_tblgradeboundaries":["quiz-tool-lite"],"ai_quiz_tblquestionpots":["quiz-tool-lite"],"ai_quiz_tblquestions":["quiz-tool-lite"],"ai_quiz_tblquizattempts":["quiz-tool-lite"],"ai_quiz_tblquizzes":["quiz-tool-lite"],"ai_quiz_tblresponseoptions":["quiz-tool-lite"],"ai_quiz_tblsettings":["quiz-tool-lite"],"ai_quiz_tblsubmittedanswers":["quiz-tool-lite"],"ai_quiz_tbluserquizresponses":["quiz-tool-lite"],"vls_gf_aux_images":["gallery-factory-lite"],"vls_gf_folders":["gallery-factory-lite"],"vls_gf_images":["gallery-factory-lite"],"vls_gf_nodes":["gallery-factory-lite"],"comment_mail_queue":["comment-mail"],"comment_mail_queue_event_log":["comment-mail"],"comment_mail_sub_event_log":["comment-mail"],"comment_mail_subs":["comment-mail"],"lcs_chat_engines":["live-chat-by-supsystic"],"lcs_chat_engines_show_pages":["live-chat-by-supsystic"],"lcs_chat_messages":["live-chat-by-supsystic"],"lcs_chat_sessions":["live-chat-by-supsystic"],"lcs_chat_templates":["live-chat-by-supsystic"],"lcs_chat_triggers":["live-chat-by-supsystic"],"lcs_chat_triggers_conditions":["live-chat-by-supsystic"],"lcs_chat_users":["live-chat-by-supsystic"],"lcs_countries":["live-chat-by-supsystic"],"lcs_modules":["live-chat-by-supsystic"],"lcs_modules_type":["live-chat-by-supsystic"],"lcs_statistics":["live-chat-by-supsystic"],"lcs_usage_stat":["live-chat-by-supsystic"],"idea_factory":["idea-factory"],"al_urls":["anylink"],"al_urls_index":["anylink"],"currencies":["wp-currencies"],"imdb_connector":["imdb-connector"],"mbp_progress":["mybookprogress"],"wthp_helpful_log":["was-this-helpful"],"rpc_comuni":["regione-provincia-comune"],"rpc_province":["regione-provincia-comune"],"rpc_regioni":["regione-provincia-comune"],"wpdbboost_log":["wp-db-booster"],"wpbiker_tool":["popups-creator","forms-creator","subscription-creator"],"instock_email_alert":["instock-email-alert-for-woocommerce"],"ays_gallery":["gallery-photo-gallery"],"ays_gallery_categories":["gallery-photo-gallery"],"ays_gallery_settings":["gallery-photo-gallery"],"domain_check_coupons":["domain-check"],"domain_check_domains":["domain-check"],"domain_check_ssl":["domain-check"],"qa_notification":["question-answer"],"qa_follow":["question-answer"],"shipworks_bridge":["shipworks-e-commerce-bridge"],"wp_flickity":["wp-flickity"],"snowball_articles":["snowball"],"snowball_blocks":["snowball"],"e_franchise":["bbs-e-franchise"],"e_franchise_config":["bbs-e-franchise"],"at_meta":["table-creator"],"at_table_creator":["table-creator"],"all_pushnotification_logs":["all-push-notification"],"all_pushnotification_token":["all-push-notification"],"secsign":["secsign"],"wusp_user_pricing_mapping":["customer-specific-pricing-lite"],"cbaccounting_account_manager":["cbxwpsimpleaccounting"],"cbaccounting_category":["cbxwpsimpleaccounting"],"cbaccounting_expcat_rel":["cbxwpsimpleaccounting"],"cbaccounting_expinc":["cbxwpsimpleaccounting"],"canvas_notifications":["mobile-app"],"twofas_session_variables":["2fas"],"twofas_sessions":["2fas"],"twofas_migrations":["2fas"],"twofas_trusted_devices":["2fas"],"twofas_authentications":["2fas"],"wpbooking_availability":["wp-booking-management-system"],"wpbooking_favorite":["wp-booking-management-system"],"wpbooking_order":["wp-booking-management-system"],"wpbooking_order_hotel_room":["wp-booking-management-system"],"wpbooking_payment":["wp-booking-management-system"],"wpbooking_review_helpful":["wp-booking-management-system"],"wpbooking_service":["wp-booking-management-system"],"wpbooking_availability_tour":["wp-booking-management-system"],"wpspf_form_fields":["wp-service-payment-form-with-authorizenet"],"wpspf_payment_entry":["wp-service-payment-form-with-authorizenet"],"wpspf_payment_entry_meta":["wp-service-payment-form-with-authorizenet"],"sldr_category":["slider-bws"],"sldr_relation":["slider-bws"],"sldr_slide":["slider-bws"],"sldr_slider":["slider-bws"],"mmursp_settings":["mapping-multiple-urls-redirect-same-page"],"accordions_or_faqs_items":["accordions-or-faqs"],"accordions_or_faqs_style":["accordions-or-faqs"],"paygreen_recurring_transactions":["paygreen-woocommerce"],"paygreen_transactions":["paygreen-woocommerce"],"paygreen_fingerprint":["paygreen-woocommerce"],"paygreen_categories_has_payments":["paygreen-woocommerce"],"paygreen_buttons":["paygreen-woocommerce"],"paygreen_settings":["paygreen-woocommerce"],"paygreen_transaction_locks":["paygreen-woocommerce"],"green_translations":["paygreen-woocommerce"],"paygreen_translations":["paygreen-woocommerce"],"paygreen_carbon_data":["paygreen-woocommerce"],"paygreen_processing":["paygreen-woocommerce"],"splitit_logs":["splitit-installment-payments-enabler"],"re_locator_country":["wp-multi-store-locator"],"re_locator_state":["wp-multi-store-locator"],"re_locator_transactions":["wp-multi-store-locator"],"blog_clock":["blog-clock"],"acip_text_calendar":["avirato-calendar"],"acip_text_button":["avirato-calendar"],"acip_text_calendarz":["avirato-calendar"],"acip_text_desglo":["avirato-calendar"],"pickplugins_wl_data":["wishlist"],"pickplugins_wl_urlid":["wishlist"],"iaposter_logs":["iaposter"],"iaposter_queue":["iaposter"],"facto_log":["facto-facturacioacuten-electroacutenica"],"facto_order_mp":["facto-facturacioacuten-electroacutenica"],"evc_log":["elegant-visitor-counter"],"btn_details":["like-dislike-plus-counter"],"like_dislike_btn_details":["like-dislike-plus-counter"],"base_bookings":["wp-base-booking-of-appointments-services-and-events"],"base_locations":["wp-base-booking-of-appointments-services-and-events"],"base_meta":["wp-base-booking-of-appointments-services-and-events"],"base_services":["wp-base-booking-of-appointments-services-and-events"],"base_transactions":["wp-base-booking-of-appointments-services-and-events"],"base_wh_a":["wp-base-booking-of-appointments-services-and-events"],"base_wh_s":["wp-base-booking-of-appointments-services-and-events"],"base_wh_w":["wp-base-booking-of-appointments-services-and-events"],"base_workers":["wp-base-booking-of-appointments-services-and-events"],"cl_sent_mail_log":["contact-list"],"contact_list_log":["contact-list"],"premmerce_currencies":["premmerce-woocommerce-multi-currency"],"vxg_zoho":["gf-zoho"],"vxg_zoho_accounts":["gf-zoho"],"vxg_zoho_log":["gf-zoho"],"ays_faqs":["faq-builder-ays"],"premmerce_attributes":["premmerce-woocommerce-variation-swatches"],"uposhta_invoices":["woo-ukrposhta"],"bp_group_chat":["bp-group-chatroom"],"bp_group_chat_online":["bp-group-chatroom"],"bp_group_chat_threads":["bp-group-chatroom"],"bp_group_chat_updates":["bp-group-chatroom"],"vxg_hubspot":["gf-hubspot"],"vxg_hubspot_accounts":["gf-hubspot"],"vxg_hubspot_log":["gf-hubspot"],"fattura_tax":["fattura24"],"f24_installation_log":["fattura24"],"std_subscribers":["subscribe-to-download-lite"],"wpsf_forms":["wp-subscription-forms"],"wpsf_subscribers":["wp-subscription-forms"],"webinarignition":["webinar-ignition"],"webinarignition_leads":["webinar-ignition"],"webinarignition_leads_evergreen":["webinar-ignition"],"webinarignition_questions":["webinar-ignition"],"webinarignition_users_online":["webinar-ignition"],"webinarignition_wi":["webinar-ignition"],"wi_logs":["webinar-ignition"],"webinarignition_lead_evergreenmeta":["webinar-ignition"],"webinarignition_leadmeta":["webinar-ignition"],"vpp_video":["simple-video-management-system"],"vpp_video_location":["simple-video-management-system"],"vpp_dropsvideo":["simple-video-management-system"],"vpp_groups":["simple-video-management-system"],"vpp_ips":["simple-video-management-system"],"vpp_stats":["simple-video-management-system"],"vpp_useragents":["simple-video-management-system"],"vpp_video_grids":["simple-video-management-system"],"cf7wpay_forms":["addon-paypal-with-contact-form-7"],"wplfla_login_failed":["wp-limit-failed-login-attempts"],"wplfla_log_block_ip":["wp-limit-failed-login-attempts"],"wplfla_block_countries":["wp-limit-failed-login-attempts"],"wplfla_block_ip_range":["wp-limit-failed-login-attempts"],"zwt_wp_link_previewer":["beautiful-link-preview"],"wqeforms":["aforms-eats"],"wqeorders":["aforms-eats"],"fea_submissions":["frontend-admin"],"frontend_admin_submissions":["frontend-admin"],"meetreunions":["hello-i-am-here"],"quasarform_history":["quasar-form"],"quasarform_main":["quasar-form"],"quasarform_option":["quasar-form"],"arflite_entries":["arforms-form-builder"],"arflite_entry_values":["arforms-form-builder"],"arflite_fields":["arforms-form-builder"],"arflite_forms":["arforms-form-builder"],"ypm_contact_form_fields":["popup-more"],"custom_cursors":["wp-custom-cursors"],"fmwp_reports":["forumwp"],"mstoreapp_wishlist":["build-app-online","woo-mstoreapp-mobile-app"],"cwmp_cart_abandoned":["checkout-mestres-wp"],"cwmp_cart_abandoned_relation":["checkout-mestres-wp"],"flipping_cards":["flipping-cards"],"flipping_cards_images":["flipping-cards"],"wpshop__attribute":["wpshop"],"wpshop__attribute_set":["wpshop"],"wpshop__attribute_set_section":["wpshop"],"wpshop__attribute_set_section_details":["wpshop"],"wpshop__attribute_value__histo":["wpshop"],"wpshop__attribute_value_datetime":["wpshop"],"wpshop__attribute_value_decimal":["wpshop"],"wpshop__attribute_value_integer":["wpshop"],"wpshop__attribute_value_options":["wpshop"],"wpshop__attribute_value_text":["wpshop"],"wpshop__attribute_value_varchar":["wpshop"],"wpshop__attributes_unit":["wpshop"],"wpshop__attributes_unit_groups":["wpshop"],"imgslider_plugin":["image-slider-with-description"],"onclick_popup_plugin":["onclick-popup"],"wpis_plugin":["wp-image-slideshow"],"cgss_insight":["complete-google-seo-scan"],"webpay":["webpay-woocommerce-plugin"],"bepro_listing_orders":["bepro-listings"],"bepro_listing_typesmeta":["bepro-listings"],"bepro_listings":["bepro-listings"],"pros_campaigns":["prosociate-amazon"],"pros_prossubscription":["prosociate-amazon"],"kads_info":["kento-ads-rotator"],"sm_config":["share-me"],"sm_social_list":["share-me"],"tfk_item":["taskfreak"],"tfk_item_comment":["taskfreak"],"tfk_item_comment_like":["taskfreak"],"tfk_item_file":["taskfreak"],"tfk_item_like":["taskfreak"],"tfk_item_status":["taskfreak"],"tfk_log":["taskfreak"],"tfk_project":["taskfreak"],"tfk_project_status":["taskfreak"],"tfk_project_user":["taskfreak"],"gmwfb_mapdetails":["google-map-with-fancybox-popup"],"bp_compliments":["buddypress-compliments"],"sexy_login":["sexy-login"],"nsaa_xed_comments":["no-spam-at-all"],"slideshow_plugin":["slideshow-manager"],"msdb_shopping_cart":["sell-downloads"],"sddb_reviews":["sell-downloads"],"voteiu_data":["vote-it-up"],"kklike":["kk-i-like-it"],"kklikeuser":["kk-i-like-it"],"unter_hold":["rich-counter"],"unter_last":["rich-counter"],"unter_time":["rich-counter"],"unter_top":["rich-counter"],"newfield":["video-sidebar-widget"],"videourl":["video-sidebar-widget"],"dailytopten":["daily-top-10-posts"],"dailytoptenall":["daily-top-10-posts"],"bwge_album":["gallery-ecommerce"],"bwge_album_gallery":["gallery-ecommerce"],"bwge_ecommerceoptions":["gallery-ecommerce"],"bwge_gallery":["gallery-ecommerce"],"bwge_image":["gallery-ecommerce"],"bwge_image_comment":["gallery-ecommerce"],"bwge_image_rate":["gallery-ecommerce"],"bwge_image_tag":["gallery-ecommerce"],"bwge_option":["gallery-ecommerce"],"bwge_order_images":["gallery-ecommerce"],"bwge_orders":["gallery-ecommerce"],"bwge_parameters":["gallery-ecommerce"],"bwge_payment_systems":["gallery-ecommerce"],"bwge_pricelist_items":["gallery-ecommerce"],"bwge_pricelist_parameters":["gallery-ecommerce"],"bwge_pricelists":["gallery-ecommerce"],"bwge_shortcode":["gallery-ecommerce"],"bwge_theme":["gallery-ecommerce"],"mudslide":["mudslideshow"],"scrd_debug_log":["rss-digest"],"ean_newsletter":["easy-automatic-newsletter"],"xmasb_quotes":["xmasb-quotes"],"paypal_products":["paypal-responder"],"paypal_transactions":["paypal-responder"],"mm_menus":["menu-manager"],"emailinglist":["email-suscripcion","dys-email-subscription"],"chronoengine_chronoforms":["chronoforms"],"chronoengine_extensions":["chronoforms"],"chronog3_acl_profiles":["chronoforms"],"chronog3_extensions":["chronoforms"],"chronog3_forms7":["chronoforms"],"chronog3_forms7_datalog":["chronoforms"],"chronog3_users_service_accounts":["chronoforms"],"c_links":["simple-link-cloaker"],"wptwitipid":["twitterlink-comments","wp-twitip-id"],"_core37_formstyle":["form-styles-for-contact-form-7"],"wpv_voting":["wp-voting"],"wpv_voting_meta":["wp-voting"],"wpcvp_pollsa":["colored-vote-polls"],"wpcvp_pollsip":["colored-vote-polls"],"wpcvp_pollsp":["colored-vote-polls"],"wpcvp_pollsq":["colored-vote-polls"],"guiform":["guiform"],"guiform_options":["guiform"],"wplistcal":["wplistcal"],"menusplus":["menus-plus"],"menusplus_menus":["menus-plus"],"category_info":["category-post-info-control"],"noticias_de_portada":["hot-news-manager"],"cwin_feed":["epicwin-subscribers"],"maxab_experiments":["maxab"],"gb_gallery_group":["gb-gallery-slideshow"],"gb_gallery_group_post":["gb-gallery-slideshow"],"hitcounter":["hitcounter"],"s3slider":["s3slider-plugin"],"prettyurls":["pretty-url"],"reallysimpleevents":["really-simple-events"],"py_jobs":["wordpress-google-seo-positioner"],"py_jobs_data":["wordpress-google-seo-positioner"],"ps_advertisers":["wp-profitshare"],"ps_conversions":["wp-profitshare"],"ps_keywords":["wp-profitshare"],"ps_shorted_links":["wp-profitshare"],"ps_tag_images":["wp-profitshare"],"ps_campaigns":["wp-profitshare"],"ps_convert_old_links":["wp-profitshare"],"ravpage_urls":["ravpage"],"clndr_events":["event-clndr"],"clndr_instances":["event-clndr"],"fun_facts":["fun-facts"],"invites":["wp-invites"],"sc_catalog":["sc-catalog"],"jumplead_mapping":["jumplead"],"mediatagger":["wp-mediatagger"],"projectmanager_categories":["projectmanager"],"projectmanager_countries":["projectmanager"],"projectmanager_dataset":["projectmanager"],"projectmanager_datasetmeta":["projectmanager"],"projectmanager_projects":["projectmanager"],"mlm_bonus":["binary-mlm","binarymlm"],"mlm_commission":["binary-mlm","binarymlm"],"mlm_country":["binary-mlm","binarymlm"],"mlm_currency":["binary-mlm","binarymlm"],"mlm_leftleg":["binary-mlm","binarymlm"],"mlm_payout":["binary-mlm","binarymlm"],"mlm_payout_master":["binary-mlm","binarymlm"],"mlm_rightleg":["binary-mlm","binarymlm"],"mlm_users":["binary-mlm","binarymlm"],"author_chat":["author-chat"],"mmdyk_quote":["mm-did-you-know"],"rw_gplaces_place":["review-wave-google-places-reviews"],"rw_gplaces_review":["review-wave-google-places-reviews"],"firme_circolari":["gestione-circolari","gestione-circolari-groups"],"sa_plugin":["sermonaudio-widgets"],"board_rsvps":["nonprofit-board-management"],"wml_entries":["wp-mail-log"],"embed_rsvpify_plugin":["rsvpify-rsvp-form"],"opafti_history":["transaction-integration-for-affiliatewp-and-optimizepress"],"opafti_saved_purchases":["transaction-integration-for-affiliatewp-and-optimizepress"],"opafti_stats":["transaction-integration-for-affiliatewp-and-optimizepress"],"wpajans_stickybuttons":["wp-sticky-side-buttons"],"mapfig_premium_groups":["mapfig-premium-leaflet-map-maker"],"mapfig_premium_groups_has_layers":["mapfig-premium-leaflet-map-maker"],"mapfig_premium_layers":["mapfig-premium-leaflet-map-maker"],"mapfig_premium_map":["mapfig-premium-leaflet-map-maker"],"viewmedica":["viewmedica"],"mwp_modal_free":["mwp-modal-windows"],"csr_votes":["cosmick-star-rating"],"shortcodes_groups":["scode-by-mojwp"],"plugin_manager_group_plugin":["plugin-grouper"],"plugin_manager_groups":["plugin-grouper"],"plugin_manager_plugins":["plugin-grouper"],"ewd_uasp_appointments":["ultimate-appointment-scheduling"],"ewd_uasp_exceptions":["ultimate-appointment-scheduling"],"ewd_uasp_custom_fields_meta":["ultimate-appointment-scheduling"],"ewd_uasp_custom_fields":["ultimate-appointment-scheduling"],"jigoshop_attribute":["jigoshop-ecommerce"],"jigoshop_attribute_option":["jigoshop-ecommerce"],"jigoshop_cronjobs":["jigoshop-ecommerce"],"jigoshop_order_discount":["jigoshop-ecommerce"],"jigoshop_order_discount_meta":["jigoshop-ecommerce"],"jigoshop_order_item":["jigoshop-ecommerce"],"jigoshop_order_item_meta":["jigoshop-ecommerce"],"jigoshop_order_tax":["jigoshop-ecommerce"],"jigoshop_product_attachment":["jigoshop-ecommerce"],"jigoshop_product_attribute":["jigoshop-ecommerce"],"jigoshop_product_attribute_meta":["jigoshop-ecommerce"],"jigoshop_product_variation_attribute":["jigoshop-ecommerce"],"jigoshop_tax":["jigoshop-ecommerce"],"jigoshop_tax_location":["jigoshop-ecommerce"],"jigoshop_term_meta":["jigoshop-ecommerce"],"datafeed":["awin-data-feed"],"datafeed_analytics":["awin-data-feed"],"scrybs_languages":["scrybs-translation"],"scrybs_languages_translations":["scrybs-translation"],"cosmosfarm_comments_token":["cosmosfarm-comments"],"wpabstracts_abstracts":["wp-abstracts-manuscripts-manager"],"wpabstracts_attachments":["wp-abstracts-manuscripts-manager"],"wpabstracts_events":["wp-abstracts-manuscripts-manager"],"wpabstracts_users":["wp-abstracts-manuscripts-manager"],"wpabstracts_statuses":["wp-abstracts-manuscripts-manager"],"wpabstracts_emailtemplates":["wp-abstracts-manuscripts-manager"],"far":["find-and-replace-content"],"talentlms_categories":["talentlms"],"talentlms_courses":["talentlms"],"talentlms_products":["talentlms"],"talentlms_products_categories":["talentlms"],"tayori":["tayori"],"fca_cc_activity_tbl":["giveaways-contests"],"sec_opt_attack_history":["wp-security-optimizer"],"sec_opt_attacker":["wp-security-optimizer"],"sec_opt_counter":["wp-security-optimizer"],"wpsg_kunden":["wpshopgermany-free"],"wpsg_laender":["wpshopgermany-free"],"wpsg_meta":["wpshopgermany-free"],"wpsg_order":["wpshopgermany-free"],"wpsg_order_products":["wpshopgermany-free"],"wpsg_orderconditions":["wpshopgermany-free"],"wpsg_orderlog":["wpshopgermany-free"],"wpsg_products":["wpshopgermany-free"],"wpsg_versandzonen":["wpshopgermany-free"],"wpsg_adress":["wpshopgermany-free"],"wpsg_versandarten":["wpshopgermany-free"],"failling_images":["falling-things"],"mailster_attachments":["wp-mailster"],"mailster_digest_queue":["wp-mailster"],"mailster_digests":["wp-mailster"],"mailster_group_users":["wp-mailster"],"mailster_groups":["wp-mailster"],"mailster_list_groups":["wp-mailster"],"mailster_list_members":["wp-mailster"],"mailster_list_stats":["wp-mailster"],"mailster_lists":["wp-mailster"],"mailster_log":["wp-mailster"],"mailster_mails":["wp-mailster"],"mailster_notifies":["wp-mailster"],"mailster_oa_attachments":["wp-mailster"],"mailster_oa_mails":["wp-mailster"],"mailster_queued_mails":["wp-mailster"],"mailster_send_reports":["wp-mailster"],"mailster_servers":["wp-mailster"],"mailster_subscriptions":["wp-mailster"],"mailster_threads":["wp-mailster"],"mailster_users":["wp-mailster"],"mpwd_migrations":["magic-password"],"mpwd_session_variables":["magic-password"],"mpwd_sessions":["magic-password"],"watulp_relations":["quizzes-for-learnpress"],"uc_group_users":["ultra-community"],"uc_user_activity":["ultra-community"],"uc_user_relations":["ultra-community"],"uc_user_activity_reposts":["ultra-community"],"kento_email_subscriber":["email-subscriber"],"fx_email_log":["fx-email-log"],"appts_tables_data":["ap-pricing-tables-lite"],"time_config":["dynamic-time"],"time_entry":["dynamic-time"],"time_period":["dynamic-time"],"time_user":["dynamic-time"],"ens_subscribers":["easy-newsletter-signups"],"cardgate_payments":["cardgate"],"snippy_bits":["snippy"],"snippy_shortcode_bits":["snippy"],"snippy_shortcodes":["snippy"],"reatlat_cub_links":["campaign-url-builder"],"reatlat_cub_mediums":["campaign-url-builder"],"reatlat_cub_sources":["campaign-url-builder"],"wp_writup":["wp-writup"],"ob_adv_settings":["onionbuzz-viral-quiz"],"ob_advertisings":["onionbuzz-viral-quiz"],"ob_answer2result":["onionbuzz-viral-quiz"],"ob_answers":["onionbuzz-viral-quiz"],"ob_feed2quiz":["onionbuzz-viral-quiz"],"ob_feeds":["onionbuzz-viral-quiz"],"ob_questions":["onionbuzz-viral-quiz"],"ob_quizzes":["onionbuzz-viral-quiz"],"ob_result_unlocks":["onionbuzz-viral-quiz"],"ob_results":["onionbuzz-viral-quiz"],"ob_score":["onionbuzz-viral-quiz"],"ob_settings":["onionbuzz-viral-quiz"],"ob_vote2question":["onionbuzz-viral-quiz"],"wpda_contdown_extend_theme":["countdown-wpdevart-extended"],"wpda_contdown_extend_timer":["countdown-wpdevart-extended"],"girocheckout_orders_status":["girocheckout"],"socialbooster_fbtable":["social-booster"],"socialbooster_gptable":["social-booster"],"socialbooster_instable":["social-booster"],"socialbooster_postnowtable":["social-booster"],"socialbooster_statustable":["social-booster"],"socialbooster_stmtable":["social-booster"],"socialbooster_twtable":["social-booster"],"rx_sb_shdposts":["social-booster"],"sb_networks":["social-booster"],"sb_profiles":["social-booster"],"sb_scheduled_posts":["social-booster"],"sb_shared_posts":["social-booster"],"vxc_sales_accounts":["woo-salesforce-plugin-crm-perks"],"vxc_sales_log":["woo-salesforce-plugin-crm-perks"],"internetmarke_country_codes":["woo-dp-internetmarke"],"internetmarke_orders":["woo-dp-internetmarke"],"internetmarke_product_list":["woo-dp-internetmarke"],"internetmarke_page_formats":["woo-dp-internetmarke"],"wcdpi_country":["woo-dp-internetmarke"],"wcdpi_page_format":["woo-dp-internetmarke"],"wcdpi_product_additional":["woo-dp-internetmarke"],"wcdpi_product_basic":["woo-dp-internetmarke"],"wcdpi_product_sales":["woo-dp-internetmarke"],"wcdpi_shipment":["woo-dp-internetmarke"],"wcdpi_shipment_attachment":["woo-dp-internetmarke"],"wcdpi_shipment_item":["woo-dp-internetmarke"],"wcdpi_t_app_service":["woo-dp-internetmarke"],"wcdpi_t_app_service_feature":["woo-dp-internetmarke"],"wcdpi_t_app_service_provider":["woo-dp-internetmarke"],"msweb_reviews":["ms-reviews"],"advanced_cf7_data":["advanced-cf7-database"],"cfx_email":["contact-form-x"],"wpmlm_configuration":["wp-mlm"],"wpmlm_country":["wp-mlm"],"wpmlm_ewallet_history":["wp-mlm"],"wpmlm_fund_transfer_details":["wp-mlm"],"wpmlm_general_information":["wp-mlm"],"wpmlm_leg_amount":["wp-mlm"],"wpmlm_level_commission":["wp-mlm"],"wpmlm_paypal":["wp-mlm"],"wpmlm_reg_type":["wp-mlm"],"wpmlm_registration_packages":["wp-mlm"],"wpmlm_tran_password":["wp-mlm"],"wpmlm_transaction_id":["wp-mlm"],"wpmlm_user_balance_amount":["wp-mlm"],"wpmlm_users":["wp-mlm"],"pmt_concurrency":["pagamastarde"],"pmt_config":["pagamastarde"],"pagantis_concurrency":["pagamastarde"],"pagantis_config":["pagamastarde"],"wc_fedapay_orders_transactions":["woo-gateway-fedapay"],"marker_animation___log":["marker-animation"],"marker_animation_setting":["marker-animation"],"wc_remove_tabs_and_fields__errors_log":["wc-remove-tabs-and-fields"],"pegasaas_api_request":["pegasaas-accelerator-wp"],"pegasaas_performance_scan":["pegasaas-accelerator-wp"],"pegasaas_page_cache":["pegasaas-accelerator-wp"],"pegasaas_page_config":["pegasaas-accelerator-wp"],"pegasaas_static_asset":["pegasaas-accelerator-wp"],"pegasaas_queued_task":["pegasaas-accelerator-wp"],"pegasaas_semaphore":["pegasaas-accelerator-wp"],"wc_se_queue":["smart-search-for-woocommerce"],"wc_se_settings":["smart-search-for-woocommerce"],"salesup_campos":["formularios-de-contacto-salesup"],"salesup_formularios":["formularios-de-contacto-salesup"],"salesup_token_integracion":["formularios-de-contacto-salesup"],"sync_hotel_entries":["easync-booking"],"sync_options":["easync-booking"],"sync_payments":["easync-booking"],"sync_rent_car_entries":["easync-booking"],"sync_restau_entries":["easync-booking"],"couponapi_config":["couponapi"],"couponapi_logs":["couponapi"],"couponapi_upload":["couponapi"],"adfoxly_statistics_clicks":["adfoxly"],"adfoxly_statistics_views":["adfoxly"],"tip_jar_wp_arrangements":["tip-jar-wp"],"tip_jar_wp_download_logs":["tip-jar-wp"],"tip_jar_wp_forms":["tip-jar-wp"],"tip_jar_wp_logs":["tip-jar-wp"],"tip_jar_wp_transactions":["tip-jar-wp"],"tip_jar_wp_notes":["tip-jar-wp"],"stul_subscribers":["subscribe-to-unlock-lite"],"eblc_collections":["easy-broken-link-checker"],"eblc_links":["easy-broken-link-checker"],"eblc_shedule_checking_log":["easy-broken-link-checker"],"eblc_login_attempts_log":["easy-broken-link-checker"],"eblc_redirection_links":["easy-broken-link-checker"],"eblc_shorten_links":["easy-broken-link-checker"],"eblc_auto_links":["easy-broken-link-checker"],"eblc_link_clicks":["easy-broken-link-checker"],"eblc_geo_redirection_links":["easy-broken-link-checker"],"vipps_login_sessions":["login-with-vipps"],"ea_accounts":["wp-ever-accounting"],"ea_categories":["wp-ever-accounting"],"ea_contacts":["wp-ever-accounting"],"ea_payments":["wp-ever-accounting"],"ea_revenues":["wp-ever-accounting"],"ea_transfers":["wp-ever-accounting"],"ea_currencies":["wp-ever-accounting"],"ea_transactions":["wp-ever-accounting"],"ea_contactmeta":["wp-ever-accounting"],"ea_document_items":["wp-ever-accounting"],"ea_documents":["wp-ever-accounting"],"ea_items":["wp-ever-accounting"],"ea_notes":["wp-ever-accounting"],"wpbkash":["wpbkash"],"wpbkash_refund":["wpbkash"],"sessions_statistics":["sessions"],"ads_statistics":["wpadcenter"],"placements_statistics":["wpadcenter"],"qntn_restrictions":["quentn-wp"],"qntn_user_data":["quentn-wp"],"skyroom_events":["skyroom-wp"],"fpsm_forms":["frontend-post-submission-manager-lite"],"ultimate_410":["ultimate-410"],"wnbell_recipients_role":["wp-notification-bell"],"wnbell_recipients":["wp-notification-bell"],"eli_newsletters":["elementinvader-addons-for-elementor"],"infinite_uploads_files":["infinite-uploads"],"cookielay_groups":["cookielay"],"cookielay_cookies":["cookielay"],"nirweb_ticket_ticket":["nirweb-support"],"nirweb_ticket_ticket_answered":["nirweb-support"],"nirweb_ticket_ticket_department":["nirweb-support"],"nirweb_ticket_ticket_faq":["nirweb-support"],"nirweb_ticket_ticket_pre_answer":["nirweb-support"],"nirweb_ticket_ticket_priority":["nirweb-support"],"nirweb_ticket_ticket_status":["nirweb-support"],"nirweb_ticket_ticket_user_upload":["nirweb-support"],"cartboss":["cartboss"],"cb_tracking_events":["cartboss"],"omega_sync_status":["omega-instant-search"],"omega_index_status":["omega-instant-search"],"psp_link_builder":["premium-seo-pack-light-version"],"psp_link_redirect":["premium-seo-pack-light-version"],"psp_monitor_404":["premium-seo-pack-light-version"],"psp_post_planner_cron":["premium-seo-pack-light-version"],"psp_serp_reporter":["premium-seo-pack-light-version"],"psp_serp_reporter2rank":["premium-seo-pack-light-version"],"psp_web_directories":["premium-seo-pack-light-version"],"spatialmatch_maps":["spatialmatch-free-lifestyle-search"],"ultimate_member_gallery_user_contents":["ultimate-member-gallery"],"clean_up_booster":["clean-up-booster"],"clean_up_booster_meta":["clean-up-booster"],"clean_up_booster_ip_locations":["clean-up-booster"],"d_linus_contact_form":["contact-us-by-lord-linus"],"reflex_gallery":["reflex-gallery"],"reflex_gallery_images":["reflex-gallery"],"cppolls_forms":["cp-polls"],"cppolls_messages":["cp-polls"],"g_aths_plugin":["announcement-ticker-highlighter-scroller"],"rss_settings":["wp-rss-importer"],"wpbi_ch_cols":["wp-business-intelligence-lite"],"wpbi_charts":["wp-business-intelligence-lite"],"wpbi_databases":["wp-business-intelligence-lite"],"wpbi_queries":["wp-business-intelligence-lite"],"wpbi_tables":["wp-business-intelligence-lite"],"wpbi_tb_cols":["wp-business-intelligence-lite"],"wpbi_vars":["wp-business-intelligence-lite"],"wpbi_bar_charts":["wp-business-intelligence-lite"],"wpbi_database_connections":["wp-business-intelligence-lite"],"wpbi_datatables":["wp-business-intelligence-lite"],"wpbi_phinx_log":["wp-business-intelligence-lite"],"wpbi_pie_charts":["wp-business-intelligence-lite"],"wpbi_queries3":["wp-business-intelligence-lite"],"wpbi_grouped_bar_charts":["wp-business-intelligence-lite"],"wpbi_line_charts":["wp-business-intelligence-lite"],"sktnurclog":["skt-nurcaptcha"],"clickmeter_options":["clickmeter-link-shortener-and-analytics"],"clickmeter_tracking_links":["clickmeter-link-shortener-and-analytics"],"clickmeter_tracking_pixels":["clickmeter-link-shortener-and-analytics"],"wpbb_categories":["wp-bulletin-board"],"wpbb_messages":["wp-bulletin-board"],"wpbb_posts":["wp-bulletin-board"],"wpbb_topics":["wp-bulletin-board"],"wpbb_topics_unread":["wp-bulletin-board"],"vtwpr_purchase_log":["wholesale-pricing-for-woocommerce"],"vtwpr_purchase_log_product":["wholesale-pricing-for-woocommerce"],"vtwpr_purchase_log_product_rule":["wholesale-pricing-for-woocommerce"],"ad_click":["cbprotect"],"appointment_calendars":["cp-appointment-calendar"],"appointment_calendars_data":["cp-appointment-calendar"],"dex_appointments":["cp-appointment-calendar"],"enmask_hits":["boom-captcha","boomcaptcha"],"enmask_keywords":["boom-captcha","boomcaptcha"],"email_subscription":["simple-email-subscriber"],"metas":["all-in-menu"],"psr_post":["post-star-rating"],"psr_user":["post-star-rating"],"wpss_clear":["supersonic"],"wpss_links":["supersonic"],"wpss_log":["supersonic"],"user_login_history":["wp-login-security-and-history"],"mysearchterms":["mysearchtermspresenter"],"wp2ap_aff_links":["wp2affiliate"],"wp2ap_cloaked_links":["wp2affiliate"],"ssquiz_history":["ssquiz"],"ssquiz_questions":["ssquiz"],"ssquiz_quizzes":["ssquiz"],"google_shortlink":["google-shortlink"],"google_shortlink_for_firebase":["google-shortlink"],"syg":["sliding-youtube-gallery"],"syg_styles":["sliding-youtube-gallery"],"notices":["notices"],"endar":["calendar-plus"],"endar_categories":["calendar-plus"],"endar_config":["calendar-plus"],"wpfblbox":["crudlab-facebook-like-box"],"changes_tracker":["wp-changes-tracker"],"ost_emailtemp":["key4ce-osticket-bridge","osticket-wp-bridge"],"html5video_items":["html5-video-player-with-playlist"],"html5video_playlist":["html5-video-player-with-playlist"],"_click_statistics":["wp-click-info"],"ljcustommenulinks":["lj-custom-menu-links"],"_wpptdisplay_rules":["wp-tactical-popup"],"_wpptpopups":["wp-tactical-popup"],"download_settings":["hide-real-download-path"],"_slider":["smoothness-slider-shortcode","essential"],"antiddos":["wpantiddos"],"posts_okunma":["sayfa-sayac"],"effectmakerparameters":["effect-maker"],"effectmakeruserconfigurations":["effect-maker"],"e37_form_kv":["core37-form-builder"],"e37_form_sessions":["core37-form-builder"],"ctext_categories":["category-text"],"ctext_elements":["category-text"],"ctext_lists":["category-text"],"cpsp_slides":["category-posts-slider-pro"],"scck_content_type":["simple-content-construction-kit"],"scck_content_type_fields":["simple-content-construction-kit"],"scck_content_type_fields_detail":["simple-content-construction-kit"],"scck_content_type_fields_detail_tx":["simple-content-construction-kit"],"scck_content_type_fields_group":["simple-content-construction-kit"],"scck_content_type_fields_group_rel":["simple-content-construction-kit"],"scck_menu":["simple-content-construction-kit"],"mailer_templates":["custom-user-emails"],"um_message":["user-messages"],"um_notification":["user-messages"],"simple_security_access_log":["simple-security"],"cw_epu_subscribers":["email-pick-up"],"popularpostsdatacache":["mh-board"],"social_share":["social-share-by-jm-crea"],"wpappp_subs":["ultimate-popup-creator"],"customizeadmin":["customize-wpadmin"],"named_users":["wpnamedusers"],"named_users_groups":["wpnamedusers"],"named_users_groups_relations":["wpnamedusers"],"wpm_forms":["wp-mailer"],"wpm_jobs":["wp-mailer"],"wpm_subscribers":["wp-mailer"],"mavis_settings":["mavis-https-to-http-redirect"],"ahmeti_wp_timeline":["ahmeti-wp-timeline"],"e_fake_url":["wp-page-extension"],"wpum_banned_ips":["drp-wordpress-user-management"],"wpum_logins":["drp-wordpress-user-management"],"wpum_online_users":["drp-wordpress-user-management"],"wpic_posts":["wp-posts-to-instagram-by-kolesyane"],"wpnewcarousel":["wpnewcarousels"],"wpnewcarouseldata":["wpnewcarousels"],"call_back_best_time":["wp-call-me-back"],"drop_down_options":["wp-call-me-back"],"request_a_call_back":["wp-call-me-back"],"awsomnews":["awsom-news-announcement"],"pdfex_template":["post-pdf-export"],"pingpressfm":["pingpressfm"],"cgd_term_order":["shopp-arrange"],"phone2app_form":["phone2app"],"phone2app_user":["phone2app"],"ssc_images":["sitesupercharger"],"ssc_pages":["sitesupercharger"],"ssc_posts":["sitesupercharger"],"epo_order":["easy-post-order"],"ecp1_cache":["every-calendar-1"],"shorties":["wp-shorties"],"shorties_log":["wp-shorties"],"lbs_lightbox":["lightbox-by-supsystic"],"lbs_modules":["lightbox-by-supsystic"],"lbs_modules_type":["lightbox-by-supsystic"],"lbs_usage_stat":["lightbox-by-supsystic"],"gd_mylist":["gd-mylist"],"man_dofollow":["manuall-dofollow"],"man_dofollow2":["manuall-dofollow"],"mzzstat_v2":["mzz-stat"],"adit_hitcount":["mechanic-post-hits-counter"],"resads_ad":["resads"],"resads_ad_adspot":["resads"],"resads_ad_statistik":["resads"],"resads_adspot":["resads"],"resads_resolution":["resads"],"ml_adverts_clicks":["ml-adverts"],"ml_adverts_impressions":["ml-adverts"],"oddfaq":["faq-accordion"],"custom_map":["custom-map"],"custom_map_polygon":["custom-map"],"custom_map_polyline":["custom-map"],"d_stats":["feedback"],"sub_feed_items":["feedback"],"sub_feed_tags":["feedback"],"sub_feeds":["feedback"],"sub_offers":["feedback"],"sub_requests":["feedback"],"sociallink":["st-social-links"],"jgcss_stylesheets":["joddit-global-css"],"mapboxadv_maps":["mapbox-for-wp-advanced"],"hrm_attendance":["hrm"],"hrm_client_partial_payment":["hrm"],"hrm_education":["hrm"],"hrm_financial_year":["hrm"],"hrm_holiday":["hrm"],"hrm_job_category":["hrm"],"hrm_job_title":["hrm"],"hrm_language":["hrm"],"hrm_leave":["hrm"],"hrm_leave_type":["hrm"],"hrm_location":["hrm"],"hrm_migrations":["hrm"],"hrm_notice":["hrm"],"hrm_office_time":["hrm"],"hrm_pay_grade":["hrm"],"hrm_personal_education":["hrm"],"hrm_personal_language":["hrm"],"hrm_personal_skill":["hrm"],"hrm_relation":["hrm"],"hrm_salary":["hrm"],"hrm_skill":["hrm"],"hrm_user_role":["hrm"],"hrm_work_experience":["hrm"],"hrm_designation":["hrm"],"hrm_formula":["hrm"],"hrm_salary_group":["hrm"],"hrm_time_shift":["hrm"],"acfsrf":["acf-starrating"],"wm_dirstack":["wemahu"],"wm_filehashes":["wemahu"],"wm_filestack":["wemahu"],"wm_kvs":["wemahu"],"wm_reportitems":["wemahu"],"wm_rulesets":["wemahu"],"plgwpagp_config":["wp-admin-graphic-password"],"donate":["wp-donate"],"donate_setting":["wp-donate"],"cp_newsletter_table":["cp-simple-newsletter"],"dpproeventcalendar_booking":["lite-event-calendar"],"dpproeventcalendar_calendars":["lite-event-calendar"],"dpproeventcalendar_special_dates":["lite-event-calendar"],"dpproeventcalendar_special_dates_calendar":["lite-event-calendar"],"dpproeventcalendar_subscribers_calendar":["lite-event-calendar"],"qrgen4all_uploads":["qr-code-generator-4-all"],"word_filter_plus":["word-filter-plus"],"woorelatedproducts":["woo-simply-add-related-products-to-blog-posts"],"pvc_paratheme":["page-view-counter"],"pvc_paratheme_info":["page-view-counter"],"ltp_datas":["like-this-post"],"assets_log":["assets-manager"],"seatt_attendees":["simple-event-attendance"],"seatt_events":["simple-event-attendance"],"fbrev_page":["wp-social-seo"],"fbrev_page_review":["wp-social-seo"],"random_content_record":["wp-social-seo"],"review_user_emails":["wp-social-seo"],"review_user_profile":["wp-social-seo"],"rich_snippets_review":["wp-social-seo"],"dl_acj_cssjs":["add-cssjs-by-duo-leaf"],"geonames":["wp-geonames"],"geonamespostal":["wp-geonames"],"um_gallery":["gallery-for-ultimate-member"],"um_gallery_album":["gallery-for-ultimate-member"],"um_gallery_comments":["gallery-for-ultimate-member"],"um_gallery_favorites":["gallery-for-ultimate-member"],"um_gallery_meta":["gallery-for-ultimate-member"],"contar":["my-contador-wp"],"mendeleycache":["mendeleyplugin"],"qwiz_textentry_suggestions":["qwiz-online-quizzes-and-flashcards"],"qwiz_dataset_json":["qwiz-online-quizzes-and-flashcards"],"qwiz_dataset_json2":["qwiz-online-quizzes-and-flashcards"],"p5":["p5"],"mailing_group":["wp-mailing-group"],"mailing_group_attachments":["wp-mailing-group"],"mailing_group_messages":["wp-mailing-group"],"mailing_group_parsed_emails":["wp-mailing-group"],"mailing_group_requestmanager":["wp-mailing-group"],"mailing_group_sent_emails":["wp-mailing-group"],"mailing_group_taxonomy":["wp-mailing-group"],"mailing_group_user_taxonomy":["wp-mailing-group"],"cmnb_history":["cm-notification-bar"],"ess_tokens":["codeswholesale-for-woocommerce"],"resh_tokens":["codeswholesale-for-woocommerce"],"codeswholesale_access_tokens":["codeswholesale-for-woocommerce"],"codeswholesale_import_properties":["codeswholesale-for-woocommerce"],"codeswholesale_refresh_tokens":["codeswholesale-for-woocommerce"],"dsplite_device":["digitalsignagepress-lite"],"dsplite_format":["digitalsignagepress-lite"],"dsplite_program":["digitalsignagepress-lite"],"dsplite_program_program":["digitalsignagepress-lite"],"dsplite_program_program_scheduling":["digitalsignagepress-lite"],"dsplite_program_screen":["digitalsignagepress-lite"],"dsplite_program_screen_scheduling":["digitalsignagepress-lite"],"dsplite_scheduling":["digitalsignagepress-lite"],"dsplite_screen":["digitalsignagepress-lite"],"dsplite_screen_element":["digitalsignagepress-lite"],"dsplite_screen_element_screen":["digitalsignagepress-lite"],"dsplite_screen_scheduling":["digitalsignagepress-lite"],"dsplite_template":["digitalsignagepress-lite"],"crw_crosswords":["crosswordsearch"],"crw_editors":["crosswordsearch"],"crw_projects":["crosswordsearch"],"hami_appost":["wp2appir"],"hami_appstatic":["wp2appir"],"hami_mainpage":["wp2appir"],"hami_set":["wp2appir"],"hami_slider":["wp2appir"],"wp2app_checkout":["wp2appir"],"wp2app_commission":["wp2appir"],"remarkety_carts":["remarkety-for-woocommerce"],"remarkety_carts_guests":["remarkety-for-woocommerce"],"dfoxwgrab":["dfoxw-wechatgrab"],"dx2hits_posthits":["dx2-post-hit-counter"],"smartcrm_agenda":["wp-smart-crm-invoices-free"],"smartcrm_clienti":["wp-smart-crm-invoices-free"],"smartcrm_contatti":["wp-smart-crm-invoices-free"],"smartcrm_documenti":["wp-smart-crm-invoices-free"],"smartcrm_documenti_dettaglio":["wp-smart-crm-invoices-free"],"smartcrm_email_templates":["wp-smart-crm-invoices-free"],"smartcrm_emails":["wp-smart-crm-invoices-free"],"smartcrm_fields":["wp-smart-crm-invoices-free"],"smartcrm_subscriptionrules":["wp-smart-crm-invoices-free"],"smartcrm_values":["wp-smart-crm-invoices-free"],"crfw_cart":["cart-recovery"],"crfw_cart_event":["cart-recovery"],"crfw_cart_meta":["cart-recovery"],"addpipe_records":["pipe-video-recorder"],"addpipe_shortcodes":["pipe-video-recorder"],"optinengine_leads":["optinengine-email-optins-lead-generation"],"optinengine_promos":["optinengine-email-optins-lead-generation"],"optinengine_provider_lists":["optinengine-email-optins-lead-generation"],"optinengine_providers":["optinengine-email-optins-lead-generation"],"cube_3d_sliders":["cube-3d-slider"],"api_info":["print-science-designer"],"cart_data":["print-science-designer"],"saved_projects":["print-science-designer"],"bws_rating":["rating-bws"],"contador":["visits"],"visitas":["visits","visitas-on-line"],"wow_social_users":["wow-facebook-login","wow-google-login"],"ssign_envelope":["electronic-signatures"],"ssign_pdfs":["electronic-signatures"],"ssing_log":["electronic-signatures"],"ssing_lead_report":["electronic-signatures"],"stafflist":["stafflist"],"stafflist_meta":["stafflist"],"queue_failures":["image-processing-queue","push-notification-mobile-and-web-app"],"queue_jobs":["image-processing-queue","push-notification-mobile-and-web-app"],"accredible_mapping":["accredible-certificates"],"bwa_log":["better-wlm-api"],"arlo_async_task_data":["arlo-training-and-event-management-system"],"arlo_async_tasks":["arlo-training-and-event-management-system"],"arlo_categories":["arlo-training-and-event-management-system"],"arlo_contentfields":["arlo-training-and-event-management-system"],"arlo_events":["arlo-training-and-event-management-system"],"arlo_events_presenters":["arlo-training-and-event-management-system"],"arlo_events_tags":["arlo-training-and-event-management-system"],"arlo_eventtemplates":["arlo-training-and-event-management-system"],"arlo_eventtemplates_categories":["arlo-training-and-event-management-system"],"arlo_eventtemplates_presenters":["arlo-training-and-event-management-system"],"arlo_eventtemplates_tags":["arlo-training-and-event-management-system"],"arlo_import":["arlo-training-and-event-management-system"],"arlo_import_lock":["arlo-training-and-event-management-system"],"arlo_log":["arlo-training-and-event-management-system"],"arlo_messages":["arlo-training-and-event-management-system"],"arlo_offers":["arlo-training-and-event-management-system"],"arlo_onlineactivities":["arlo-training-and-event-management-system"],"arlo_onlineactivities_tags":["arlo-training-and-event-management-system"],"arlo_presenters":["arlo-training-and-event-management-system"],"arlo_tags":["arlo-training-and-event-management-system"],"arlo_timezones":["arlo-training-and-event-management-system"],"arlo_venues":["arlo-training-and-event-management-system"],"arlo_import_parts":["arlo-training-and-event-management-system"],"trackingcode":["leadfox"],"l2hbibtex":["latex2html"],"inrupp_appender_db":["inrdeals-url-appender"],"sm_attendance":["clock-in-portal"],"sm_staff_category":["clock-in-portal"],"sm_staffs":["clock-in-portal"],"ays_fbl":["ays-facebook-popup-likebox"],"threatpress_login_log":["threatpress-security"],"amdbible_devos":["amd-bible-reading"],"amdbible_key_abbr_eng":["amd-bible-reading"],"amdbible_key_eng":["amd-bible-reading"],"amdbible_key_genre_eng":["amd-bible-reading"],"amdbible_kjv":["amd-bible-reading"],"amdbible_plans":["amd-bible-reading"],"amdbible_plans_info":["amd-bible-reading"],"olyos_concours":["wp-concours"],"olyos_concours_participation":["wp-concours"],"olyos_concours_user":["wp-concours"],"ebanx_logs":["ebanx-payment-gateway-for-woocommerce"],"awesomecustom":["ajax-awesome-css"],"moos_oauth_access_tokens":["miniorange-oauth-20-server","login-with-rocket-chat"],"moos_oauth_authorization_codes":["miniorange-oauth-20-server","login-with-rocket-chat"],"moos_oauth_authorized_apps":["miniorange-oauth-20-server","login-with-rocket-chat"],"moos_oauth_clients":["miniorange-oauth-20-server","login-with-rocket-chat"],"moos_oauth_public_keys":["miniorange-oauth-20-server","login-with-rocket-chat"],"moos_oauth_refresh_tokens":["miniorange-oauth-20-server","login-with-rocket-chat"],"moos_oauth_scopes":["miniorange-oauth-20-server","login-with-rocket-chat"],"moos_oauth_users":["miniorange-oauth-20-server","login-with-rocket-chat"],"telaalbums_users":["telaalbums"],"cf7_export_csv_db":["cf7-export-csv"],"great_caroussels":["great-caroussel"],"great_caroussels_contents":["great-caroussel"],"mstoreapp_blocks":["woo-mstoreapp-mobile-app"],"ashuwp_invitation_code":["ashuwp-invitaion-code"],"cnp_forminfo":["click-pledge-connect"],"cnp_formsdtl":["click-pledge-connect"],"cnp_settingsdtl":["click-pledge-connect"],"cnp_channeldtl":["click-pledge-connect"],"cnp_channelgrp":["click-pledge-connect"],"adce_config":["exchange-rates-adce"],"aru_readmorelogin_registration":["read-more-login"],"aru_readmorelogin_statistics":["read-more-login"],"ari_read-more-login_registration":["read-more-login"],"ari_read-more-login_statistics":["read-more-login"],"user_tokens":["api-bearer-auth"],"ecalypse_rental_booking":["ecalypse-rental-starter"],"ecalypse_rental_booking_drivers":["ecalypse-rental-starter"],"ecalypse_rental_booking_items":["ecalypse-rental-starter"],"ecalypse_rental_booking_prices":["ecalypse-rental-starter"],"ecalypse_rental_branches":["ecalypse-rental-starter"],"ecalypse_rental_branches_hours":["ecalypse-rental-starter"],"ecalypse_rental_extras":["ecalypse-rental-starter"],"ecalypse_rental_extras_pricing":["ecalypse-rental-starter"],"ecalypse_rental_fleet":["ecalypse-rental-starter"],"ecalypse_rental_fleet_extras":["ecalypse-rental-starter"],"ecalypse_rental_fleet_parameters":["ecalypse-rental-starter"],"ecalypse_rental_fleet_parameters_values":["ecalypse-rental-starter"],"ecalypse_rental_fleet_pricing":["ecalypse-rental-starter"],"ecalypse_rental_pricing":["ecalypse-rental-starter"],"ecalypse_rental_pricing_ranges":["ecalypse-rental-starter"],"ecalypse_rental_translations":["ecalypse-rental-starter"],"ecalypse_rental_vehicle_categories":["ecalypse-rental-starter"],"ecalypse_rental_webhook_queue":["ecalypse-rental-starter"],"rencato_connector_log":["ecalypse-rental-starter"],"ics_modules":["comparison-slider"],"ics_modules_type":["comparison-slider"],"ics_sliders":["comparison-slider"],"ics_usage_stat":["comparison-slider"],"gs_woo_meta":["gs-woo-variation-swatches"],"consolety_backlinks":["consolety"],"consolety_links":["consolety"],"wt_wishlists":["wt-woocommerce-wishlist"],"cilw_icos":["crypto-ico-list-widget"],"subscription_payu_latam_spl_transactions":["subscription-payu-latam"],"mjuh_datas":["mj-update-history"],"mjuh_logs":["mj-update-history"],"tahar_cost_calc":["cost-calculator"],"emotahar_cost_calc":["cost-calculator"],"emcc_default_mail_user":["cost-calculator"],"emcc_order_details":["cost-calculator"],"sjs_my_surveys":["surveyjs"],"sjs_results":["surveyjs"],"sellsy_error":["sellsy"],"sellsy_setting":["sellsy"],"sellsy_ticket":["sellsy"],"sellsy_ticket_form":["sellsy"],"sellsy_version":["sellsy"],"sellsy_contact":["sellsy"],"sellsy_contact_form":["sellsy"],"wl_im_courses":["institute-management"],"wl_im_enquiries":["institute-management"],"wl_im_installments":["institute-management"],"wl_im_students":["institute-management"],"wl_im_batches":["institute-management"],"cking_id":["useinfluence"],"novaposhta_ttn_invoices":["nova-poshta-ttn","justin"],"vxc_mailchimp_accounts":["woo-mailchimp-crm-perks"],"vxc_mailchimp_log":["woo-mailchimp-crm-perks"],"megaoptim_opt":["megaoptim-image-optimizer"],"vxcf_dynamics":["cf7-dynamics-crm"],"vxcf_dynamics_accounts":["cf7-dynamics-crm"],"vxcf_dynamics_log":["cf7-dynamics-crm"],"woocommerce_digiwallet":["digiwallet-for-woocommerce"],"wcra_api_base":["custom-wp-rest-api"],"wcra_api_endpoints":["custom-wp-rest-api"],"wcra_api_log":["custom-wp-rest-api"],"wcra_notification_log":["custom-wp-rest-api"],"eplm_popups":["easy-popup-lightbox-maker"],"eplm_popups_template":["easy-popup-lightbox-maker"],"cf7_dbt_entries":["cf7-db-tool"],"cf7_dbt_forms":["cf7-db-tool"],"ab_testing_for_wp_ab_test":["ab-testing-for-wp"],"ab_testing_for_wp_log":["ab-testing-for-wp"],"ab_testing_for_wp_variant":["ab-testing-for-wp"],"ab_testing_for_wp_variant_condition":["ab-testing-for-wp"],"dbug":["wootrello"],"subscription_epayco":["subscription-epayco"],"skt_choose_currency_paypal":["skt-donation"],"skt_choose_currency_twocheckout":["skt-donation"],"skt_country_type_currency":["skt-donation"],"skt_donation_amount":["skt-donation"],"segment_4_wp":["segment-for-wp-by-in8-io"],"plgsgegeor_config":["easy-geo-redirect"],"seolocalrank":["seo-local-rank"],"nordot_read_later":["nordot"],"nordot_save_searches":["nordot"],"apcm_details":["apcu-manager"],"apcm_statistics":["apcu-manager"],"device_detector_statistics":["device-detector"],"wpcommerce_customer_meta":["lifeline-donation","webinane-commerce"],"wpcommerce_customers":["lifeline-donation","webinane-commerce"],"wpcommerce_log":["lifeline-donation","webinane-commerce"],"wpcommerce_order_items":["lifeline-donation","webinane-commerce"],"wpcommerce_payment_tokenmeta":["lifeline-donation","webinane-commerce"],"wpcommerce_payment_tokens":["lifeline-donation","webinane-commerce"],"wpcommerce_sessions":["lifeline-donation","webinane-commerce"],"smaily_autoresponders":["smaily-for-wp"],"smaily_config":["smaily-for-wp"],"np_cities":["shipping-nova-poshta-for-woocommerce"],"np_warehouses":["shipping-nova-poshta-for-woocommerce"],"remoji_history":["remoji"],"wsdesk_archived_tickets":["elex-helpdesk-customer-support-ticket-system"],"wsdesk_archived_ticketsmeta":["elex-helpdesk-customer-support-ticket-system"],"cnwper_auto_tags":["cnwper-seo-tags"],"cnwper_auto_tags_log":["cnwper-seo-tags"],"sngmbh_serialcodes_validator_codes":["serial-codes-generator-and-validator"],"sngmbh_serialcodes_validator_ips":["serial-codes-generator-and-validator"],"sngmbh_serialcodes_validator_lists":["serial-codes-generator-and-validator"],"totalsurvey_entries":["totalsurvey"],"totalsurvey_surveys":["totalsurvey"],"totalsurvey_presets":["totalsurvey"],"wj_portal_activitylog":["wp-job-portal"],"wj_portal_careerlevels":["wp-job-portal"],"wj_portal_categories":["wp-job-portal"],"wj_portal_cities":["wp-job-portal"],"wj_portal_companies":["wp-job-portal"],"wj_portal_companycities":["wp-job-portal"],"wj_portal_config":["wp-job-portal"],"wj_portal_countries":["wp-job-portal"],"wj_portal_currencies":["wp-job-portal"],"wj_portal_departments":["wp-job-portal"],"wj_portal_emailtemplates":["wp-job-portal"],"wj_portal_emailtemplates_config":["wp-job-portal"],"wj_portal_employer_view_resume":["wp-job-portal"],"wj_portal_fieldsordering":["wp-job-portal"],"wj_portal_heighesteducation":["wp-job-portal"],"wj_portal_jobapply":["wp-job-portal"],"wj_portal_jobcities":["wp-job-portal"],"wj_portal_jobs":["wp-job-portal"],"wj_portal_jobseeker_view_company":["wp-job-portal"],"wj_portal_jobstatus":["wp-job-portal"],"wj_portal_jobtypes":["wp-job-portal"],"wj_portal_resume":["wp-job-portal"],"wj_portal_resumeaddresses":["wp-job-portal"],"wj_portal_resumeemployers":["wp-job-portal"],"wj_portal_resumefiles":["wp-job-portal"],"wj_portal_resumeinstitutes":["wp-job-portal"],"wj_portal_resumelanguages":["wp-job-portal"],"wj_portal_salaryrangetypes":["wp-job-portal"],"wj_portal_slug":["wp-job-portal"],"wj_portal_states":["wp-job-portal"],"wj_portal_system_errors":["wp-job-portal"],"wj_portal_users":["wp-job-portal"],"wj_portal_jswjsessiondata":["wp-job-portal"],"code_manager":["code-manager"],"html_validation_errors":["html-validation"],"html_validation_links":["html-validation"],"vikrentitems_busy":["vikrentitems"],"vikrentitems_caratteristiche":["vikrentitems"],"vikrentitems_categories":["vikrentitems"],"vikrentitems_config":["vikrentitems"],"vikrentitems_countries":["vikrentitems"],"vikrentitems_coupons":["vikrentitems"],"vikrentitems_cronjobs":["vikrentitems"],"vikrentitems_custfields":["vikrentitems"],"vikrentitems_customers":["vikrentitems"],"vikrentitems_customers_orders":["vikrentitems"],"vikrentitems_discountsquants":["vikrentitems"],"vikrentitems_dispcost":["vikrentitems"],"vikrentitems_dispcosthours":["vikrentitems"],"vikrentitems_gpayments":["vikrentitems"],"vikrentitems_groupsrel":["vikrentitems"],"vikrentitems_hourscharges":["vikrentitems"],"vikrentitems_items":["vikrentitems"],"vikrentitems_iva":["vikrentitems"],"vikrentitems_locfees":["vikrentitems"],"vikrentitems_optionals":["vikrentitems"],"vikrentitems_orders":["vikrentitems"],"vikrentitems_ordersbusy":["vikrentitems"],"vikrentitems_ordersitems":["vikrentitems"],"vikrentitems_places":["vikrentitems"],"vikrentitems_prices":["vikrentitems"],"vikrentitems_relations":["vikrentitems"],"vikrentitems_restrictions":["vikrentitems"],"vikrentitems_seasons":["vikrentitems"],"vikrentitems_stats":["vikrentitems"],"vikrentitems_texts":["vikrentitems"],"vikrentitems_timeslots":["vikrentitems"],"vikrentitems_tmplock":["vikrentitems"],"vikrentitems_translations":["vikrentitems"],"vikrentitems_usersdata":["vikrentitems"],"vikrentitems_wpshortcodes":["vikrentitems"],"momopay_payments":["pay-with-mtn-momo-woocommerce"],"adminify_activity_logs":["adminify"],"adminify_page_speed":["adminify"],"yay_smtp_amazonses_email_logs":["smtp-amazon-ses"],"wpcc_cashondelivery":["wc-cash-on-delivery-charges"],"notification_tokens":["push-notification-mobile-and-web-app"],"pn_notification_tokens":["push-notification-mobile-and-web-app"],"pn_user_notifications":["push-notification-mobile-and-web-app"],"ify_temp":["ctrify"],"wccfee_cities":["flat-shipping-rate-by-city-for-woocommerce"],"holidays":["appointify"],"tbl_events":["appointify"],"user_data":["appointify"],"bookingpress_appointment_bookings":["bookingpress-appointment-booking"],"bookingpress_categories":["bookingpress-appointment-booking"],"bookingpress_customize_settings":["bookingpress-appointment-booking"],"bookingpress_default_daysoff":["bookingpress-appointment-booking"],"bookingpress_default_workhours":["bookingpress-appointment-booking"],"bookingpress_entries":["bookingpress-appointment-booking"],"bookingpress_form_fields":["bookingpress-appointment-booking"],"bookingpress_notifications":["bookingpress-appointment-booking"],"bookingpress_payment_logs":["bookingpress-appointment-booking"],"bookingpress_services":["bookingpress-appointment-booking"],"bookingpress_servicesmeta":["bookingpress-appointment-booking"],"bookingpress_settings":["bookingpress-appointment-booking"],"bookingpress_users":["bookingpress-appointment-booking"],"bookingpress_debug_payment_log":["bookingpress-appointment-booking"],"bookingpress_customers":["bookingpress-appointment-booking"],"bookingpress_customers_meta":["bookingpress-appointment-booking"],"bookingpress_usermeta":["bookingpress-appointment-booking"],"woo_compare_cat_fields":["woocommerce-compare-products"],"woo_compare_categories":["woocommerce-compare-products"],"woo_compare_fields":["woocommerce-compare-products"],"popunderpopup":["popunder-popup"],"arsocial_lite_fan":["social-share-and-social-locker-arsocial"],"arsocial_lite_like":["social-share-and-social-locker-arsocial"],"arsocial_lite_locker":["social-share-and-social-locker-arsocial"],"arsocial_lite_networks":["social-share-and-social-locker-arsocial"],"wp_photo_50":["wp-photo-text-slider-50"],"g_ywfz":["youtube-with-fancy-zoom"],"fancyimg_plugin":["fancy-image-show"],"_faucet_address_locks":["bitcoin-faucet"],"_faucet_addresses":["bitcoin-faucet"],"_faucet_ip_locks":["bitcoin-faucet"],"_faucet_ips":["bitcoin-faucet"],"_faucet_pages":["bitcoin-faucet"],"_faucet_refs":["bitcoin-faucet"],"_faucet_settings":["bitcoin-faucet"],"wb":["wp-widget-bundle"],"extrawatch":["extrawatch-pro"],"extrawatch_blocked":["extrawatch-pro"],"extrawatch_cache":["extrawatch-pro"],"extrawatch_cc2c":["extrawatch-pro"],"extrawatch_config":["extrawatch-pro"],"extrawatch_dm_counter":["extrawatch-pro"],"extrawatch_dm_extension":["extrawatch-pro"],"extrawatch_dm_paths":["extrawatch-pro"],"extrawatch_dm_referrer":["extrawatch-pro"],"extrawatch_flow":["extrawatch-pro"],"extrawatch_goals":["extrawatch-pro"],"extrawatch_heatmap":["extrawatch-pro"],"extrawatch_history":["extrawatch-pro"],"extrawatch_info":["extrawatch-pro"],"extrawatch_internal":["extrawatch-pro"],"extrawatch_ip2c_cache":["extrawatch-pro"],"extrawatch_keyphrase":["extrawatch-pro"],"extrawatch_sql_scripts":["extrawatch-pro"],"extrawatch_uri":["extrawatch-pro"],"extrawatch_uri2keyphrase":["extrawatch-pro"],"extrawatch_uri2keyphrase_pos":["extrawatch-pro"],"extrawatch_uri2title":["extrawatch-pro"],"extrawatch_uri_history":["extrawatch-pro"],"extrawatch_uri_post":["extrawatch-pro"],"extrawatch_user_log":["extrawatch-pro"],"extrawatch_visit2goal":["extrawatch-pro"],"grid_box":["grid"],"grid_box_style":["grid"],"grid_box_type":["grid"],"grid_container":["grid"],"grid_container2slot":["grid"],"grid_container_style":["grid"],"grid_container_type":["grid"],"grid_grid":["grid"],"grid_grid2container":["grid"],"grid_nodes":["grid"],"grid_schema":["grid"],"grid_slot":["grid"],"grid_slot2box":["grid"],"grid_slot_style":["grid"],"cycletext_content":["wp-cycle-text-announcement"],"cycletext_settings":["wp-cycle-text-announcement"],"gridaccordion_accordions":["grid-accordion-lite","grid-accordion"],"gridaccordion_layers":["grid-accordion-lite","grid-accordion"],"gridaccordion_panels":["grid-accordion-lite","grid-accordion"],"contact_stored_data":["contact-form-with-shortcode"],"contact_subscribers":["contact-form-with-shortcode"],"cm_fields":["custom-user-contact-form-builder"],"cm_forms":["custom-user-contact-form-builder"],"cm_front_users":["custom-user-contact-form-builder"],"cm_notes":["custom-user-contact-form-builder"],"cm_paypal_fields":["custom-user-contact-form-builder"],"cm_paypal_logs":["custom-user-contact-form-builder"],"cm_sent_mails":["custom-user-contact-form-builder"],"cm_sessions":["custom-user-contact-form-builder"],"cm_stats":["custom-user-contact-form-builder"],"cm_submission_fields":["custom-user-contact-form-builder"],"cm_submissions":["custom-user-contact-form-builder"],"better_login_security_history":["better-login-security-and-history"],"contact_manager_forms":["contact-manager"],"contact_manager_forms_categories":["contact-manager"],"contact_manager_messages":["contact-manager"],"sndr_mail_send":["sender"],"sndr_users":["sender"],"webtechglobal_log":["youtube-sidebar","wtg-tasks-manager"],"mrt_sms_carrier":["wordpress-text-message"],"mrt_sms_list":["wordpress-text-message"],"mrt_sms_queue":["wordpress-text-message"],"_wwa_plugin_alerts":["wwa-advanced-wp-security"],"_wwa_plugin_live_traffic":["wwa-advanced-wp-security"],"pageview_history":["page-view-count-by-webline"],"ap_clickout":["affiliate-power"],"ap_transaction":["affiliate-power"],"searchengine_cronjobs":["search-engine"],"searchengine_groups":["search-engine"],"searchengine_index":["search-engine"],"searchengine_keywords":["search-engine"],"searchengine_links":["search-engine"],"searchengine_log":["search-engine"],"searchengine_queue":["search-engine"],"searchengine_search":["search-engine"],"searchengine_sites":["search-engine"],"searchengine_templates":["search-engine"],"as_tejus_crsl":["multicarousel"],"as_tejus_crsl_sec":["multicarousel"],"as_tejus_crsl_thrd":["multicarousel"],"ws_alipay_orders":["alipay"],"ws_alipay_ordersmeta":["alipay"],"ws_alipay_products":["alipay"],"ws_alipay_productsmeta":["alipay"],"ws_alipay_templates":["alipay"],"ws_alipay_templatesmeta":["alipay"],"inlinks_data":["inlinks-ad-plugin"],"game_servers":["game-server-status"],"fgcf_form_table":["contact-popup"],"greatrealestate_listings":["great-real-estate"],"zan":["wp-zan"],"sticky_social_icon":["sticky-social-icon"],"kushmicronews":["kush-micro-news"],"pronamic_domain_posts":["pronamic-domain-mapping"],"daily_stats":["slide-banners","expandable-banners","push-down-banners"],"openhour":["wp-open-hours"],"bm_banners":["banner-manager"],"bm_groups":["banner-manager"],"bm_stats":["banner-manager"],"cheetaho_image_metadata":["cheetaho-image-optimizer"],"cheetaho_folders":["cheetaho-image-optimizer"],"appten_imagerotator":["appten-image-rotator"],"community_lite_general_settings":["avchat-3"],"community_lite_permissions":["avchat-3"],"carsellers_requests":["cars-seller-auto-classifieds-script"],"popular_posts_statistics":["most-popular-posts-widget-lite"],"alc_address":["alc"],"alc_link":["alc"],"alc_redirectlog":["alc"],"jcorgcr_categories":["jaspreetchahals-coupons-lite"],"jcorgcr_coupons":["jaspreetchahals-coupons-lite"],"invitations":["wordpress-mu-secure-invites"],"dswr_lists":["da-stop-word-removal"],"dswr_words":["da-stop-word-removal"],"myshouts":["myshouts-shoutbox"],"inic_testimonial":["indianic-testimonial"],"inic_testimonial_template":["indianic-testimonial"],"inic_testimonial_widget":["indianic-testimonial"],"addpub":["wp-addpub"],"no_disposable_email":["no-disposable-email"],"mcpd_currency":["multi-currency-paypal-donations"],"nb_data":["infobar"],"nb_nottypes":["infobar"],"upb_field":["ultimate-profile-builder"],"upb_fields":["ultimate-profile-builder"],"upb_group":["ultimate-profile-builder"],"upb_option":["ultimate-profile-builder"],"upb_values":["ultimate-profile-builder"],"ljlongtailseo":["lj-longtail-seo"],"ct_clients":["clients"],"ss_postmeta":["social-streams"],"ss_posts":["social-streams"],"bw_videos":["blue-wrench-videos-widget"],"custom_cms_block":["wp-custom-cms-block"],"bounce_emails":["bounce"],"ip2c_addresses":["ip-to-country"],"ip2c_countries":["ip-to-country"],"ip2c_ipv6":["ip-to-country"],"wc_bkash":["woocommerce-bkash"],"l_crm_map_fields":["wp-widget-sugarcrm-lead-module"],"showtwitterfol":["show-twitter-followers"],"social_links_sidebar":["social-links-sidebar"],"sodahead_templates":["sodahead-polls"],"wls_areas":["wp-curriculo-vitae"],"wls_curriculo":["wp-curriculo-vitae"],"wls_curriculo_options":["wp-curriculo-vitae"],"beifen":["bei-fen"],"gts_translated_options":["gts-translation"],"gts_translated_posts":["gts-translation"],"gts_translated_terms":["gts-translation"],"mscr_intrusions":["mute-screamer"],"wpgft_data":["wp-gift-cert"],"ahm_qt_tab_groups":["quick-tabs"],"ahm_qt_tabs":["quick-tabs"],"bot_instances":["giga-messenger-bots"],"bot_leads":["giga-messenger-bots"],"bot_leads_meta":["giga-messenger-bots"],"bot_messages":["giga-messenger-bots"],"bot_nodes":["giga-messenger-bots"],"free_quotation_kris_iv":["free-quotation"],"free_quotation_tags":["free-quotation"],"ap_meta":["profilepress"],"fny_sharebuttons":["fny-social-media-share-buttons"],"phpleague_club":["phpleague"],"phpleague_country":["phpleague"],"phpleague_fixture":["phpleague"],"phpleague_league":["phpleague"],"phpleague_match":["phpleague"],"phpleague_player":["phpleague"],"phpleague_player_data":["phpleague"],"phpleague_player_team":["phpleague"],"phpleague_table_cache":["phpleague"],"phpleague_table_chart":["phpleague"],"phpleague_table_prediction":["phpleague"],"phpleague_team":["phpleague"],"ios_icons":["ios-icons-for-wordpress"],"pageblocks_pages_config":["page-blocks"],"gen_news_slider_widgets":["wp-news-slider-widgets"],"lodgix_amenities":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_categories":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_deposits":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_fees":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_lang_amenities":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_lang_pages":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_lang_properties":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_languages":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_link_rotators":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_merged_rates":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_pages":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_pictures":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_policies":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_properties":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_property_categories":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_property_tags":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_reviews":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_searchable_amenities":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_tags":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_taxes":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_category_posts":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_translations":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"pls":["parallel-loading-system"],"bp_cp_galleries":["buddypress-easy-albums-photos-video-and-music-next-gen","buddypress-easy-albums-photos-video-and-music"],"compare_tables":["wp-compare-tables"],"compare_tables_columns":["wp-compare-tables"],"compare_tables_rows":["wp-compare-tables"],"compare_tables_values":["wp-compare-tables"],"map_addresses":["map-contact"],"map_settings":["map-contact"],"cs_posts":["clicksold-wordpress-plugin"],"walm_links":["affiliate-links-manager"],"pluginsl_related_articles":["related-articles"],"cgm_cal_entries":["cgm-event-calendar"],"cgm_cal_entry_excludes":["cgm-event-calendar"],"cgm_cal_entry_includes":["cgm-event-calendar"],"cgm_cal_entry_tags":["cgm-event-calendar"],"cgm_cal_tags":["cgm-event-calendar"],"jfc":["jquery-featured-content-gallery"],"wordpresssentinel_file":["wordpress-sentinel"],"wordpresssentinel_section":["wordpress-sentinel"],"lydl_posts":["fl3r-feelbox","moodthingy-mood-rating-widget"],"lydl_poststimestamp":["fl3r-feelbox","moodthingy-mood-rating-widget"],"osd_subscribe":["osd-subscribe"],"osd_subscribe_categories":["osd-subscribe"],"easysiteimporter":["easy-site-importer"],"linkmeta":["external-events-calendar","simply-social-links"],"rich_web_gallery_effects_data":["gallery-image-gallery-photo"],"rich_web_gallery_font_family":["gallery-image-gallery-photo"],"rich_web_gallery_id":["gallery-image-gallery-photo"],"rich_web_gallery_image_instal":["gallery-image-gallery-photo"],"rich_web_gallery_image_manager":["gallery-image-gallery-photo"],"rw_gallery_effect1":["gallery-image-gallery-photo"],"rw_gallery_effect2":["gallery-image-gallery-photo"],"rich_web_gallery_effects_data_1":["gallery-image-gallery-photo"],"rich_web_gallery_effects_data_2":["gallery-image-gallery-photo"],"rich_web_questions":["gallery-image-gallery-photo"],"gps_locations":["gps-tracker","gps-plotter"],"gps_logger":["gps-tracker","gps-plotter"],"category_subdomains":["wp-subdomains-revisited","wordpress-subdomains"],"ue1_cache":["upcoming-events"],"kento_wp_stats":["kento-wp-stats"],"kento_wp_stats_online":["kento-wp-stats"],"netgocarousel":["netgo-horizontal-carousel"],"admanager":["ad-manager"],"scistbl":["simple-code-insert-shortcode"],"plg_administrator":["plugincheck"],"plg_options_meta":["plugincheck"],"izoomimage":["wp-imagezoom"],"izoomparam":["wp-imagezoom"],"maxv_social_accounts_log":["slm-facebook-autoposter","twitter-slm"],"anti_haxtool":["anti-hacking-tools"],"favorite_post":["favorite-post"],"sil_rss":["external-rss-reader"],"sil_rss_by_category":["external-rss-reader"],"sil_rss_categories":["external-rss-reader"],"orbis_companies":["orbis"],"orbis_log":["orbis"],"orbis_projects":["orbis"],"wpb_content":["wp-blocks"],"amen_prayers":["amen"],"amen_requests":["amen"],"logincustomizer":["simple-login-page-customizer"],"user_visits_log":["user-visit-log"],"maincount":["countposts-v-10-wordpress-plugin"],"maps":["simplified-google-maps-light"],"places":["simplified-google-maps-light"],"preferences":["simplified-google-maps-light"],"easy_poll_a":["wp-easy-poll-afo"],"easy_poll_q":["wp-easy-poll-afo"],"easy_poll_votes":["wp-easy-poll-afo"],"osf_nodes":["omni-secure-files"],"jv_notification_log":["wp-jv-custom-email-settings"],"faq_categories":["tf-faq"],"faq_questions":["tf-faq"],"custom_website_data":["simple-custom-website-data"],"easy_pie_ibc_contacts":["site-watch"],"easy_pie_ibc_entities":["site-watch"],"easy_pie_ibc_events":["site-watch"],"easy_pie_ibc_public_ids":["site-watch"],"tpress":["twitpress"],"arete_wp_smiley_settings":["post-and-page-reactions"],"arete_wp_smileys":["post-and-page-reactions"],"arete_wp_smileys_manage":["post-and-page-reactions"],"sms_ovh_categories":["sms-ovh"],"sms_ovh_historique":["sms-ovh"],"sms_ovh_messages":["sms-ovh"],"sms_ovh_numeros":["sms-ovh"],"bucketlist_bucket":["bucket-list"],"bucketlist_task":["bucket-list"],"trix_table":["statrix"],"statrix":["statrix"],"autolink":["wp-autolink"],"sortsearchresult":["sort-searchresult-by-title"],"vw_vprooms":["videowhisper-video-presentation"],"vw_vpsessions":["videowhisper-video-presentation"],"webdesignby_musicbox":["musicbox"],"webdesignby_musicbox_musicbox_tracks_assoc":["musicbox"],"webdesignby_musicbox_tracks":["musicbox"],"jp_advancedrss_cache":["advanced-rss"],"jp_advancedrss_templates":["advanced-rss"],"wh_testimonials":["wh-testimonials"],"redirectify_config":["redirectify"],"gimaps_lite":["google-interactive-maps-lite"],"rua_blog_subscriber":["rua-blog-subscriber-lite"],"wcup_match":["world-cup-predictor"],"wcup_prediction":["world-cup-predictor"],"wcup_stage":["world-cup-predictor"],"wcup_team":["world-cup-predictor"],"wcup_venue":["world-cup-predictor"],"jp_journals":["journalpress"],"wpe_twitter":["wp-essentials"],"limit_attempts_booster":["limit-attempts-booster"],"limit_attempts_booster_meta":["limit-attempts-booster"],"limit_attempts_booster_ip_locations":["limit-attempts-booster"],"test_table":["email-customizer-woocommerce"],"sm_email_table":["email-customizer-woocommerce"],"qotd":["cd-qotd"],"vr_fr_clases":["vr-frases"],"vr_fr_frases":["vr-frases"],"vr_fr_temas":["vr-frases"],"radslide_slide":["radslide"],"radslide_slideshow":["radslide"],"visitorflow_aggregation":["wp-visitorflow"],"visitorflow_flow":["wp-visitorflow"],"visitorflow_meta":["wp-visitorflow"],"visitorflow_pages":["wp-visitorflow"],"visitorflow_visits":["wp-visitorflow"],"odudecard_view":["odude-ecard"],"notes":["site-notes"],"wpcm_menu_links":["wp-easy-bubble-menu"],"wpcm_menu_props":["wp-easy-bubble-menu"],"ie_css":["ie-css-definer"],"buymeapie_recipe_recipe":["recipe-schema-markup"],"buymeapie_recipe_theme":["recipe-schema-markup"],"ocrb_backup":["wprecovery"],"wpdmp_map":["wp-design-maps-places"],"wpdmp_map_marker":["wp-design-maps-places"],"wpdmp_marker":["wp-design-maps-places"],"wpdmp_marker_descr":["wp-design-maps-places"],"wpdmp_ref_point":["wp-design-maps-places"],"zaki_like_dislike_comments":["zaki-like-dislike-comments"],"_3wp_logintracker_login_stats":["threewp-login-tracker"],"_3wp_logintracker_logins":["threewp-login-tracker"],"planification":["wp-planification"],"now_reading":["now-reading-reloaded","now-reading-redux"],"now_reading_books2tags":["now-reading-reloaded","now-reading-redux"],"now_reading_meta":["now-reading-reloaded","now-reading-redux"],"now_reading_tags":["now-reading-reloaded","now-reading-redux"],"feature_request":["feature-request"],"rk_contact":["rk-responsive-contact-form"],"google_calendar":["google-calendar-plugin","calendar-plugin"],"pushlive":["pushlive"],"usertracker":["usertracker"],"dyamar_polls":["dyamar-polls"],"dyamar_polls_answers":["dyamar-polls"],"wl_list":["page-whitelists"],"wl_list_page":["page-whitelists"],"remove_handled":["wp-remove-css-js"],"mpc_categories":["misiek-page-category"],"mpc_pages_categories":["misiek-page-category"],"slbl_blocks":["htaccess-login-block"],"slbl_log":["htaccess-login-block"],"amber_activity":["amberlink"],"amber_cache":["amberlink"],"amber_check":["amberlink"],"amber_queue":["amberlink"],"afb_feedbacks":["anyway-feedback"],"stock_engines":["stock-engine"],"invitebox":["refer-a-friend-widget-for-wp"],"bp_bet_events":["betpress"],"bp_bet_events_cats":["betpress"],"bp_bet_options":["betpress"],"bp_events":["betpress"],"bp_leaderboards":["betpress"],"bp_paypal":["betpress"],"bp_slips":["betpress"],"bp_sports":["betpress"],"scrollrevealjs":["scrollrevealjs-effects"],"ngg_upload_queue":["nextgen-public-image-uploader"],"ssb_data":["ultimate-bar"],"hatchbuck_shortcode":["hatchbuck"],"cw_games":["wp-clanwars"],"cw_maps":["wp-clanwars"],"cw_matches":["wp-clanwars"],"cw_rounds":["wp-clanwars"],"cw_teams":["wp-clanwars"],"sshow_perfs":["stageshow"],"sshow_prices":["stageshow"],"sshow_sales":["stageshow"],"sshow_settings":["stageshow"],"sshow_shows":["stageshow"],"sshow_tickets":["stageshow"],"sshow_discodes":["stageshow"],"sshow_dispresets":["stageshow"],"sshow_disprices":["stageshow"],"sshow_plans":["stageshow"],"sshow_presets":["stageshow"],"sshow_seating":["stageshow"],"sshow_spooler":["stageshow"],"sshow_ticketsmeta":["stageshow"],"sshow_verifys":["stageshow"],"sshow_zones":["stageshow"],"sshow_payments":["stageshow"],"sshow_sessions":["stageshow"],"paymentgatewaytranx":["remita-payment-gateway"],"dropshipapikey":["inventory-source-dropship-automation"],"bs_formdata":["form-creation-for-bootstrap"],"bs_options":["form-creation-for-bootstrap"],"bs_postdata":["form-creation-for-bootstrap"],"dxgames":["multiplayer-plugin"],"dxservers":["multiplayer-plugin"],"djo_cache":["dejureorg-vernetzungsfunktion"],"gs_like_post":["wp-like-post"],"r_contacts":["intrigger"],"r_stats":["intrigger"],"locations":["geo-multi-location-map","google-map-latitude-and-longitude","instant-locations"],"anderson_makiyama_programacao_djs_djs":["programacao-djs"],"anderson_makiyama_programacao_djs_programacao":["programacao-djs"],"anderson_makiyama_programacao_djs_programas":["programacao-djs"],"posted_display":["wp-posted-display"],"feedbacks":["design-feedback","rate-this-page-plugin"],"excitel_":["excitel-click-to-call"],"amhall_question":["eexamhall"],"amhall_quiz":["eexamhall"],"amhall_result":["eexamhall"],"amhall_subject":["eexamhall"],"nfpd":["no-frills-prize-draw"],"nfpd_entries":["no-frills-prize-draw"],"fitsoft":["gym-studio-membership-management"],"proto_masonry_grids":["featured-image-pro"],"rncbc_calendar":["tennis-court-bookings"],"rncbc_court":["tennis-court-bookings"],"rncbc_reservation":["tennis-court-bookings"],"arval_redirects":["wp-simple-redirect"],"arval_targets":["wp-simple-redirect"],"woel_woocommerce_order_emails_log":["order-emails-log-for-woocommerce"],"pwreclamaciones":["libro-de-reclamaciones"],"gs_instagram_themes":["gs-instagram-portfolio"],"quotes":["yummi-quotes"],"prenotazioni_spazi":["prenotazioni"],"wpr_http_user_agents":["wp-ranking-pro"],"wpr_ranking":["wp-ranking-pro"],"wpr_views":["wp-ranking-pro"],"wpr_views_per_day":["wp-ranking-pro"],"linkoptimizer_links":["link-optimizer-lite"],"linkoptimizer_linksets":["link-optimizer-lite"],"linkremoved":["post-internal-link-removal"],"tp_daten":["terminplaner"],"tp_teilnehmer":["terminplaner"],"tp_term_status":["terminplaner"],"tp_termine":["terminplaner"],"support_attachment":["wp-support-ticket"],"support_reply":["wp-support-ticket"],"support_reply_noti":["wp-support-ticket"],"rmc_champs":["recherche-multi-champs"],"rmc_options":["recherche-multi-champs"],"uiform_fields":["zigaform-form-builder-lite"],"uiform_fields_type":["zigaform-form-builder-lite"],"uiform_form":["zigaform-form-builder-lite"],"uiform_form_records":["zigaform-form-builder-lite"],"uiform_settings":["zigaform-form-builder-lite"],"uiform_form_log":["zigaform-form-builder-lite"],"uiform_addon":["zigaform-form-builder-lite"],"uiform_addon_details":["zigaform-form-builder-lite"],"uiform_addon_details_log":["zigaform-form-builder-lite"],"webling_cache":["webling"],"webling_form_fields":["webling"],"webling_forms":["webling"],"webling_memberlists":["webling"],"wc_cr_order_itemmeta":["computer-repair-shop"],"wc_cr_order_items":["computer-repair-shop"],"wc_cr_taxes":["computer-repair-shop"],"wc_cr_job_status":["computer-repair-shop"],"wc_cr_job_history":["computer-repair-shop"],"cc_odoo_integrator_field_mapping":["wp-odoo-form-integrator"],"cc_odoo_integrator_forms":["wp-odoo-form-integrator"],"wow_sbmp":["slide-menu"],"delete_id_list":["restore-permanently-delete-post-or-page-data"],"delete_postmeta":["restore-permanently-delete-post-or-page-data"],"delete_posts":["restore-permanently-delete-post-or-page-data"],"muv_sh_intversion":["muv-hide-preview","muv-youtube-datenschutz","muv-kundenkonto"],"ils_catch_all":["emails-catch-all"],"popup_banners_form_log":["wp-popup-lite"],"popup_banners_subscription_log":["wp-popup-lite"],"wsmea_conditional_payment_methods":["conditional-payment-methods-for-woocommerce"],"scfui_boxes":["betta-boxes-cms"],"scfui_fields":["betta-boxes-cms"],"price_ui_slider":["ui-slider-filter-by-price"],"woocommerce_custom_order_data":["woocommerce-custom-order-data"],"ernal_link_info":["seo-internal-link-building"],"jsprtachv_country":["joomsport-achievements"],"jsprtachv_extra_fields":["joomsport-achievements"],"jsprtachv_extra_select":["joomsport-achievements"],"jsprtachv_results_fields":["joomsport-achievements"],"jsprtachv_stage_result":["joomsport-achievements"],"jsprtachv_stages":["joomsport-achievements"],"jsprtachv_stages_val":["joomsport-achievements"],"webolatory_changelog":["wp-changelog"],"gform_form_page":["gf-form-locator"],"wpsstm_subtracks":["wp-soundsystem"],"lsp_linkpoints":["best-local-seo-tools"],"lsp_localprojects":["best-local-seo-tools"],"lsp_redirects":["best-local-seo-tools"],"asfb_cache":["advanced-search-form-builder"],"elfsight_facebook_feed_widgets":["elfsight-facebook-feed"],"silvasoft_woo_log":["silvasoft-boekhouden"],"hayyabuild":["hayyabuild"],"hayyabuild_map":["hayyabuild"],"ocb_revisions":["offsprout-page-builder"],"sb_blocks":["simple-bitcoin-faucets"],"sb_bonds":["simple-bitcoin-faucets"],"sb_keys":["simple-bitcoin-faucets"],"wooup_offers":["woo-unlimited-upsell-lite"],"wooup_stats":["woo-unlimited-upsell-lite"],"wooup_view_stats":["woo-unlimited-upsell-lite"],"storelocatorwidget":["store-locator-widget"],"qards_component":["qards-free"],"qards_layout":["qards-free"],"qards_layout_component":["qards-free"],"qards_resource":["qards-free"],"qards_ss":["qards-free"],"qards_subscriber":["qards-free"],"ctmdcd_appointment":["doctor-appointment-booking"],"ctmdcd_chamber":["doctor-appointment-booking"],"ctmdcd_country":["doctor-appointment-booking"],"ctmdcd_patient":["doctor-appointment-booking"],"ctmdcd_prescription":["doctor-appointment-booking"],"ctmdcd_settings":["doctor-appointment-booking"],"srm_reviews":["starfish-reviews"],"srm_reviews_last_summary":["starfish-reviews"],"srm_reviews_profiles":["starfish-reviews"],"srm_view_reviews_profiles":["starfish-reviews"],"flashy_carts":["wp-flashy-marketing-automation"],"wptodo":["wp-todo"],"wptodo_comments":["wp-todo"],"wptodo_email":["wp-todo"],"vxg_freshdesk":["gf-freshdesk"],"vxg_freshdesk_accounts":["gf-freshdesk"],"vxg_freshdesk_log":["gf-freshdesk"],"worx_faq":["wpworx-faq"],"worx_files":["wpworx-faq"],"worx_trending":["wpworx-faq"],"cte":["wp-basic-crud"],"_administrators_stats":["photo-video-store"],"_affiliates_signups":["photo-video-store"],"_affiliates_stats":["photo-video-store"],"_audio_fields":["photo-video-store"],"_audio_format":["photo-video-store"],"_audio_source":["photo-video-store"],"_audio_types":["photo-video-store"],"_carts":["photo-video-store"],"_carts_content":["photo-video-store"],"_category":["photo-video-store"],"_category_items":["photo-video-store"],"_category_stock":["photo-video-store"],"_collections":["photo-video-store"],"_collections_items":["photo-video-store"],"_colors":["photo-video-store"],"_commission":["photo-video-store"],"_components":["photo-video-store"],"_content_filter":["photo-video-store"],"_content_type":["photo-video-store"],"_coupons_types":["photo-video-store"],"_credits":["photo-video-store"],"_credits_list":["photo-video-store"],"_currency":["photo-video-store"],"_documents":["photo-video-store"],"_documents_types":["photo-video-store"],"_downloads":["photo-video-store"],"_examinations":["photo-video-store"],"_ffmpeg_cron":["photo-video-store"],"_filestorage":["photo-video-store"],"_filestorage_files":["photo-video-store"],"_filestorage_logs":["photo-video-store"],"_friends":["photo-video-store"],"_galleries":["photo-video-store"],"_galleries_photos":["photo-video-store"],"_gateway_clickbank":["photo-video-store"],"_gateway_epoch":["photo-video-store"],"_gateway_jvzoo":["photo-video-store"],"_gateway_segpay":["photo-video-store"],"_invoices":["photo-video-store"],"_items":["photo-video-store"],"_languages":["photo-video-store"],"_licenses":["photo-video-store"],"_lightboxes":["photo-video-store"],"_lightboxes_admin":["photo-video-store"],"_lightboxes_files":["photo-video-store"],"_media":["photo-video-store"],"_messages":["photo-video-store"],"_models":["photo-video-store"],"_models_files":["photo-video-store"],"_newsletter":["photo-video-store"],"_newsletter_emails":["photo-video-store"],"_notifications":["photo-video-store"],"_orders":["photo-video-store"],"_orders_content":["photo-video-store"],"_payments":["photo-video-store"],"_payout":["photo-video-store"],"_photos_exif":["photo-video-store"],"_photos_formats":["photo-video-store"],"_printful_orders":["photo-video-store"],"_printful_prints":["photo-video-store"],"_prints":["photo-video-store"],"_prints_categories":["photo-video-store"],"_prints_items":["photo-video-store"],"_prints_previews":["photo-video-store"],"_products_options":["photo-video-store"],"_products_options_items":["photo-video-store"],"_pwinty":["photo-video-store"],"_pwinty_orders":["photo-video-store"],"_pwinty_prints":["photo-video-store"],"_rights_managed":["photo-video-store"],"_rights_managed_groups":["photo-video-store"],"_rights_managed_options":["photo-video-store"],"_rights_managed_structure":["photo-video-store"],"_search_history":["photo-video-store"],"_shipping":["photo-video-store"],"_shipping_ranges":["photo-video-store"],"_shipping_regions":["photo-video-store"],"_sizes":["photo-video-store"],"_subscription":["photo-video-store"],"_subscription_list":["photo-video-store"],"_support":["photo-video-store"],"_support_tickets":["photo-video-store"],"_tax":["photo-video-store"],"_tax_regions":["photo-video-store"],"_templates_admin_home":["photo-video-store"],"_terms":["photo-video-store","awesome-studio"],"_testimonials":["photo-video-store"],"_translations":["photo-video-store"],"_user_category":["photo-video-store"],"_users_fields":["photo-video-store"],"_vector_types":["photo-video-store"],"_video_fields":["photo-video-store"],"_video_format":["photo-video-store"],"_video_frames":["photo-video-store"],"_video_ratio":["photo-video-store"],"_video_rendering":["photo-video-store"],"_video_types":["photo-video-store"],"_voteitems":["photo-video-store"],"_voteitems2":["photo-video-store"],"_voteitems_users":["photo-video-store"],"_elasticsearch":["photo-video-store"],"_packages":["photo-video-store"],"_packages_categories":["photo-video-store"],"_packages_files":["photo-video-store"],"_packages_list":["photo-video-store"],"wpthumbtack_post_templates":["wp-thumbtack-review-slider"],"wpthumbtack_reviews":["wp-thumbtack-review-slider"],"data_logger":["wp-data-logger"],"wpac_like_system":["wpac-like-system"],"wpac_reactions_system":["wpac-like-system"],"vxcf_insightly":["cf7-insightly"],"vxcf_insightly_accounts":["cf7-insightly"],"vxcf_insightly_log":["cf7-insightly"],"premmerce_pinterest":["premmerce-woocommerce-pinterest"],"rf_bookings":["reservation-facile"],"rf_locations":["reservation-facile"],"rf_modifyprice":["reservation-facile"],"rf_modifyprice_bookings":["reservation-facile"],"rf_modifyprice_spaces":["reservation-facile"],"rf_parameters":["reservation-facile"],"rf_shortcodes":["reservation-facile"],"rf_spaces":["reservation-facile"],"owt_lib_book_issue":["library-management-system"],"owt_lib_books":["library-management-system"],"owt_lib_branch":["library-management-system"],"owt_lib_category":["library-management-system"],"owt_lib_country":["library-management-system"],"owt_lib_currency_code":["library-management-system"],"owt_lib_late_fine":["library-management-system"],"owt_lib_return_book":["library-management-system"],"owt_lib_staff_type":["library-management-system"],"owt_lib_staffs":["library-management-system"],"owt_lib_students":["library-management-system"],"owt_lib_bookcase":["library-management-system"],"owt_lib_bookcase_sections":["library-management-system"],"fastflow_settings":["fast-flow-dashboard"],"tags_stats":["fast-flow-dashboard"],"primer_data":["primer-by-chloedigital"],"video_files":["videos"],"cf7_mollie":["cf7-mollie"],"resa_alert":["resa-online"],"resa_appointment":["resa-online"],"resa_appointment_member":["resa-online"],"resa_appointment_number_price":["resa-online"],"resa_appointment_reduction":["resa-online"],"resa_ask_payment":["resa-online"],"resa_booking":["resa-online"],"resa_booking_custom_reduction":["resa-online"],"resa_booking_reduction":["resa-online"],"resa_customer":["resa-online"],"resa_email_customer":["resa-online"],"resa_form":["resa-online"],"resa_group":["resa-online"],"resa_info_calendar":["resa-online"],"resa_log_notification":["resa-online"],"resa_member_availability":["resa-online"],"resa_member_availability_service":["resa-online"],"resa_member_constraint":["resa-online"],"resa_member_link":["resa-online"],"resa_member_link_service":["resa-online"],"resa_payment":["resa-online"],"resa_reduction":["resa-online"],"resa_reduction_application":["resa-online"],"resa_reduction_condition":["resa-online"],"resa_reduction_condition_application":["resa-online"],"resa_reduction_condition_service":["resa-online"],"resa_reduction_conditions":["resa-online"],"resa_reduction_conditions_application":["resa-online"],"resa_service":["resa-online"],"resa_service_availability":["resa-online"],"resa_service_constraint":["resa-online"],"resa_service_member_priority":["resa-online"],"resa_service_price":["resa-online"],"resa_service_timeslot":["resa-online"],"resa_staff":["resa-online"],"resa_static_group":["resa-online"],"resa_equipment":["resa-online"],"easy_fattura_elettronica":["easy-fattura-elettronica-free"],"easy_fattura_elettronica_intermediari":["easy-fattura-elettronica-free"],"cfom":["n-media-woocommerce-checkout-fields"],"sibs_payment_information":["sibs-woocommerce"],"sibs_transaction":["sibs-woocommerce"],"shiptimize":["shiptimize-for-woocommerce"],"shiptimize_marketplace_order":["shiptimize-for-woocommerce"],"rabbitbuilder_js_css":["rabbitbuilder-global-central-js-css"],"vxg_zendesk":["gf-zendesk"],"vxg_zendesk_accounts":["gf-zendesk"],"vxg_zendesk_log":["gf-zendesk"],"yatra_tour_booking_stats":["yatra"],"yatra_tour_dates":["yatra"],"yatra_tour_enquiries":["yatra"],"yatra_logs":["yatra"],"vxc_infusionsoft_accounts":["wp-infusionsoft-woocommerce"],"vxc_infusionsoft_log":["wp-infusionsoft-woocommerce"],"church_tithe_wp_arrangements":["churchtithewp"],"church_tithe_wp_transactions":["churchtithewp"],"point_map":["shmapper-by-teplitsa"],"pico":["pico"],"enormail_forms":["enormail-sign-up-forms"],"shipping_servientrega_matriz":["shipping-servientrega-woocommerce"],"qrscannerredirect_settings":["qr-scanner-redirect"],"woocommerce_b2w_skyhub_log":["b2w-skyhub"],"woocommerce_b2w_skyhub_queue":["b2w-skyhub"],"da_r_reactions":["da-reactions"],"da_r_votes":["da-reactions"],"apoyl_weixinshare":["apoyl-weixinshare"],"fresh_page_reports":["fresh-connect"],"fresh_page_stats":["fresh-connect"],"fresh_connect_requests_log":["fresh-connect"],"wjb_application_activities":["ninja-job-board"],"wjb_applications":["ninja-job-board"],"wjb_campaign_emails":["ninja-job-board"],"wjb_email_campaigns":["ninja-job-board"],"vikappointments_cf_service_assoc":["vikappointments"],"vikappointments_cities":["vikappointments"],"vikappointments_config":["vikappointments"],"vikappointments_conversion":["vikappointments"],"vikappointments_countries":["vikappointments"],"vikappointments_coupon":["vikappointments"],"vikappointments_coupon_employee_assoc":["vikappointments"],"vikappointments_coupon_group":["vikappointments"],"vikappointments_coupon_service_assoc":["vikappointments"],"vikappointments_cronjob":["vikappointments"],"vikappointments_cronjob_log":["vikappointments"],"vikappointments_cust_mail":["vikappointments"],"vikappointments_custfields":["vikappointments"],"vikappointments_emp_worktime":["vikappointments"],"vikappointments_employee":["vikappointments"],"vikappointments_employee_group":["vikappointments"],"vikappointments_employee_location":["vikappointments"],"vikappointments_employee_settings":["vikappointments"],"vikappointments_gpayments":["vikappointments"],"vikappointments_group":["vikappointments"],"vikappointments_lang_customf":["vikappointments"],"vikappointments_lang_empgroup":["vikappointments"],"vikappointments_lang_employee":["vikappointments"],"vikappointments_lang_group":["vikappointments"],"vikappointments_lang_option":["vikappointments"],"vikappointments_lang_package":["vikappointments"],"vikappointments_lang_package_group":["vikappointments"],"vikappointments_lang_payment":["vikappointments"],"vikappointments_lang_service":["vikappointments"],"vikappointments_lang_subscr":["vikappointments"],"vikappointments_option":["vikappointments"],"vikappointments_option_value":["vikappointments"],"vikappointments_order_status":["vikappointments"],"vikappointments_package":["vikappointments"],"vikappointments_package_group":["vikappointments"],"vikappointments_package_order":["vikappointments"],"vikappointments_package_order_item":["vikappointments"],"vikappointments_package_service":["vikappointments"],"vikappointments_res_opt_assoc":["vikappointments"],"vikappointments_reservation":["vikappointments"],"vikappointments_reviews":["vikappointments"],"vikappointments_ser_emp_assoc":["vikappointments"],"vikappointments_ser_opt_assoc":["vikappointments"],"vikappointments_ser_rates_assoc":["vikappointments"],"vikappointments_service":["vikappointments"],"vikappointments_special_rates":["vikappointments"],"vikappointments_states":["vikappointments"],"vikappointments_subscr_order":["vikappointments"],"vikappointments_subscription":["vikappointments"],"vikappointments_users":["vikappointments"],"vikappointments_waitinglist":["vikappointments"],"vikappointments_wpshortcodes":["vikappointments"],"vikappointments_ser_restr_assoc":["vikappointments"],"vikappointments_special_restrictions":["vikappointments"],"vikappointments_api_ban":["vikappointments"],"vikappointments_api_login":["vikappointments"],"vikappointments_api_login_event_options":["vikappointments"],"vikappointments_api_login_logs":["vikappointments"],"vikappointments_invoice":["vikappointments"],"vikappointments_lang_option_group":["vikappointments"],"vikappointments_lang_option_value":["vikappointments"],"vikappointments_lang_status_code":["vikappointments"],"vikappointments_lang_tax":["vikappointments"],"vikappointments_lang_tax_rule":["vikappointments"],"vikappointments_option_group":["vikappointments"],"vikappointments_stats_widget":["vikappointments"],"vikappointments_status_code":["vikappointments"],"vikappointments_tag":["vikappointments"],"vikappointments_tax":["vikappointments"],"vikappointments_tax_rule":["vikappointments"],"vikappointments_user_notes":["vikappointments"],"vikappointments_webhook":["vikappointments"],"vikappointments_lang_media":["vikappointments"],"vikappointments_media":["vikappointments"],"rank4win_app":["rank4win"],"rank4win_document":["rank4win"],"rank4win_process":["rank4win"],"rank4win_taxonomy":["rank4win"],"ered_email_download":["ere-download-document"],"traffic_statistics":["traffic"],"oo_plugin_address_fieldconfig":["onoffice-for-wp-websites"],"oo_plugin_cache":["onoffice-for-wp-websites"],"oo_plugin_fieldconfig":["onoffice-for-wp-websites"],"oo_plugin_form_fieldconfig":["onoffice-for-wp-websites"],"oo_plugin_forms":["onoffice-for-wp-websites"],"oo_plugin_listview_contactperson":["onoffice-for-wp-websites"],"oo_plugin_listviews":["onoffice-for-wp-websites"],"oo_plugin_listviews_address":["onoffice-for-wp-websites"],"oo_plugin_picturetypes":["onoffice-for-wp-websites"],"oo_plugin_sortbyuservalues":["onoffice-for-wp-websites"],"oo_plugin_fieldconfig_form_defaults":["onoffice-for-wp-websites"],"oo_plugin_fieldconfig_form_defaults_values":["onoffice-for-wp-websites"],"oo_plugin_fieldconfig_form_customs_labels":["onoffice-for-wp-websites"],"oo_plugin_fieldconfig_form_translated_labels":["onoffice-for-wp-websites"],"opcm_statistics":["opcache-manager"],"sikshya_order_itemmeta":["sikshya"],"sikshya_order_items":["sikshya"],"sikshya_user_itemmeta":["sikshya"],"sikshya_user_items":["sikshya"],"sikshya_logs":["sikshya"],"coinmotion":["precios-bitcoin-criptomonedas"],"alert_me":["alertme"],"nedwp_fm":["feedback-modal-for-website"],"cpreftrack_conversions":["cp-referrer-and-conversions-tracking"],"cpreftrack_logs":["cp-referrer-and-conversions-tracking"],"cpreftrack_registeredrefs":["cp-referrer-and-conversions-tracking"],"i_categories":["revi-io-customer-and-product-reviews"],"i_comments":["revi-io-customer-and-product-reviews"],"i_comments_replies":["revi-io-customer-and-product-reviews"],"i_orders":["revi-io-customer-and-product-reviews"],"i_products":["revi-io-customer-and-product-reviews"],"_justin_np_areas":["justin"],"_justin_np_cities":["justin"],"_justin_np_warehouses":["justin"],"justin_ttn_invoices":["justin"],"woo_justin_ru_cities":["justin"],"woo_justin_ru_warehouses":["justin"],"woo_justin_ua_cities":["justin"],"woo_justin_ua_warehouses":["justin"],"lws_wvw_history":["woovirtualwallet"],"iplocator_v4":["ip-locator"],"iplocator_v6":["ip-locator"],"iplocator_statistics":["ip-locator"],"mh_email_addresses":["mailhawk"],"mh_email_log":["mailhawk"],"wpas_index":["advance-search"],"smartpay_customers":["smartpay"],"rtpay_customers":["smartpay"],"smartpay_coupons":["smartpay"],"smartpay_forms":["smartpay"],"smartpay_payments":["smartpay"],"smartpay_products":["smartpay"],"sakolawp_attendance":["sakolawp-lite"],"sakolawp_attendance_log":["sakolawp-lite"],"sakolawp_class":["sakolawp-lite"],"sakolawp_class_routine":["sakolawp-lite"],"sakolawp_deliveries":["sakolawp-lite"],"sakolawp_enroll":["sakolawp-lite"],"sakolawp_exam":["sakolawp-lite"],"sakolawp_exams":["sakolawp-lite"],"sakolawp_homework":["sakolawp-lite"],"sakolawp_mark":["sakolawp-lite"],"sakolawp_questions":["sakolawp-lite"],"sakolawp_questions_bank":["sakolawp-lite"],"sakolawp_section":["sakolawp-lite"],"sakolawp_settings":["sakolawp-lite"],"sakolawp_student_answer":["sakolawp-lite"],"sakolawp_subject":["sakolawp-lite"],"nativerent_adv":["nativerent"],"nativerent_options":["nativerent"],"momo_trx":["wc-mtn-momo-payment-gateway"],"drflex_config_items":["dr-flex"],"drflex_custom_resources":["dr-flex"],"contabilium_log":["contabilium-oficial-para-woo"],"rnpdfimporter_form_config":["pdf-importer-for-wpform"],"rnpdfimporter_pdf_import":["pdf-importer-for-wpform"],"rnpdfimporter_records":["pdf-importer-for-wpform"],"vikrestaurants_api_ban":["vikrestaurants"],"vikrestaurants_api_login":["vikrestaurants"],"vikrestaurants_api_login_logs":["vikrestaurants"],"vikrestaurants_config":["vikrestaurants"],"vikrestaurants_countries":["vikrestaurants"],"vikrestaurants_coupons":["vikrestaurants"],"vikrestaurants_custfields":["vikrestaurants"],"vikrestaurants_gpayments":["vikrestaurants"],"vikrestaurants_invoice":["vikrestaurants"],"vikrestaurants_lang_config":["vikrestaurants"],"vikrestaurants_lang_customf":["vikrestaurants"],"vikrestaurants_lang_menus":["vikrestaurants"],"vikrestaurants_lang_menus_section":["vikrestaurants"],"vikrestaurants_lang_payments":["vikrestaurants"],"vikrestaurants_lang_room":["vikrestaurants"],"vikrestaurants_lang_section_product":["vikrestaurants"],"vikrestaurants_lang_section_product_option":["vikrestaurants"],"vikrestaurants_lang_takeaway_deal":["vikrestaurants"],"vikrestaurants_lang_takeaway_menus":["vikrestaurants"],"vikrestaurants_lang_takeaway_menus_attribute":["vikrestaurants"],"vikrestaurants_lang_takeaway_menus_entry":["vikrestaurants"],"vikrestaurants_lang_takeaway_menus_entry_option":["vikrestaurants"],"vikrestaurants_lang_takeaway_menus_entry_topping_group":["vikrestaurants"],"vikrestaurants_lang_takeaway_topping":["vikrestaurants"],"vikrestaurants_menus":["vikrestaurants"],"vikrestaurants_menus_section":["vikrestaurants"],"vikrestaurants_operator":["vikrestaurants"],"vikrestaurants_operator_log":["vikrestaurants"],"vikrestaurants_order_status":["vikrestaurants"],"vikrestaurants_res_code":["vikrestaurants"],"vikrestaurants_res_menus_assoc":["vikrestaurants"],"vikrestaurants_res_prod_assoc":["vikrestaurants"],"vikrestaurants_reservation":["vikrestaurants"],"vikrestaurants_reviews":["vikrestaurants"],"vikrestaurants_room":["vikrestaurants"],"vikrestaurants_room_closure":["vikrestaurants"],"vikrestaurants_sd_menus":["vikrestaurants"],"vikrestaurants_section_product":["vikrestaurants"],"vikrestaurants_section_product_assoc":["vikrestaurants"],"vikrestaurants_section_product_option":["vikrestaurants"],"vikrestaurants_shifts":["vikrestaurants"],"vikrestaurants_specialdays":["vikrestaurants"],"vikrestaurants_stats_widget":["vikrestaurants"],"vikrestaurants_table":["vikrestaurants"],"vikrestaurants_table_cluster":["vikrestaurants"],"vikrestaurants_tag":["vikrestaurants"],"vikrestaurants_takeaway_deal":["vikrestaurants"],"vikrestaurants_takeaway_deal_day_assoc":["vikrestaurants"],"vikrestaurants_takeaway_deal_free_assoc":["vikrestaurants"],"vikrestaurants_takeaway_deal_product_assoc":["vikrestaurants"],"vikrestaurants_takeaway_delivery_area":["vikrestaurants"],"vikrestaurants_takeaway_entry_group_assoc":["vikrestaurants"],"vikrestaurants_takeaway_group_topping_assoc":["vikrestaurants"],"vikrestaurants_takeaway_menus":["vikrestaurants"],"vikrestaurants_takeaway_menus_attr_assoc":["vikrestaurants"],"vikrestaurants_takeaway_menus_attribute":["vikrestaurants"],"vikrestaurants_takeaway_menus_entry":["vikrestaurants"],"vikrestaurants_takeaway_menus_entry_option":["vikrestaurants"],"vikrestaurants_takeaway_res_prod_assoc":["vikrestaurants"],"vikrestaurants_takeaway_res_prod_topping_assoc":["vikrestaurants"],"vikrestaurants_takeaway_reservation":["vikrestaurants"],"vikrestaurants_takeaway_stock_override":["vikrestaurants"],"vikrestaurants_takeaway_topping":["vikrestaurants"],"vikrestaurants_takeaway_topping_separator":["vikrestaurants"],"vikrestaurants_user_delivery":["vikrestaurants"],"vikrestaurants_users":["vikrestaurants"],"vikrestaurants_wpshortcodes":["vikrestaurants"],"vikrestaurants_takeaway_avail_override":["vikrestaurants"],"vikrestaurants_api_login_event_options":["vikrestaurants"],"vikrestaurants_origin":["vikrestaurants"],"rt_libro":["libro-de-reclamaciones-y-quejas"],"ithink_logistics":["ithink-logistics-ecommerce-shipping-in-india"],"cities":["acf-city-selector"],"marquee_img_crawler":["marquee-image-crawler"],"websitebox_liuyan":["wzbaibaoxiang"],"cf7b_builder":["cf7-builder"],"cf7b_submissions":["cf7-builder"],"cf7b_themes":["cf7-builder"],"_klcf_new_logs":["sitepact-klaviyo-contact-form-7"],"plggcwvf_config":["core-web-vitals-checker-and-optimization","core-web-vitals-optimization","webmasters-core-web-vitals-checker"],"wpcc_postcode":["check-pincodezipcode-for-shipping-availability"],"quillforms_log":["quillforms"],"quillforms_themes":["quillforms"],"quillforms_task_meta":["quillforms"],"jiangqie_post_favorite":["jiangqie-free-mini-program"],"jiangqie_post_like":["jiangqie-free-mini-program"],"jiangqie_post_search":["jiangqie-free-mini-program"],"jiangqie_post_view":["jiangqie-free-mini-program"],"whatso_abandoned_cart":["click-to-chat-whatso"],"barcode_scanner_posts":["barcode-scanner-lite-pos-to-manage-products-inventory-and-orders"],"barcode_scanner_posts_columns":["barcode-scanner-lite-pos-to-manage-products-inventory-and-orders"],"barcode_scanner_logs":["barcode-scanner-lite-pos-to-manage-products-inventory-and-orders"],"barcode_scanner_settings":["barcode-scanner-lite-pos-to-manage-products-inventory-and-orders"],"linkmydeals_config":["linkmydeals"],"linkmydeals_logs":["linkmydeals"],"linkmydeals_upload":["linkmydeals"],"bucw_coins":["buyucoin-cryptocurrency-widgets"],"auto_internal_links":["automatic-internal-links-for-seo"],"auto_internal_log":["automatic-internal-links-for-seo"],"integrate_google_drive_files":["integrate-google-drive"],"integrate_google_drive_shortcodes":["integrate-google-drive"],"gcountdown":["deal-or-announcement-with-countdown-timer"],"ops_rankings":["off-page-seo"],"lrisg_plugin":["left-right-image-slideshow-gallery"],"spec_comment_log":["spectacula-threaded-comments"],"a3_portfolio_attributes":["a3-portfolio"],"a3_portfolio_categorymeta":["a3-portfolio"],"jas_plugin":["jquery-accordion-slideshow"],"nter":["aa-counter"],"swms_scanner_manage":["sitesassure-wp-malware-scanner"],"popupfadpopup":["cool-fade-popup"],"fgcfc_form_table":["easy-contact-form-solution"],"simplepay":["simplepay-nigeria-official"],"sptk_page_cache":["squeeze-page-toolkit"],"wpmarketing_ctas":["wp-marketing"],"wpmarketing_events":["wp-marketing"],"wpmarketing_visitors":["wp-marketing"],"stl_timeline_bands":["wp-simile-timeline"],"stl_timeline_decorators":["wp-simile-timeline"],"stl_timeline_hotzones":["wp-simile-timeline"],"stl_timeline_terms":["wp-simile-timeline"],"udmanager_download_history":["simba-plugin-updates-manager"],"udmanager_plugins":["simba-plugin-updates-manager"],"udmanager_user_entitlements":["simba-plugin-updates-manager"],"studypress_activity":["studypress"],"studypress_configuration":["studypress"],"studypress_course":["studypress"],"studypress_course_category":["studypress"],"studypress_course_users":["studypress"],"studypress_domain":["studypress"],"studypress_gcourse":["studypress"],"studypress_propositions":["studypress"],"studypress_questions":["studypress"],"studypress_quiz_result":["studypress"],"studypress_rate_domain":["studypress"],"studypress_rate_quality":["studypress"],"studypress_slide":["studypress"],"studypress_visite":["studypress"],"wpgreet_cards":["wp-greet"],"wpgreet_stats":["wp-greet"],"jomcomp_cron":["jomres"],"jomcomp_extrasmodels_models":["jomres"],"jomcomp_mufavourites":["jomres"],"jomcomp_notes":["jomres"],"jomcomp_tarifftype_rate_xref":["jomres"],"jomcomp_tarifftypes":["jomres"],"jomres_access_control":["jomres"],"jomres_booking_data_archive":["jomres"],"jomres_contracts":["jomres"],"jomres_countries":["jomres"],"jomres_coupons":["jomres"],"jomres_custom_fields":["jomres"],"jomres_custom_text":["jomres"],"jomres_customertypes":["jomres"],"jomres_extras":["jomres"],"jomres_extraservices":["jomres"],"jomres_gdpr_optins":["jomres"],"jomres_guest_profile":["jomres"],"jomres_guest_reviews":["jomres"],"jomres_guests":["jomres"],"jomres_hotel_features":["jomres"],"jomres_hotel_features_categories":["jomres"],"jomres_images":["jomres"],"jomres_invoice_payment_ref":["jomres"],"jomres_invoice_pii_buyers":["jomres"],"jomres_invoice_pii_sellers":["jomres"],"jomres_managers":["jomres"],"jomres_managers_propertys_xref":["jomres"],"jomres_oauth_access_tokens":["jomres"],"jomres_oauth_authorization_codes":["jomres"],"jomres_oauth_clients":["jomres"],"jomres_oauth_refresh_tokens":["jomres"],"jomres_oauth_scopes":["jomres"],"jomres_partner_bookings":["jomres"],"jomres_partners":["jomres"],"jomres_partners_discounts":["jomres"],"jomres_pcounter":["jomres"],"jomres_pluginsettings":["jomres"],"jomres_property_categories":["jomres"],"jomres_propertys":["jomres"],"jomres_ptypes":["jomres"],"jomres_rates":["jomres"],"jomres_regions":["jomres"],"jomres_reviews_ratings":["jomres"],"jomres_reviews_ratings_confirm":["jomres"],"jomres_reviews_ratings_detail":["jomres"],"jomres_reviews_ratings_replies":["jomres"],"jomres_reviews_reports":["jomres"],"jomres_room_bookings":["jomres"],"jomres_room_classes":["jomres"],"jomres_room_features":["jomres"],"jomres_rooms":["jomres"],"jomres_roomtypes_propertytypes_xref":["jomres"],"jomres_sessions":["jomres"],"jomres_settings":["jomres"],"jomres_syndication_distances":["jomres"],"jomres_syndication_domains":["jomres"],"jomres_syndication_properties":["jomres"],"jomres_tax_rules":["jomres"],"jomres_template_package_overrides":["jomres"],"jomres_webhook_events":["jomres"],"jomres_webhooks_integrations":["jomres"],"jomresportal_c_rates":["jomres"],"jomresportal_invoices":["jomres"],"jomresportal_invoices_transactions":["jomres"],"jomresportal_lineitems":["jomres"],"jomresportal_properties_crates_xref":["jomres"],"jomresportal_sms_clickatell_messages":["jomres"],"jomresportal_subscriptions":["jomres"],"jomresportal_subscriptions_packages":["jomres"],"jomresportal_taxrates":["jomres"],"wow_armory_table_chars":["guild-armory-roster","world-of-warcraft-armory-table"],"wow_armory_table_classes":["guild-armory-roster","world-of-warcraft-armory-table"],"wow_armory_table_groups":["guild-armory-roster","world-of-warcraft-armory-table"],"wow_armory_table_groups_mapping":["guild-armory-roster","world-of-warcraft-armory-table"],"wow_armory_table_progress_mapping":["guild-armory-roster","world-of-warcraft-armory-table"],"ilenvideolock":["ilen-video-locker"],"uci_cbr_rates":["wp-universal-exchange-informer"],"uci_nbm_rates":["wp-universal-exchange-informer"],"uci_nbu_rates":["wp-universal-exchange-informer"],"uci_widgets":["wp-universal-exchange-informer"],"uci_cba_rates":["wp-universal-exchange-informer"],"uci_cbu_rates":["wp-universal-exchange-informer"],"uci_nbb_rates":["wp-universal-exchange-informer"],"uci_nbg_rates":["wp-universal-exchange-informer"],"uci_nbk_rates":["wp-universal-exchange-informer"],"ratings_result":["ratings"],"sln_blacklist":["secure-login-by-supsystic"],"sln_blacklist_browsers":["secure-login-by-supsystic"],"sln_blacklist_countries":["secure-login-by-supsystic"],"sln_countries":["secure-login-by-supsystic"],"sln_detailed_login_stat":["secure-login-by-supsystic"],"sln_email_auth_codes":["secure-login-by-supsystic"],"sln_modules":["secure-login-by-supsystic"],"sln_modules_type":["secure-login-by-supsystic"],"sln_statistics":["secure-login-by-supsystic"],"sln_usage_stat":["secure-login-by-supsystic"],"wpinstaroll_instapics_track_table":["wp-instaroll"],"newsletter_popup_options":["simple-popup-newsletter"],"newsletter_popup_subscribers":["simple-popup-newsletter"],"ublinks":["ultimate-blogroll"],"ubsites":["ultimate-blogroll"],"visual_developer_page_version":["visual-developer-custom-css"],"visual_developer_page_version_assign":["visual-developer-custom-css"],"visual_developer_page_version_conversion":["visual-developer-custom-css"],"visual_developer_page_version_display":["visual-developer-custom-css"],"ha_v6_accounting_assets":["joebooking"],"ha_v6_accounting_journal":["joebooking"],"ha_v6_accounting_posting":["joebooking"],"ha_v6_appointments":["joebooking"],"ha_v6_conf":["joebooking"],"ha_v6_coupons":["joebooking"],"ha_v6_form_controls":["joebooking"],"ha_v6_forms":["joebooking"],"ha_v6_invoice_items":["joebooking"],"ha_v6_invoices":["joebooking"],"ha_v6_languages":["joebooking"],"ha_v6_locations":["joebooking"],"ha_v6_logaudit":["joebooking"],"ha_v6_objectmeta":["joebooking"],"ha_v6_orders":["joebooking"],"ha_v6_packs":["joebooking"],"ha_v6_promotions":["joebooking"],"ha_v6_resources":["joebooking"],"ha_v6_service_cats":["joebooking"],"ha_v6_services":["joebooking"],"ha_v6_templates":["joebooking"],"ha_v6_timeblocks":["joebooking"],"ha_v6_timeoffs":["joebooking"],"ha_v6_transactions":["joebooking"],"ha_v6_users":["joebooking"],"jb7_audit":["joebooking"],"jb7_availability":["joebooking"],"jb7_availability_sync":["joebooking"],"jb7_bookings":["joebooking"],"jb7_calendars":["joebooking"],"jb7_conf":["joebooking"],"jb7_notification_templates":["joebooking"],"ip_log":["wp-parsi-statistics","carla"],"p_statistic":["wp-parsi-statistics"],"static":["wp-parsi-statistics"],"categorymeta":["bilingual-linker"],"the_welcomizer":["the-welcomizer"],"chatwee_log":["chatwee"],"chatwee_moderators":["chatwee"],"chatwee_pages_to_display":["chatwee"],"commentsvote":["commentsvote"],"gcm_users":["wp-gcm"],"instagrabber_images":["instagrabber"],"instagrabber_streams":["instagrabber"],"web_invoice_log":["web-invoice"],"web_invoice_main":["web-invoice"],"web_invoice_meta":["web-invoice"],"web_invoice_payment":["web-invoice"],"web_invoice_payment_meta":["web-invoice"],"pa_results":["wp-athletics"],"wpa_event":["wp-athletics"],"wpa_event_cat":["wp-athletics"],"wpa_log":["wp-athletics"],"wpa_result":["wp-athletics"],"wpoc_sliders":["wp-touch-slider"],"wpoc_slides":["wp-touch-slider"],"wibstats_pages":["wibstats-statistics-for-wordpress-mu"],"wibstats_sessions":["wibstats-statistics-for-wordpress-mu"],"video_embed":["video-embed-box"],"oa_og":["oa-open-graph-for-fb"],"g_secret_key":["ping-list-pro"],"frames_playlists":["frames-video-gallery"],"frames_themes":["frames-video-gallery"],"frames_videos":["frames-video-gallery"],"sidebar":["sidebar-adder"],"wpmuautomaticlinks":["wpmu-automatic-links"],"sponsor_flip":["wp-sponsor-flip-wall"],"shop_attribute":["orillacart"],"shop_attribute_property":["orillacart"],"shop_attribute_set":["orillacart"],"shop_cart":["orillacart"],"shop_category_xref":["orillacart"],"shop_country":["orillacart"],"shop_methods":["orillacart"],"shop_order_attribute_item":["orillacart"],"shop_order_item":["orillacart"],"shop_product_attribsets":["orillacart"],"shop_products_stockroom_xref":["orillacart"],"shop_property_stockroom_xref":["orillacart"],"shop_shipping_rate":["orillacart"],"shop_state":["orillacart"],"shop_stockroom":["orillacart"],"shop_tax_group":["orillacart"],"shop_tax_rate":["orillacart"],"shop_termmeta":["orillacart"],"shop_variations":["orillacart"],"wmail_newsletter":["wp-email-newsletter"],"wmail_newsletter_list":["wp-email-newsletter"],"ebbs_easy_htmltype":["easy-backup-by-supsystic"],"ebbs_easy_modules":["easy-backup-by-supsystic"],"ebbs_easy_modules_type":["easy-backup-by-supsystic"],"ebbs_easy_options":["easy-backup-by-supsystic"],"ebbs_easy_options_categories":["easy-backup-by-supsystic"],"guardian_headlines":["guardian-news-headlines"],"re_place":["replace"],"iire_social_lite":["iire-social-lite"],"_link_struct_to_links":["wp-internal-links-lite"],"_link_structures":["wp-internal-links-lite"],"tbsl_channels":["team-broadcast-status-list"],"scf_completions":["simple-contact-forms"],"custom_menu_hide":["pro-wp-admin-area"],"cloaked_urls":["magic-wp-coupons"],"report":["magic-wp-coupons"],"social_all_in_one_bot_log":["social-all-in-one-bot"],"social_all_in_one_bot_queue":["social-all-in-one-bot"],"photocontest":["wp-photocontest"],"photocontest_admin":["wp-photocontest"],"photocontest_config":["wp-photocontest"],"photocontest_votes":["wp-photocontest"],"wps_woo_grid":["customize-woocommerce"],"awm":["allwebmenus-wordpress-menu-plugin"],"maintenance_plugin_templates":["best-maintenance-mode"],"wiziq_contents":["wiziq"],"wiziq_courses":["wiziq"],"wiziq_enroluser":["wiziq"],"wiziq_wclasses":["wiziq"],"etm_contact":["fabulous-form-maker"],"etm_contact_settings":["fabulous-form-maker"],"appstorestat":["appstore"],"pmpt_ab_stats":["plugmatter-pricing-table"],"pmpt_ab_test":["plugmatter-pricing-table"],"pmpt_group_templates":["plugmatter-pricing-table"],"pmpt_templates":["plugmatter-pricing-table"],"kament_plain":["sv-kament-comments-integration"],"lddbusinessdirectory":["ldd-business-directory"],"lddbusinessdirectory_cats":["ldd-business-directory"],"lddbusinessdirectory_docs":["ldd-business-directory"],"easyfileshop":["easyfileshop"],"vom":["verse-o-matic"],"facetedsearch":["faceted-search"],"push_notifications":["chrome-push-notifications"],"push_subscribers":["chrome-push-notifications"],"adguru_ads":["wp-ad-guru-lite"],"adguru_links":["wp-ad-guru-lite"],"adguru_zones":["wp-ad-guru-lite"],"wp_bible":["wp-bible"],"cimy_counter":["cimy-counter"],"bp_profilevisits":["buddypress-profile-views"],"hmaptracker_clicks":["heat-map-tracker"],"hmaptracker_mmove":["heat-map-tracker"],"latencytracker":["latency-tracker"],"bp_group_tinychat":["bp-group-tinychat"],"bp_group_tinychat_online":["bp-group-tinychat"],"pluginsl_automatic_ban_ip":["automatic-ban-ip"],"counter_total":["visitors-counter"],"user_stats":["user-login-stat"],"sniplets":["sniplets"],"mdpartners":["partners"],"cp_ppp_discount_codes":["payment-form-for-paypal-pro"],"cp_ppp_posts":["payment-form-for-paypal-pro"],"cp_ppp_settings":["payment-form-for-paypal-pro"],"stats":["feed-subscriber-stats"],"skp_platform_accounts":["skyepress"],"skp_posts":["skyepress"],"skp_schedules":["skyepress"],"tnf_log":["twitter-news-feed"],"sr_categories":["solidres"],"sr_config_data":["solidres"],"sr_countries":["solidres"],"sr_coupons":["solidres"],"sr_currencies":["solidres"],"sr_customer_groups":["solidres"],"sr_extras":["solidres"],"sr_geo_states":["solidres"],"sr_media_reservation_assets_xref":["solidres"],"sr_media_roomtype_xref":["solidres"],"sr_reservation_asset_fields":["solidres"],"sr_reservation_assets":["solidres"],"sr_reservation_extra_xref":["solidres"],"sr_reservation_notes":["solidres"],"sr_reservation_room_details":["solidres"],"sr_reservation_room_extra_xref":["solidres"],"sr_reservation_room_xref":["solidres"],"sr_reservations":["solidres"],"sr_room_type_coupon_xref":["solidres"],"sr_room_type_extra_xref":["solidres"],"sr_room_type_fields":["solidres"],"sr_room_types":["solidres"],"sr_rooms":["solidres"],"sr_sessions":["solidres"],"sr_tariff_details":["solidres"],"sr_tariffs":["solidres"],"sr_taxes":["solidres"],"ucontext_cache":["ucontext"],"ucontext_click_log":["ucontext"],"ucontext_keyword":["ucontext"],"ucontext_spider_agent":["ucontext"],"foodlist_menu_tagmeta":["foodlist"],"mail_system":["wp-mail"],"history":["dd-roles"],"sgbb_breadcrumb":["breadcrumbs-builder"],"sgbb_position":["breadcrumbs-builder"],"sgbb_theme":["breadcrumbs-builder"],"streampad_tracks":["streampad"],"postmails":["email-form-under-post"],"registry_item":["gift-registry"],"registry_order":["gift-registry"],"registry_order_item":["gift-registry"],"registry_paypal_cart_info":["gift-registry"],"registry_paypal_payment_info":["gift-registry"],"filled_in_data":["filled-in"],"filled_in_errors":["filled-in"],"filled_in_extensions":["filled-in"],"filled_in_forms":["filled-in"],"filled_in_useragents":["filled-in"],"campaigns":["wordpress-donation-plugin-with-goals-and-paypal-ipn-by-nonprofitcmsorg"],"donation":["wordpress-donation-plugin-with-goals-and-paypal-ipn-by-nonprofitcmsorg"],"links_dump":["mylinksdump"],"links_dump_rating":["mylinksdump"],"rq":["random-quotes"],"ken_remixcomp_entrees":["soundcloud-sound-competition"],"ken_remixcomp_fb_voters":["soundcloud-sound-competition"],"ken_remixcomp_users":["soundcloud-sound-competition"],"ken_remixcomp_voting":["soundcloud-sound-competition"],"mwp_forms_free":["mwp-forms"],"sbtracking":["crawlrate-tracker"],"sbtracking_permalinks":["crawlrate-tracker"],"live_calendar":["live-calendar"],"live_calendar_categories":["live-calendar"],"live_calendar_config":["live-calendar"],"live_calendar_locations":["live-calendar"],"wpseotags_referer":["wp-seo-tags"],"anyguide_short_code":["anyguide"],"res_orders":["wp-reservation","prayer-supporter"],"res_offers":["wp-reservation"],"res_orders_content":["wp-reservation"],"res_paysys":["wp-reservation"],"res_resources":["wp-reservation"],"bp_easyalbums_templates":["buddypress-easy-albums-photos-video-and-music"],"peckplayer_config":["peckplayer"],"c2pprojects":["csv-2-post"],"c2psources":["csv-2-post"],"webtechglobal_schedule":["csv-2-post"],"heatmap":["heatmap"],"sm_log":["e-mailing-service","123devis-affiliation"],"sm_blacklist":["e-mailing-service"],"sm_bounces_hard":["e-mailing-service"],"sm_bounces_log":["e-mailing-service"],"sm_historique_envoi":["e-mailing-service"],"sm_liste":["e-mailing-service"],"sm_liste_test":["e-mailing-service"],"sm_spamscore":["e-mailing-service"],"sm_stats_messageid":["e-mailing-service"],"sm_stats_smtp":["e-mailing-service"],"sm_suite":["e-mailing-service"],"sm_temps":["e-mailing-service"],"wordpress_user":["e-mailing-service"],"admin_blog_likes":["wp-admin-microblog"],"admin_blog_meta":["wp-admin-microblog"],"admin_blog_posts":["wp-admin-microblog"],"admin_blog_relations":["wp-admin-microblog"],"admin_blog_tags":["wp-admin-microblog"],"vip_purchases":["pro-vip"],"vip_users":["pro-vip","wp-vip"],"addressbook":["addressbook"],"direction_map":["direction-map"],"poc_cache":["plugin-output-cache"],"rsvp_me_respondents":["rsvp-me"],"srty_campaigns":["shorty-lite"],"srty_conversions_log":["shorty-lite"],"srty_goals":["shorty-lite"],"srty_import_temp":["shorty-lite"],"srty_links":["shorty-lite"],"srty_split_test_allocations":["shorty-lite"],"srty_split_tests":["shorty-lite"],"srty_visits_log":["shorty-lite"],"easy_testimonial_manager":["easy-testimonial-manager"],"easy_testimonial_setting":["easy-testimonial-manager"],"rt_buddy_views_log":["buddy-views"],"newsscroller":["wp-sc-news-scroller"],"videostir_videos":["videostir-spokesperson"],"twitterfriends":["twitter-friends-widget"],"cpd_elements":["wp-contactpage-designer"],"cpd_templates":["wp-contactpage-designer"],"geopress":["geopress"],"wpaccounting_ledger":["wp-accounting"],"wpaccounting_meta":["wp-accounting"],"dcf_entries":["dialog-contact-form"],"dcf_entry_meta":["dialog-contact-form"],"aweber_registrations":["aweber-registration-integration"],"sw_menuobfuscator":["menu-obfuscator"],"menuobfuscator":["menu-obfuscator"],"colortheme":["easy-form-builder-by-bitware"],"forminformationdata":["easy-form-builder-by-bitware"],"formsubmitdata":["easy-form-builder-by-bitware"],"y_gallery":["simple-gallery-odihost"],"y_gallery_line":["simple-gallery-odihost"],"komper_field":["komper"],"komper_product":["komper"],"komper_value":["komper"],"wpsa_subscribe_author":["wp-subscribe-author"],"larsenscalender":["larsens-calender"],"yarq_quotes":["yet-another-random-quote"],"ipblock":["ipblock"],"sies_emails":["email-subscription-with-secure-captcha"],"usermap":["usermap"],"suptic_forms":["support-tickets-v2"],"suptic_messages":["support-tickets-v2"],"suptic_meta":["support-tickets-v2"],"suptic_tickets":["support-tickets-v2"],"projekktor_playlist":["projekktor-html5-video-extensions-and-shortcodes"],"broo_action":["badgearoo"],"broo_condition":["badgearoo"],"broo_condition_step":["badgearoo"],"broo_condition_step_meta":["badgearoo"],"broo_user_action":["badgearoo"],"broo_user_action_meta":["badgearoo"],"broo_user_assignment":["badgearoo"],"wpbo_analytics":["betteroptin"],"wpbo_failsafe":["betteroptin"],"orb_cyber_store_products":["orbisius-cyberstore"],"kt_bseo_keywords":["keyword-tag-wrapper"],"pwt_button":["pay-with-a-tweet"],"pwt_button_stats":["pay-with-a-tweet"],"thinkit_contact_form":["thinkit-wp-contact-form"],"bracketpress_location":["bracketpress"],"bracketpress_match":["bracketpress"],"bracketpress_team":["bracketpress"],"links_rss":["rssfeedchecker"],"usu_url":["url-shortener-ultimate"],"flexibleslider":["flexible-slider"],"clgp":["crudlab-google-plus"],"ask_votes":["voter-plugin"],"awsompxgcommenttracking":["awsom-pixgallery"],"awsompxggalleries":["awsom-pixgallery"],"awsompxgimagecaptions":["awsom-pixgallery"],"sp_survey":["wp-survey-plus"],"sp_survey_question":["wp-survey-plus"],"sp_survey_results":["wp-survey-plus"],"sp_survey_user_info":["wp-survey-plus"],"plgwpuan_config":["wp-user-access-notification","wp-admin-access-notification-telegram-sms"],"eis_items":["wp-eis"],"eis_name":["wp-eis"],"wptkt_log":["wp-to-klick-tipp-tag-basiertes-e-mail-marketing"],"postscompare_search_result":["posts-compare"],"dashboard_chat":["wp-dashboard-chat"],"big_mailchimp_lists":["bigmailchimp"],"sds_slider":["smooth-dynamic-slider"],"sds_slider_cat":["smooth-dynamic-slider"],"importyml_category":["wp-shop-yml-parser"],"importyml_changed":["wp-shop-yml-parser"],"importyml_offer":["wp-shop-yml-parser"],"importyml_project":["wp-shop-yml-parser"],"plusoblocks":["share-pluso"],"plusoblocks_relationships":["share-pluso"],"mute":["buddypress-mute"],"surveys":["wp-surveys","isurvey","getopenion"],"surveys_data":["wp-surveys"],"surveys_questions":["wp-surveys"],"surveys_responses":["wp-surveys"],"mystyle_designs":["mystyle-custom-product-designer"],"mystyle_sessions":["mystyle-custom-product-designer"],"fppp_poll_answers":["flashpoll"],"fppp_poll_results":["flashpoll"],"fppp_polls":["flashpoll"],"offers":["offers-popup"],"pluginsl_formatting_correcter":["formatting-correcter"],"st_category_email":["st-category-email-subscribe"],"sent_sms":["wp-sendsms"],"scf":["wp-simple-custom-form"],"nkr_check_links":["backlink-rechecker"],"nkr_check_settings":["backlink-rechecker"],"launchkey_sso_sessions":["launchkey"],"wec_calendar":["wordpress-event-calendar"],"wec_event":["wordpress-event-calendar"],"wec_event_category_relationships":["wordpress-event-calendar"],"wec_event_tag_relationships":["wordpress-event-calendar"],"wec_eventcalendarmeta":["wordpress-event-calendar"],"wec_feed":["wordpress-event-calendar"],"wec_recurrence":["wordpress-event-calendar"],"rturls":["tweetsuite"],"shorturls":["tweetsuite"],"ts_favorites":["tweetsuite"],"ts_mine":["tweetsuite"],"tweetbacks":["tweetsuite"],"misiek_albums":["misiek-photo-album"],"misiek_albums_images":["misiek-photo-album"],"bugerator_issues":["bugerator"],"bugerator_notes":["bugerator"],"bugerator_projects":["bugerator"],"bugerator_subscriptions":["bugerator"],"bugerator_visits":["bugerator"],"wphostel_bookings":["hostel"],"wphostel_emaillog":["hostel"],"wphostel_payments":["hostel"],"wphostel_rooms":["hostel"],"mpmf_field_options":["multi-purpose-mail-form"],"mpmf_form_fields":["multi-purpose-mail-form"],"mpmf_forms":["multi-purpose-mail-form"],"mpmf_messages":["multi-purpose-mail-form"],"user_quotes":["quote-cart"],"dmaker_blackouts":["skedmaker-online-scheduling"],"dmaker_blockeddates":["skedmaker-online-scheduling"],"dmaker_clients":["skedmaker-online-scheduling"],"dmaker_custom":["skedmaker-online-scheduling"],"dmaker_custom_sked":["skedmaker-online-scheduling"],"dmaker_custom_timeframes":["skedmaker-online-scheduling"],"dmaker_sendreminders":["skedmaker-online-scheduling"],"dmaker_services":["skedmaker-online-scheduling"],"dmaker_sked":["skedmaker-online-scheduling"],"dmaker_uni":["skedmaker-online-scheduling"],"dmaker_users":["skedmaker-online-scheduling"],"scribblemaps":["scribble-maps"],"flickpress":["flickpress"],"flickpress_cache":["flickpress"],"gs_store":["glossy"],"w9ss_item":["sleekstore"],"w9ss_order":["sleekstore"],"easyreplace":["easy-replace"],"protectbenignsource_allowip":["protect-benignsource"],"protectbenignsource_automatic_ban":["protect-benignsource"],"protectbenignsource_denydomain":["protect-benignsource"],"protectbenignsource_denyip":["protect-benignsource"],"ft_wpecards":["wp-ecards"],"bber_hist":["easy-grabber"],"bber_log":["easy-grabber"],"bber_queue":["easy-grabber"],"bber_thread":["easy-grabber"],"sp_rm_applications":["sp-rental-manager"],"sp_rm_developments":["sp-rental-manager"],"sp_rm_rentals":["sp-rental-manager"],"sp_rm_rentals_features":["sp-rental-manager"],"comments_moderated":["report-comments"],"comments_reported":["report-comments"],"tbpl_ips":["preloading"],"parsi_sokhan":["parsi-sokhan"],"wp_post_po":["order-post"],"wp_post_pordered":["order-post"],"endance_list":["attendance-list"],"attendance_list":["attendance-list"],"devat_adnotes":["admin-notes"],"ngssamrequests":["ngs-sam-integrator"],"wpmuprefillpost":["wpmu-prefill-post"],"sb_integrations":["affiliate-mlm-party-plan"],"socialbug_affiliates":["affiliate-mlm-party-plan"],"bowob":["bowob"],"userlogs":["user-tracker"],"mappins_markers":["map-pins"],"webshrinker":["web-shrinker-web-site-preview-link-thumbnails"],"sp_rc_rankdata":["rank-checker-by-surfing-panda"],"finance":["wp-finance"],"finance_currencies":["wp-finance"],"resres_capacity":["resres-restaurant-reservations"],"resres_reservations":["resres-restaurant-reservations"],"registration":["guestonline"],"ate_shortcode":["msstiger"],"captcha":["msstiger"],"oks_weixin_robot":["wp-weixin-robot"],"oks_weixin_robot_extends":["wp-weixin-robot"],"oks_weixin_robot_menu":["wp-weixin-robot"],"oks_weixin_robot_reply":["wp-weixin-robot"],"posts_to_do_list":["posts-to-do-list"],"helion_bestsellers":["helion-widgets-pro"],"helion_books_bezdroza":["helion-widgets-pro"],"helion_books_ebookpoint":["helion-widgets-pro"],"helion_books_helion":["helion-widgets-pro"],"helion_books_onepress":["helion-widgets-pro"],"helion_books_sensus":["helion-widgets-pro"],"helion_books_septem":["helion-widgets-pro"],"helion_books_videopoint":["helion-widgets-pro"],"helion_widget_bookstore":["helion-widgets-pro"],"helion_widget_random":["helion-widgets-pro"],"fullcircle_error_log":["full-circle"],"fullcircle_postmap":["full-circle"],"my_library_items":["my-library"],"comment_warning":["comment-warning"],"vw_vmls_chatlog":["ppv-live-webcams"],"vw_vmls_private":["ppv-live-webcams"],"vw_vmls_sessions":["ppv-live-webcams"],"vw_vmls_actions":["ppv-live-webcams"],"vw_vmls_messages":["ppv-live-webcams"],"flicker_types":["cool-flickr-slideshow"],"mef_media_extra_field":["media-extra-fields"],"wpsxp_sexy_votes":["sexy-polling"],"miwowidgets":["miwowidgets"],"gallerio":["gallerio"],"gallerio_config":["gallerio"],"gallerio_images":["gallerio"],"pa_albopretorio":["pafacile"],"pa_bandi":["pafacile"],"pa_delibere":["pafacile"],"pa_determine":["pafacile"],"pa_incarichi":["pafacile"],"pa_ordinanze":["pafacile"],"pa_organi":["pafacile"],"pa_organi_rel":["pafacile"],"pa_organigramma":["pafacile"],"pa_sovvenzioni":["pafacile"],"pa_tipo_atto":["pafacile"],"pa_tipo_org":["pafacile"],"pa_users2org":["pafacile"],"tosendit_attachs":["pafacile"],"tosendit_log":["pafacile"],"awm_ez_cl_options":["adwork-media-ez-content-locker"],"sms_countries":["mediaburst-email-to-sms"],"sms_networks":["mediaburst-email-to-sms"],"sms_subscribers":["mediaburst-email-to-sms"],"edamam_recipe_recipes":["seo-nutrition-and-print-for-recipes-by-edamam"],"wpejunkie_html_code":["wp-ejunkie"],"mdjm_avail":["mobile-dj-manager"],"mdjm_availability":["mobile-dj-manager"],"mdjm_availabilitymeta":["mobile-dj-manager"],"wptis_gallery":["wp-jquery-text-and-image-slider"],"wptis_slide":["wp-jquery-text-and-image-slider"],"diary_and_availability_calendar":["diary-availability-calendar"],"_lang":["wordpress-code-snippet"],"_lib":["wordpress-code-snippet"],"sprites":["sprites-in-css-for-google-pagespeed"],"melibu_dcb":["download-counter-button"],"melibu_dcb_sub":["download-counter-button"],"todolists_iptask":["todo-lists-for-membership-sites"],"todolists_usertask":["todo-lists-for-membership-sites"],"limit_access":["limit-access"],"engage_emails":["engage-forms"],"engage_forms":["engage-forms"],"engage_messages":["engage-forms"],"plugin_logic":["plugin-logic"],"kindred_posts_visits":["kindred-posts"],"envialia_carrier":["envialia-carrier-for-woocomerce"],"_place":["keyword-position-checker"],"fbimporter":["facebook-importer"],"usts_currency_list":["wp-appointment-booking-manager","restaurant-table-booking-manager"],"appointgen_schedules":["wp-appointment-booking-manager"],"appointgen_services":["wp-appointment-booking-manager"],"appointgen_timeslot":["wp-appointment-booking-manager"],"appointgen_ustsappointments":["wp-appointment-booking-manager"],"appointgen_ustsappointments_paymentmethods":["wp-appointment-booking-manager"],"appointgen_venues":["wp-appointment-booking-manager"],"ft_brp":["bible-reading-plan"],"securesubmit":["securesubmit"],"motorracingleague_championship":["motor-racing-league"],"motorracingleague_entry":["motor-racing-league"],"motorracingleague_participant":["motor-racing-league"],"motorracingleague_prediction":["motor-racing-league"],"motorracingleague_race":["motor-racing-league"],"motorracingleague_result":["motor-racing-league"],"jschat_canal":["javascript-chat-for-wordpress"],"jschat_messages":["javascript-chat-for-wordpress"],"o_page_groups":["wp-seo-plugin-optimizer"],"o_page_register":["wp-seo-plugin-optimizer"],"o_plugin_groups":["wp-seo-plugin-optimizer"],"o_plugin_regions":["wp-seo-plugin-optimizer"],"o_plugin_register":["wp-seo-plugin-optimizer"],"o_plugin_rules":["wp-seo-plugin-optimizer"],"o_scans_auto":["wp-seo-plugin-optimizer"],"o_scans_auto_data":["wp-seo-plugin-optimizer"],"shortener_cache":["surly"],"post_vote_counts":["vote-my-post"],"post_voting_mode":["vote-my-post"],"post_voting_settings":["vote-my-post"],"post_voting_style":["vote-my-post"],"registered_user_votes":["vote-my-post"],"cattemplate_relationships":["idealien-category-enhancements"],"nation":["wp-ip2nation-installer"],"nationcountries":["wp-ip2nation-installer"],"svp_post_videos":["smooth-streaming-video-player"],"svp_source_types":["smooth-streaming-video-player"],"svp_source_videos":["smooth-streaming-video-player"],"svp_sources":["smooth-streaming-video-player"],"wm_get_ebay_fb_table":["get-your-ebay-feedback"],"imize_status_log":["optimize"],"cat_logo":["category-logo"],"ecards_stats":["ecards-lite"],"garagesale_stuff":["garagesale"],"timeline":["timeline-calendar"],"oke_twitter_login":["wiloke-twitter-login"],"vw_videorecordings":["video-posts-webcam-recorder"],"version_books":["youversion"],"version_verses":["youversion"],"church_donation":["wp-church-donation"],"church_donation_content":["wp-church-donation"],"church_donation_settings":["wp-church-donation"],"undelete_posts":["wp-undelete-restore-deleted-posts"],"usf_records":["users-searched-for"],"usf_settings":["users-searched-for"],"classified_view_counter":["classified"],"k_note":["sticky-note"],"ipb_hits":["trustedsite-ip-blocker"],"ipb_rules":["trustedsite-ip-blocker"],"dsubscribers":["dsubscribers"],"wpsp_forms":["wp-subscription"],"wpsp_list":["wp-subscription"],"wpsp_subscribers":["wp-subscription"],"sticker_notes":["wp-sticker-notes"],"rss_feeder_custom":["rss-feeder"],"rss_feeder_custom_items":["rss-feeder"],"rss_feeder_external":["rss-feeder"],"rss_feeder_import":["rss-feeder"],"earthquakewidget":["earthquakemonitor"],"bgtile":["wp-background-tile"],"ecpm_ddc":["faster-with-stats"],"ecpm_ddc_dead_users":["faster-with-stats"],"ecpm_ddc_speed":["faster-with-stats"],"ecpm_ddc_speed_total":["faster-with-stats"],"ecpm_ddc_total":["faster-with-stats"],"lana_security_login_logs":["lana-security"],"lana_security_logs":["lana-security"],"eci_results":["eclipse-crossword-integration"],"pl_emails":["pageloader"],"pl_urls":["pageloader"],"server_status":["server-status-by-hostnameip"],"ro_de_visitas_guestbook_table":["libro-de-visitas-guestbook"],"trigger":["wp-triggers-lite"],"easyfaq":["easy-faq"],"ntracker":["track-site-traffic"],"wpsctotop":["crudlab-scroll-to-top"],"pac_user":["podamibe-appointment-calendar"],"wpapl_category":["wp-academic-people"],"wpapl_people":["wp-academic-people"],"wpapl_people_project":["wp-academic-people"],"wpapl_project":["wp-academic-people"],"wpapl_publication":["wp-academic-people"],"wpapl_publication_people":["wp-academic-people"],"wpapl_research_area":["wp-academic-people"],"virtualclassroom_acl":["html5-virtual-classroom"],"virtualclassroom_email_template_settings":["html5-virtual-classroom"],"virtualclassroom_purchase":["html5-virtual-classroom"],"virtualclassroom_settings":["html5-virtual-classroom"],"virtualclassroom_shared_users":["html5-virtual-classroom"],"virtualclassroom_shorturl":["html5-virtual-classroom"],"virtualclassroom_teacher":["html5-virtual-classroom"],"classroom_shared_users":["html5-virtual-classroom"],"classroom_shorturl":["html5-virtual-classroom"],"suh_permban":["superadmin-helper"],"cs_excluded_list":["curated-search"],"pra_testimonial_settings":["awesome-testimonials"],"wppp_convert_all":["wp-pixpie"],"wppp_converted_images":["wp-pixpie"],"wppp_log":["wp-pixpie"],"cbratingsystem_ratingform_settings":["cbratingsystem"],"cbratingsystem_ratings_summary":["cbratingsystem"],"cbratingsystem_user_ratings":["cbratingsystem"],"tmsht_legends":["timesheet"],"tmsht_ts":["timesheet"],"qg_calendar":["quotegenerator"],"qg_invoices":["quotegenerator"],"qg_itemx":["quotegenerator"],"qg_orders":["quotegenerator"],"analyticbridge_metrics":["ga-popular-posts"],"analyticbridge_pages":["ga-popular-posts"],"salavatcounter":["salavat-counter"],"easy_wp_optimizer_backup":["easy-wp-optimizer"],"global_variable":["wp-global-variable"],"local_like_and_share_user_like":["local-like-and-share"],"local_like_and_share_user_share":["local-like-and-share"],"nc_taxonomies":["nc-taxonomy-meta"],"nc_taxonomy_meta":["nc-taxonomy-meta"],"surveys_extended_answer":["surveys-extended"],"surveys_extended_question":["surveys-extended"],"surveys_extended_result":["surveys-extended"],"surveys_extended_result_answer":["surveys-extended"],"surveys_extended_survey":["surveys-extended"],"egcl_certificates":["egift-card-lite"],"egcl_transactions":["egift-card-lite"],"dinatur":["dinatur"],"dintextos":["dinatur"],"fdc_entries":["form-data-collector"],"fdc_entries_meta":["form-data-collector"],"sm_sp_forms":["123devis-affiliation"],"sm_sr_forms":["123devis-affiliation"],"member":["add-edit-delete-listing-for-member-module"],"imc_keys":["improve-my-city"],"imc_logs":["improve-my-city"],"imc_posts_index":["improve-my-city"],"imc_tokens":["improve-my-city"],"imc_users_firebase":["improve-my-city"],"imc_users_slogin":["improve-my-city"],"imc_votes":["improve-my-city"],"ns_redirection_campaign_builder":["ns-redirection-and-ga-campaign-link-builder"],"absp_ipdeny":["apptivo-business-site"],"xpost_blogs":["xpost"],"xpost_posts":["xpost"],"wpfb_logs":["wp-fb-comments"],"fundhistory":["fantasy-sports"],"user_extended":["fantasy-sports"],"user_payment":["fantasy-sports"],"user_teams":["fantasy-sports"],"withdrawls":["fantasy-sports"],"firebase_tokens":["fantasy-sports"],"shoutbox_messages":["wp-shoutbox-live-chat"],"shoutbox_users":["wp-shoutbox-live-chat"],"yabp":["yabp"],"yabp_deals":["yabp"],"yabp_deals_items":["yabp"],"yabp_items":["yabp"],"seo_multi_position":["seo-multiposition"],"seo_multi_position_list":["seo-multiposition"],"seo_multi_position_list_attr":["seo-multiposition"],"seo_multi_position_list_brand":["seo-multiposition"],"seo_multi_position_list_municipal":["seo-multiposition"],"seo_multi_position_list_utility":["seo-multiposition"],"seo_multi_position_unlock_code":["seo-multiposition"],"hcim_v1_conf":["z-inventory-manager"],"hcim_v1_migrations":["z-inventory-manager"],"hcim_v1_purchases":["z-inventory-manager"],"hcim_v1_receives":["z-inventory-manager"],"hcim_v1_relations":["z-inventory-manager"],"hcim_v1_sales":["z-inventory-manager"],"hcim_v1_shipments":["z-inventory-manager"],"zi2_conf":["z-inventory-manager"],"zi2_items":["z-inventory-manager"],"zi2_purchases":["z-inventory-manager"],"zi2_purchases_lines":["z-inventory-manager"],"zi2_receipts":["z-inventory-manager"],"zi2_receipts_lines":["z-inventory-manager"],"zi2_sales":["z-inventory-manager"],"zi2_sales_lines":["z-inventory-manager"],"zi2_shipments":["z-inventory-manager"],"zi2_shipments_lines":["z-inventory-manager"],"eansms_wc_send_sms_outbox":["moceansms-order-sms-notification-for-woocommerce"],"app_user_info":["wp-jobs"],"top_stories":["top-social-stories-free"],"likertm_choices":["likert-survey-master"],"likertm_qcats":["likert-survey-master"],"likertm_questions":["likert-survey-master"],"likertm_surveys":["likert-survey-master"],"likertm_takings":["likert-survey-master"],"likertm_user_answers":["likert-survey-master"],"usage_ref":["media-usage"],"ewz_field":["entrywizard"],"ewz_item":["entrywizard"],"ewz_layout":["entrywizard"],"ewz_webform":["entrywizard"],"stripe_transaction_details":["stripe-manager"],"eventplusmeta":["events-calendar-registration-booking-by-events-plus"],"evr_answer":["events-calendar-registration-booking-by-events-plus"],"evr_attendee":["events-calendar-registration-booking-by-events-plus"],"evr_category":["events-calendar-registration-booking-by-events-plus"],"evr_cost":["events-calendar-registration-booking-by-events-plus"],"evr_event":["events-calendar-registration-booking-by-events-plus"],"evr_payment":["events-calendar-registration-booking-by-events-plus"],"evr_question":["events-calendar-registration-booking-by-events-plus"],"gwptb_chat_subscription":["green-wp-telegram-bot-by-teplitsa"],"gwptb_log":["green-wp-telegram-bot-by-teplitsa"],"pdckl_links":["podclankova-inzerce"],"roveridx_tracking":["rover-idx"],"ghazale_inquiry_c":["inquiry-calc"],"ghazale_inquiry_q":["inquiry-calc"],"msf_fileds":["syncfields"],"downloader_info":["ebook-downloader"],"wprevive_vast_file":["wp-revive-adserver"],"rdp_ll_session":["rdp-linkedin-login"],"cb_bookings":["commons-booking"],"cb_codes":["commons-booking"],"cb_timeframes":["commons-booking"],"paystack_recurrent_billing":["paystack-recurrent-billing"],"paystack_recurrent_billing_codes":["paystack-recurrent-billing"],"nppp":["performance-profiler"],"ela_log":["elderlawanswers-post-importer"],"dfp_files":["file-provider"],"dfp_group":["file-provider"],"cartsguru_carts":["carts-guru"],"sharelink":["share-link"],"sharelink_options":["share-link"],"sharelink_settings":["share-link"],"suwp_reward_links":["stockunlocks"],"suwp_network":["stockunlocks"],"suwp_network_country":["stockunlocks"],"suwp_provider_mepname":["stockunlocks"],"suwp_service_brand":["stockunlocks"],"suwp_service_model":["stockunlocks"],"mi_contacts":["welcome-mat"],"mi_stats":["welcome-mat"],"ebcpf_custom_products":["exportfeed-list-woocommerce-products-on-ebay-store"],"ebcpf_ebay_accounts":["exportfeed-list-woocommerce-products-on-ebay-store"],"ebcpf_ebay_currency":["exportfeed-list-woocommerce-products-on-ebay-store"],"ebcpf_ebay_shipping":["exportfeed-list-woocommerce-products-on-ebay-store"],"ebcpf_feeds":["exportfeed-list-woocommerce-products-on-ebay-store"],"ebcpf_ebay_sites":["exportfeed-list-woocommerce-products-on-ebay-store"],"ebcpf_listing":["exportfeed-list-woocommerce-products-on-ebay-store"],"suwcsms_cart_notifications":["sms-notifications-for-woocommerce"],"count_share_by_jm_crea":["count-share-by-jm-crea"],"knowledgegraph":["knowledge-graph"],"cbxpoll_votes":["cbxpoll"],"month_days":["xllentech-english-islamic-calendar"],"month_firstdate":["xllentech-english-islamic-calendar"],"disable_content_editor":["disable-contect-editor-for-specific-template"],"wow_countdown_free":["wpcalc-cookie-timer"],"vw_micropay_transactions":["paid-membership"],"wpgamelist_jre_game_quotes":["wpgamelist"],"wpgamelist_jre_list_company_names":["wpgamelist"],"wpgamelist_jre_list_dynamic_db_names":["wpgamelist"],"wpgamelist_jre_list_genre_names":["wpgamelist"],"wpgamelist_jre_list_platform_names":["wpgamelist"],"wpgamelist_jre_saved_game_for_widget":["wpgamelist"],"wpgamelist_jre_saved_game_log":["wpgamelist"],"wpgamelist_jre_user_options":["wpgamelist"],"wpgamelist_jre_active_extensions":["wpgamelist"],"wpgamelist_jre_page_options":["wpgamelist"],"wpgamelist_jre_post_options":["wpgamelist"],"wpgamelist_jre_saved_games_for_featured":["wpgamelist"],"wpgamelist_jre_saved_page_post_log":["wpgamelist"],"warehouse":["small-package-quotes-wwe-edition","ltl-freight-quotes-worldwide-express-edition","ltl-freight-quotes-freightquote-edition","ltl-freight-quotes-unishippers-edition","ltl-freight-quotes-globaltranz-edition","ltl-freight-quotes-cerasis-edition"],"enit_order_details":["small-package-quotes-wwe-edition"],"bm_bids":["wp-bid-manager"],"bm_bids_responses":["wp-bid-manager"],"bm_notifications":["wp-bid-manager"],"bm_responder":["wp-bid-manager"],"bm_responder_emails":["wp-bid-manager"],"bm_user":["wp-bid-manager"],"form1":["form1"],"jwp_a11y_bulk":["jwp-a11y"],"jwp_a11y_bulk_ngs":["jwp-a11y"],"jwp_a11y_checks":["jwp-a11y"],"jwp_a11y_checks_ngs":["jwp-a11y"],"jwp_a11y_maintenance":["jwp-a11y"],"jwp_a11y_pages":["jwp-a11y"],"jwp_a11y_setup":["jwp-a11y"],"jwp_a11yc_bchecks":["jwp-a11y"],"jwp_a11yc_bresults":["jwp-a11y"],"jwp_a11yc_caches":["jwp-a11y"],"jwp_a11yc_checks":["jwp-a11y"],"jwp_a11yc_issuesbbs":["jwp-a11y"],"jwp_a11yc_maintenance":["jwp-a11y"],"jwp_a11yc_pages":["jwp-a11y"],"jwp_a11yc_results":["jwp-a11y"],"jwp_a11yc_settings":["jwp-a11y"],"jwp_a11yc_uas":["jwp-a11y"],"jwp_a11yc_versions":["jwp-a11y"],"jwp_a11yc_data":["jwp-a11y"],"wprequal_fontawesome":["wprequal"],"fny_backups":["fny-database-backup"],"fny_configs":["fny-database-backup"],"fb2wp_debug":["fb2wp-integration-tools"],"etm_mt":["mini-testimonials"],"egrower":["engagement-grower"],"egrower_time":["engagement-grower"],"egrower_user":["engagement-grower"],"egrower_keyword":["engagement-grower"],"egrower_related":["engagement-grower"],"timesheet":["time-sheets"],"timesheet_approvers":["time-sheets"],"timesheet_approvers_approvies":["time-sheets"],"timesheet_client_projects":["time-sheets"],"timesheet_clients":["time-sheets"],"timesheet_clients_users":["time-sheets"],"timesheet_employee_always_to_payroll":["time-sheets"],"timesheet_invoicers":["time-sheets"],"timesheet_manage_client_users":["time-sheets"],"timesheet_payrollers":["time-sheets"],"timesheet_recurring_invoices_monthly":["time-sheets"],"timesheet_users":["time-sheets"],"timesheet_comment_audit":["time-sheets"],"timesheet_client_project_autoclose":["time-sheets"],"timesheet_approvers_approvies_archive":["time-sheets"],"timesheet_approvers_archive":["time-sheets"],"timesheet_archive":["time-sheets"],"timesheet_client_projects_archive":["time-sheets"],"timesheet_clients_archive":["time-sheets"],"timesheet_clients_users_archive":["time-sheets"],"timesheet_employee_always_to_payroll_archive":["time-sheets"],"timesheet_invoicers_archive":["time-sheets"],"timesheet_manage_client_users_archive":["time-sheets"],"timesheet_payrollers_archive":["time-sheets"],"timesheet_recurring_invoices_monthly_archive":["time-sheets"],"timesheet_users_archive":["time-sheets"],"timesheet_emailqueue_archive":["time-sheets"],"timesheet_reject_message_queue":["time-sheets"],"timesheet_reject_message_queue_archive":["time-sheets"],"pwd_security":["reset-password-automatically-security"],"followize_fields":["followize"],"followize_form":["followize"],"followize_form_fields":["followize"],"tbl_instagramslider":["nexuslink-instagram-slider"],"ngv_used_serials":["numbers-generator-and-validator"],"blfpst_exclude_recipients":["bluff-post"],"blfpst_logs":["bluff-post"],"blfpst_mail_froms":["bluff-post"],"blfpst_mail_templates":["bluff-post"],"blfpst_recipients":["bluff-post"],"blfpst_send_mails":["bluff-post"],"blfpst_target_conditionals":["bluff-post"],"blfpst_targets":["bluff-post"],"vio_content":["viralism"],"vio_content_social":["viralism"],"vio_pinterest":["viralism"],"vio_twitter":["viralism"],"noindex_by_path":["noindex-by-path"],"wpag_audios":["wp-audio-gallery"],"dms_contact_meta":["deluxe-marketing-suite"],"dms_contacts":["deluxe-marketing-suite"],"dms_custom_fields":["deluxe-marketing-suite"],"dms_popup_fields":["deluxe-marketing-suite"],"dms_popups":["deluxe-marketing-suite"],"b1_items":["b1-accounting"],"b1_linked_items":["b1-accounting"],"b1_orders":["b1-accounting"],"b1_settings":["b1-accounting"],"b1_logs":["b1-accounting"],"gg_offer_calculator":["service-calculator"],"ink_coming_soon":["ink-coming-soon-page"],"cat_visibility":["category-visibility-ipeat"],"great_newsletter":["wp-great-newsletter"],"ezscmf_debug":["ez-schedule-manager-free"],"ezscmf_entries":["ez-schedule-manager-free"],"ezscmf_schedules":["ez-schedule-manager-free"],"ezscmf_settings":["ez-schedule-manager-free"],"ezscmf_settings_schedule":["ez-schedule-manager-free"],"lemonway_iban":["lemon-way-for-ecommerce"],"lemonway_moneyout":["lemon-way-for-ecommerce"],"lemonway_oneclic":["lemon-way-for-ecommerce"],"lemonway_wallet":["lemon-way-for-ecommerce"],"lemonway_wktoken":["lemon-way-for-ecommerce"],"ef_card_design":["easy-flashcards"],"ef_cards":["easy-flashcards"],"ef_index":["easy-flashcards"],"job_bm_cp_follow":["job-board-manager-company-profile"],"as_progress_tracker_users":["progress-tracker"],"ctl_arcade_lite_games":["ctl-arcade-lite"],"ctl_arcade_lite_settings":["ctl-arcade-lite"],"rnu_acknowledgements":["read-and-understood"],"rnu_categories":["read-and-understood"],"bp_gift_addons_meta":["gift-buddypress-addons"],"gk_sslcommerz_payments":["gk-sslcommerz"],"cforms_email":["cforms-plugin"],"cforms_field":["cforms-plugin"],"cforms_form":["cforms-plugin"],"cforms_submission":["cforms-plugin"],"cforms_template":["cforms-plugin"],"logichop_local_storage":["logic-hop"],"wp_sudoku":["wp-sudoku-plus"],"bulk_edit":["bulk-postmeta-editor"],"ult_marketo_forms":["ultimate-marketo-forms"],"ult_marketo_forms_styles":["ultimate-marketo-forms"],"ghostimporter_log":["import-from-ghost"],"jswprediction_league":["joomsport-prediction"],"jswprediction_private_based":["joomsport-prediction"],"jswprediction_private_league":["joomsport-prediction"],"jswprediction_private_users":["joomsport-prediction"],"jswprediction_round":["joomsport-prediction"],"jswprediction_round_matches":["joomsport-prediction"],"jswprediction_round_users":["joomsport-prediction"],"jswprediction_scorepredict":["joomsport-prediction"],"jswprediction_types":["joomsport-prediction"],"moolamojo_levels":["moolamojo"],"moolamojo_orders":["moolamojo"],"moolamojo_packages":["moolamojo"],"moolamojo_products":["moolamojo"],"moolamojo_transactions":["moolamojo"],"im_wp_linker_lite_related":["im-wp-linker-lite-for-woocommerce"],"im_wp_linker_lite_related_temp":["im-wp-linker-lite-for-woocommerce"],"amzfulfillment_fulfillment":["amazing-fullfilment-integration-for-woocommerce"],"amzfulfillment_inventory":["amazing-fullfilment-integration-for-woocommerce"],"amzfulfillment_log":["amazing-fullfilment-integration-for-woocommerce"],"amzfulfillment_orderupdatetime":["amazing-fullfilment-integration-for-woocommerce"],"amzfulfillment_package":["amazing-fullfilment-integration-for-woocommerce"],"amzfulfillment_listing":["amazing-fullfilment-integration-for-woocommerce"],"tbs_modules":["translate-by-supsystic"],"tbs_modules_type":["translate-by-supsystic"],"tbs_usage_stat":["translate-by-supsystic"],"frequently_searched_words":["wp-frequently-searched-words"],"ydn_downloads_history":["ydn-download"],"ydn_subscriptions":["ydn-download"],"wdm_download_records":["woo-download-monitor"],"aliprice_product_review":["aliprice"],"aliprice_products":["aliprice"],"hotmart_ads":["hotmart-wp"],"flaggedcontent":["flagged-content"],"wpyog_categories":["wpyog-documents"],"wpyog_documents":["wpyog-documents"],"dmarcian_cache":["dmarcian"],"sbs_firewall_cookies":["sabres-security-website-protection"],"sbs_firewall_countries":["sabres-security-website-protection"],"sbs_firewall_custom":["sabres-security-website-protection"],"sbs_log":["sabres-security-website-protection"],"sbs_scan_items":["sabres-security-website-protection"],"sbs_scans":["sabres-security-website-protection"],"plgsgwbm_config":["website-blacklist-monitor"],"api_status":["dynamic-post"],"freepostmailtable":["free-post-mail"],"optimum_gravatar_cache":["optimum-gravatar-cache"],"sendsmaily_autoresp":["sendsmaily-subscription-opt-in-form"],"sendsmaily_config":["sendsmaily-subscription-opt-in-form"],"twispay_tw_configuration":["twispay"],"twispay_tw_transactions":["twispay"],"apdfg_values":["advanced-pdf-generator"],"wovax_idx_feed_fields":["wovax-idx"],"wovax_idx_feeds":["wovax-idx"],"wovax_idx_shortcode":["wovax-idx"],"wovax_idx_shortcode_filters":["wovax-idx"],"wovax_idx_shortcode_rules":["wovax-idx"],"wovax_idx_feed_rules":["wovax-idx"],"polarsteps":["integrate-polarsteps"],"js_vehiclemanager_activitylog":["js-vehicle-manager"],"js_vehiclemanager_adexpiries":["js-vehicle-manager"],"js_vehiclemanager_cities":["js-vehicle-manager"],"js_vehiclemanager_conditions":["js-vehicle-manager"],"js_vehiclemanager_config":["js-vehicle-manager"],"js_vehiclemanager_countries":["js-vehicle-manager"],"js_vehiclemanager_currencies":["js-vehicle-manager"],"js_vehiclemanager_cylinders":["js-vehicle-manager"],"js_vehiclemanager_emailtemplates":["js-vehicle-manager"],"js_vehiclemanager_emailtemplates_config":["js-vehicle-manager"],"js_vehiclemanager_fieldsordering":["js-vehicle-manager"],"js_vehiclemanager_fueltypes":["js-vehicle-manager"],"js_vehiclemanager_makes":["js-vehicle-manager"],"js_vehiclemanager_mileages":["js-vehicle-manager"],"js_vehiclemanager_models":["js-vehicle-manager"],"js_vehiclemanager_modelyears":["js-vehicle-manager"],"js_vehiclemanager_states":["js-vehicle-manager"],"js_vehiclemanager_system_errors":["js-vehicle-manager"],"js_vehiclemanager_transmissions":["js-vehicle-manager"],"js_vehiclemanager_users":["js-vehicle-manager"],"js_vehiclemanager_vehicleimages":["js-vehicle-manager"],"js_vehiclemanager_vehicles":["js-vehicle-manager"],"js_vehiclemanager_vehicletypes":["js-vehicle-manager"],"js_vehiclemanager_zip":["js-vehicle-manager"],"js_vehiclemanager_jsvmsessiondata":["js-vehicle-manager"],"ticketmaster_widgets":["ticketmaster"],"dynamic_custom_url_seo":["dynamic-url-seo"],"dynamic_custom_url_seo_schema":["dynamic-url-seo"],"lemonade_autoposter_posts_published":["lemonade-sna-pinterest-edition"],"lemonade_autoposter_templates":["lemonade-sna-pinterest-edition"],"orr_exceptions":["online-restaurant-reservation"],"orr_sessions":["online-restaurant-reservation"],"wpadguads":["wp-adsense-guard"],"wpadgublocked_ips":["wp-adsense-guard"],"wpadgunots":["wp-adsense-guard"],"bea_media_analytics":["bea-media-analytics"],"coin_hive":["coin-miner"],"coin_imp":["coin-miner"],"wpcui_custom_template":["wp-cookie-user-info"],"wpcui_settings":["wp-cookie-user-info"],"burclar":["ninja-araclar"],"doviz_kurlari":["ninja-araclar"],"superlig_puan":["ninja-araclar"],"image_optimize":["just-image-optimizer"],"image_optimize_log":["just-image-optimizer"],"image_optimize_log_details":["just-image-optimizer"],"o10n__cache":["css-optimization","javascript-optimization","web-font-optimization","pwa-optimization"],"o10n__cache_css_concat":["css-optimization"],"o10n__cache_js_concat":["javascript-optimization"],"spin_members":["wpspinner"],"restaurants_location":["wp-restaurant-listings"],"oxi_div_social_icon":["team-showcase-ultimate"],"oxi_div_category":["team-showcase-ultimate"],"pay_with_venmo":["pay-with-venmo"],"chef_options_snapshot":["wpchef"],"bpec_events_members":["bp-events-calendar"],"bpec_groups_events":["bp-events-calendar"],"ccpw":["cryptocurrency-pricing-list"],"tbp_modules":["supsystic-table-press"],"tbp_modules_type":["supsystic-table-press"],"tbp_rows":["supsystic-table-press"],"tbp_tables":["supsystic-table-press"],"tbp_usage_stat":["supsystic-table-press"],"checkout_customer_cards":["checkout-non-pci-woocommerce-gateway"],"calendarista_availability":["calendarista-basic-edition"],"calendarista_availability_booked":["calendarista-basic-edition"],"calendarista_billing_info":["calendarista-basic-edition"],"calendarista_coupons":["calendarista-basic-edition"],"calendarista_error_log":["calendarista-basic-edition"],"calendarista_feeds":["calendarista-basic-edition"],"calendarista_formelement":["calendarista-basic-edition"],"calendarista_formelement_booked":["calendarista-basic-edition"],"calendarista_holidays":["calendarista-basic-edition"],"calendarista_map":["calendarista-basic-edition"],"calendarista_map_booked":["calendarista-basic-edition"],"calendarista_optional":["calendarista-basic-edition"],"calendarista_optional_group":["calendarista-basic-edition"],"calendarista_optionals_booked":["calendarista-basic-edition"],"calendarista_order":["calendarista-basic-edition"],"calendarista_place":["calendarista-basic-edition"],"calendarista_place_aggregate_cost":["calendarista-basic-edition"],"calendarista_project":["calendarista-basic-edition"],"calendarista_reminders":["calendarista-basic-edition"],"calendarista_roles":["calendarista-basic-edition"],"calendarista_settings":["calendarista-basic-edition"],"calendarista_staff":["calendarista-basic-edition"],"calendarista_staging":["calendarista-basic-edition"],"calendarista_string_resources":["calendarista-basic-edition"],"calendarista_style":["calendarista-basic-edition"],"calendarista_timeslot":["calendarista-basic-edition"],"calendarista_waypoint":["calendarista-basic-edition"],"calendarista_waypoint_booked":["calendarista-basic-edition"],"wauc_auction_log":["woo-auction"],"wauc_winners":["woo-auction"],"ai_link":["flovidy"],"bv_gr_clicks_impressions":["breezeview"],"sq_answers":["screening-questions-for-wp-job-manager"],"sq_questions":["screening-questions-for-wp-job-manager"],"wppus_licenses":["wp-plugin-update-server"],"easy_custom_js_and_css":["easy-custom-js-and-css"],"easy_custom_js_and_css_filters":["easy-custom-js-and-css"],"pets_fields":["pets"],"pets_fields_sections":["pets"],"ipqs_cache":["ipqualityscore-fraud-detection"],"ipqs_email_cache":["ipqualityscore-fraud-detection"],"pt_api_key":["printrove-integration-for-woocommerce"],"pt_orders":["printrove-integration-for-woocommerce"],"wpimager":["wpimager"],"pd_android_fcm":["pd-android-fcm"],"ipag_gateway":["ipag-woocommerce"],"courtres_courts":["court-reservation"],"courtres_events":["court-reservation"],"courtres_reservations":["court-reservation"],"courtres_settings":["court-reservation"],"courtres_piramid_challenges":["court-reservation"],"courtres_piramids":["court-reservation"],"courtres_piramids_players":["court-reservation"],"courtres_reserv_players":["court-reservation"],"magic_recordings":["humcommerce"],"vyps_points":["vidyen-point-system-vyps"],"vyps_points_log":["vidyen-point-system-vyps"],"vidyen_wm_settings":["vidyen-point-system-vyps"],"vxcf_activecamp":["cf7-active-campaign"],"vxcf_activecamp_accounts":["cf7-active-campaign"],"vxcf_activecamp_log":["cf7-active-campaign"],"ite_address":["ninja-shop"],"ite_line_items":["ninja-shop"],"ite_line_itemsmeta":["ninja-shop"],"ite_logs":["ninja-shop"],"ite_payment_tokens":["ninja-shop"],"ite_payment_tokensmeta":["ninja-shop"],"ite_refunds":["ninja-shop"],"ite_refundsmeta":["ninja-shop"],"ite_sessions":["ninja-shop"],"ite_transactions":["ninja-shop"],"ninja_shop_address":["ninja-shop"],"ninja_shop_line_items":["ninja-shop"],"ninja_shop_line_itemsmeta":["ninja-shop"],"ninja_shop_logs":["ninja-shop"],"ninja_shop_payment_tokens":["ninja-shop"],"ninja_shop_payment_tokensmeta":["ninja-shop"],"ninja_shop_refunds":["ninja-shop"],"ninja_shop_refundsmeta":["ninja-shop"],"ninja_shop_sessions":["ninja-shop"],"ninja_shop_transactions":["ninja-shop"],"han_maps":["neshan-maps"],"hari_chapters":["sahih-al-bukhari-hadiths"],"mo_gauth_user_details":["miniorange-google-authenticator"],"ce_sswidget_leagues":["webeki-soccer-scores"],"pimwick_affiliate":["pw-woocommerce-affiliates"],"breadcrumbs_shortcode__errors_log":["breadcrumbs-shortcode"],"wbbm_bus_booking_list":["bus-booking-manager"],"mobile_tab":["mobile-tabs"],"mobile_tab_data":["mobile-tabs"],"mlm_epins":["binarymlm"],"mlm_product_price":["binarymlm"],"mlm_referral_commission":["binarymlm"],"binarymlm_bonus":["binarymlm"],"binarymlm_commission":["binarymlm"],"binarymlm_country":["binarymlm"],"binarymlm_currency":["binarymlm"],"binarymlm_epins":["binarymlm"],"binarymlm_leftleg":["binarymlm"],"binarymlm_payout":["binarymlm"],"binarymlm_payout_master":["binarymlm"],"binarymlm_product_price":["binarymlm"],"binarymlm_referral_commission":["binarymlm"],"binarymlm_rightleg":["binarymlm"],"binarymlm_users":["binarymlm"],"cloud_blocks":["cloud-blocks"],"wbnl":["simple-newsletter"],"egoi_sms_order_billets":["sms-orders-alertnotifications-for-woocommerce"],"egoi_sms_order_reminders":["sms-orders-alertnotifications-for-woocommerce"],"egoi_sms_abandoned_carts":["sms-orders-alertnotifications-for-woocommerce"],"egoi_sms_follow_price":["sms-orders-alertnotifications-for-woocommerce"],"egoi_email_order_billets":["sms-orders-alertnotifications-for-woocommerce"],"egoi_email_order_reminders":["sms-orders-alertnotifications-for-woocommerce"],"email_validator_for_contact_form_7_log":["email-validator-for-contact-form-7"],"fixon_011001":["fixon-cadastro-de-clientes"],"fixon_011002":["fixon-cadastro-de-clientes"],"fixon_011026":["fixon-cadastro-de-clientes"],"ccwca_cryptocurrencies":["cryptocurrency-widgets-using-coingecko-api"],"mp_settings":["modern-polls","misiek-paypal"],"mp_locklist":["modern-polls"],"mp_pollinfos":["modern-polls"],"mp_polls":["modern-polls"],"mp_templates":["modern-polls"],"shgdprdm_history":["seahorse-gdpr-data-manager"],"online_visitors":["who-is-online-now"],"mx_like_options":["mx-like-button"],"mx_like_store":["mx-like-button"],"tgdprc_consent_log":["total-gdpr-compliance-lite"],"tgdprc_custom_template":["total-gdpr-compliance-lite"],"tgdprc_settings":["total-gdpr-compliance-lite"],"zsys_access":["nubuilder-forte"],"zsys_access_form":["nubuilder-forte"],"zsys_access_php":["nubuilder-forte"],"zsys_access_report":["nubuilder-forte"],"zsys_browse":["nubuilder-forte"],"zsys_debug":["nubuilder-forte"],"zsys_event":["nubuilder-forte"],"zsys_file":["nubuilder-forte"],"zsys_form":["nubuilder-forte"],"zsys_format":["nubuilder-forte"],"zsys_object":["nubuilder-forte"],"zsys_php":["nubuilder-forte"],"zsys_report":["nubuilder-forte"],"zsys_report_data":["nubuilder-forte"],"zsys_run_list":["nubuilder-forte"],"zsys_select":["nubuilder-forte"],"zsys_select_clause":["nubuilder-forte"],"zsys_session":["nubuilder-forte"],"zsys_setup":["nubuilder-forte"],"zsys_tab":["nubuilder-forte"],"zsys_table":["nubuilder-forte"],"zsys_timezone":["nubuilder-forte"],"zsys_translate":["nubuilder-forte"],"zsys_user":["nubuilder-forte"],"ecf":["contact-form-db-for-enfold"],"wp2l_maps":["wp2leads"],"wp2leads_transfer_failed":["wp2leads"],"wp2leads_transfer_statistics":["wp2leads"],"wp2leads_notices":["wp2leads"],"wp2leads_maps_meta":["wp2leads"],"shipping_coordinadora_cities":["shipping-coordinadora-woocommerce"],"ip_stati":["ip-statistic"],"eo_wbc_cat_maps":["woo-bundle-choice"],"eo_wbc_order_maps":["woo-bundle-choice"],"ss_packagemeta":["simple-sponsorships"],"ss_packages":["simple-sponsorships"],"ss_sponsorshipmeta":["simple-sponsorships"],"ss_sponsorships":["simple-sponsorships"],"ss_sponsorship_itemmeta":["simple-sponsorships"],"ss_sponsorship_items":["simple-sponsorships"],"ss_reportmeta":["simple-sponsorships"],"ss_reports":["simple-sponsorships"],"smartframe_image":["smartframe"],"artb_setting":["add-richtext-toolbar-button"],"pno_listing_fields":["posterno"],"pno_profile_fields":["posterno"],"pno_registration_fields":["posterno"],"payu_latam_sdk_pls_transactions":["woo-payu-latam-sdk"],"woo_zoho_crm":["woo-zoho-crm"],"woo_zoho_crm_field_mapping":["woo-zoho-crm"],"woo_zoho_crm_report":["woo-zoho-crm"],"vxg_ccontact":["gf-constant-contact"],"vxg_ccontact_accounts":["gf-constant-contact"],"vxg_ccontact_log":["gf-constant-contact"],"admin_options_pages":["admin-options-pages"],"sl_games":["sports-leagues"],"sl_events":["sports-leagues"],"sl_player_stats":["sports-leagues"],"sl_missing_players":["sports-leagues"],"books_n_papers_article_authors":["books-papers"],"books_n_papers_articles":["books-papers"],"books_n_papers_authors":["books-papers"],"books_n_papers_book_authors":["books-papers"],"books_n_papers_book_editor":["books-papers"],"books_n_papers_books":["books-papers"],"books_n_papers_conference_authors":["books-papers"],"books_n_papers_conferences":["books-papers"],"books_n_papers_journals":["books-papers"],"books_n_papers_article_tag":["books-papers"],"books_n_papers_book_tag":["books-papers"],"books_n_papers_conference_tag":["books-papers"],"books_n_papers_tags":["books-papers"],"drm_blocked_ips":["drm-protected-video-streaming"],"hq_brands":["hq-rental-software"],"hq_locations":["hq-rental-software"],"hq_vehicle_classes":["hq-rental-software"],"hq_vehicle_active_rates":["hq-rental-software"],"ch_fichajes":["control-horas"],"ch_pausas":["control-horas"],"vxc_hubspot_accounts":["wp-hubspot-woocommerce"],"vxc_hubspot_log":["wp-hubspot-woocommerce"],"x4ml_folders":["x4-media-library"],"migration_trulywp":["easy-migration"],"migration_trulywp_meta":["easy-migration"],"migration_trulywp_restore":["easy-migration"],"cf_cachepurger_log":["cf-cachepurger"],"fdm_contacts":["form-data-manager"],"fdm_forms":["form-data-manager"],"wpew_data":["wp-embed-widgets"],"wtf_404_log":["team-118group-agent"],"ahc_textcomp_cat":["avirato-hotels-categories"],"ahc_textcomp_cats":["avirato-hotels-categories"],"ahc_cron_try":["avirato-hotels-categories"],"cf7tozoholog":["w3s-cf7-zoho"],"flmbkp_backup":["softdiscover-db-file-manager"],"redirect_clicks":["knock-on-wood-redirect"],"redirect_points":["knock-on-wood-redirect"],"redirect_settings":["knock-on-wood-redirect"],"wb_stn_notes":["wb-sticky-notes"],"wetransfer":["smart-wetransfer"],"logistrarobots":["logistra-woocommerce-integrasjon-fra-wildrobot-app"],"linkbuildr_email_templates":["linkbuildr"],"linkbuildr_posts_site_contacts":["linkbuildr"],"linkbuildr_site_contacts":["linkbuildr"],"linkbuildr_ignore_domains":["linkbuildr"],"twitchpress_endpoints":["twitchpress"],"twitchpress_meta":["twitchpress"],"ump_country":["unilevel-mlm-plan"],"ump_currency":["unilevel-mlm-plan"],"ump_epins":["unilevel-mlm-plan"],"ump_hierarchy":["unilevel-mlm-plan"],"ump_users":["unilevel-mlm-plan"],"prodigy_attribute_taxonomy":["prodigy-commerce"],"prodigy_attributes_aggregation":["prodigy-commerce"],"prodigy_cart_items":["prodigy-commerce"],"prodigy_orders":["prodigy-commerce"],"prodigy_product_attributes":["prodigy-commerce"],"prodigy_remote_cart_items":["prodigy-commerce"],"prodigy_user_info":["prodigy-commerce"],"prodigy_batches_sent_out_products":["prodigy-commerce"],"payvision_webhook":["payvision-payment-gateway"],"klantenvertellen_review":["klantenvertellen"],"mxpctyw_calc_table":["price-calculator-to-your-website"],"wootomation_indexing":["wootomation"],"wootomation_suggestions":["wootomation"],"bmd_calendars":["a-booking-system"],"bmd_invoices":["a-booking-system"],"bmd_listings":["a-booking-system"],"bmd_options":["a-booking-system"],"bmd_stats":["a-booking-system"],"bmd_tickets":["a-booking-system"],"bmd_withdraws":["a-booking-system"],"pms_category":["passwords-manager"],"pms_passwords":["passwords-manager"],"bsp_cm":["branded-sms-pakistan"],"bsp_otp":["branded-sms-pakistan"],"bsp_settings":["branded-sms-pakistan"],"bsp_states":["branded-sms-pakistan"],"bsp_users":["branded-sms-pakistan"],"word_pigeon_token_log":["word-pigeon"],"yk_mt_entry":["meal-tracker"],"yk_mt_entry_meals":["meal-tracker"],"yk_mt_meal_types":["meal-tracker"],"yk_mt_meals":["meal-tracker"],"yk_mt_settings":["meal-tracker"],"ghostlink_app":["ghostlink"],"hexometer_broken_links":["broken-link-repair"],"snatchbot_webchat":["snatchbot-webchat"],"mp_timetable_bookings":["course-booking-system"],"mp_timetable_substitutes":["course-booking-system"],"mp_timetable_waitlists":["course-booking-system"],"mp_timetable_notes":["course-booking-system"],"mp_timetable_logs":["course-booking-system"],"mp_timetable_attendances":["course-booking-system"],"plgezcb_config":["ez-country-block"],"plgezcb_ip":["ez-country-block"],"plgezcb_stats":["ez-country-block"],"shinobi_membership":["shinobi-reviews"],"shinobi_reviews":["shinobi-reviews"],"shinobi_reviews_shortcode":["shinobi-reviews"],"shinobi_options":["shinobi-reviews","shinobi-blocks"],"plisio_order":["plisio-payment-gateway-for-woocommerce"],"wprw_roulettewheel":["wp-roulette-wheel"],"payex_transactions":["swedbank-pay-payments","swedbank-pay-checkout"],"wpda_pricing_table_theme":["wpdevart-pricing-table"],"wpda_pricing_tables":["wpdevart-pricing-table"],"local_sync_current_process":["local-sync"],"local_sync_delete_list":["local-sync"],"local_sync_inc_exc_contents":["local-sync"],"local_sync_local_site_files":["local-sync"],"local_sync_local_site_new_attachments":["local-sync"],"local_sync_options":["local-sync"],"local_sync_processed_iterator":["local-sync"],"tagtile_links_page":["seo-tile-of-tag"],"dppp_plugin_deactivation_rules":["wp-fix-it-co-browse"],"data_sync_item_request":["wp-data-sync"],"form_to_pdf":["form-to-pdf"],"sf_accounts":["wp-inbox"],"sf_attachments":["wp-inbox"],"sf_inbox":["wp-inbox"],"sf_labels":["wp-inbox"],"inboxwebmail_accounts":["wp-inbox"],"inboxwebmail_attachments":["wp-inbox"],"inboxwebmail_inbox":["wp-inbox"],"inboxwebmail_labels":["wp-inbox"],"wpss_email_log":["simple-smtp"],"ticketmachine_config":["ticketmachine-event-manager"],"ticketmachine_design":["ticketmachine-event-manager"],"ticketmachine_organizers":["ticketmachine-event-manager"],"ticketmachine_organizers_events_match":["ticketmachine-event-manager"],"ticketmachine_log":["ticketmachine-event-manager"],"apbd_apikey":["elite-licenser-lite"],"apbd_ban_host":["elite-licenser-lite"],"apbd_client":["elite-licenser-lite"],"apbd_domain_log":["elite-licenser-lite"],"apbd_email_templates":["elite-licenser-lite"],"apbd_license":["elite-licenser-lite"],"apbd_license_type":["elite-licenser-lite"],"apbd_product":["elite-licenser-lite"],"apbd_product_license":["elite-licenser-lite"],"apbd_product_update":["elite-licenser-lite"],"apbd_request_manage":["elite-licenser-lite"],"apbd_updateinfo":["elite-licenser-lite"],"apbd_upload":["elite-licenser-lite"],"apbd_useddomain":["elite-licenser-lite"],"zpt_calenso_event":["calenso-booking"],"zpt_calenso_languages":["calenso-booking"],"zpt_calenso_stores":["calenso-booking"],"zpt_calenso_user_data":["calenso-booking"],"waf_attack_logs":["web-application-firewall"],"waf_ip_rate_details":["web-application-firewall"],"fontsy_custom_fonts":["fontsy"],"fontsy_html_tags":["fontsy"],"modify_profile_dashboard_fields__errors_log":["modify-profile-fields-dashboard-menu-buttons"],"wpopt_core":["wp-optimizer"],"totalrating_ratings":["totalrating"],"totalrating_widgets":["totalrating"],"cwd_stealth_links":["cwd-stealth-links"],"auto_robot_logs":["auto-robot"],"trustprofile_invite_error":["trustprofile"],"wpws_categories":["wp-window-shopper"],"wpws_product_boxes":["wp-window-shopper"],"wpws_templates":["wp-window-shopper"],"vk_orders":["wp-vk"],"vk_trade_log":["wp-vk"],"vxg_pipedrive":["integration-for-gravity-forms-and-pipedrive"],"vxg_pipedrive_accounts":["integration-for-gravity-forms-and-pipedrive"],"vxg_pipedrive_log":["integration-for-gravity-forms-and-pipedrive"],"ssbhesabfa":["hesabfa-accounting"],"mab_banner":["knowband-mobile-app-builder-for-woocommerce"],"mab_banner_image":["knowband-mobile-app-builder-for-woocommerce"],"mab_cms_page_data":["knowband-mobile-app-builder-for-woocommerce"],"mab_fcm_details":["knowband-mobile-app-builder-for-woocommerce"],"mab_mobileapp_banners":["knowband-mobile-app-builder-for-woocommerce"],"mab_mobileapp_layout_component":["knowband-mobile-app-builder-for-woocommerce"],"mab_mobileapp_layouts":["knowband-mobile-app-builder-for-woocommerce"],"mab_mobileapp_product_data":["knowband-mobile-app-builder-for-woocommerce"],"mab_mobileapp_tab_bar":["knowband-mobile-app-builder-for-woocommerce"],"mab_mobileapp_top_category":["knowband-mobile-app-builder-for-woocommerce"],"mab_push_notification_history":["knowband-mobile-app-builder-for-woocommerce"],"mab_unique_verification":["knowband-mobile-app-builder-for-woocommerce"],"mabmobileapp_component_types":["knowband-mobile-app-builder-for-woocommerce"],"ced_onbuy_accounts":["cedcommerce-onbuy-integration"],"ced_onbuy_queue":["cedcommerce-onbuy-integration"],"innozilla_woocommerce_shipping_table_rates":["innozilla-table-rate-shipping-for-woocommerce"],"woocommerce_shipping_zone_shipping_methods":["innozilla-table-rate-shipping-for-woocommerce"],"mcisoe_suppliers":["supplier-order-email"],"mcisoe_options":["supplier-order-email"],"sourceplay_navermap":["sourceplay-navermap"],"o_er_contacts":["email-reminders"],"o_er_contacts_meta":["email-reminders"],"o_er_log":["email-reminders"],"o_er_reminders":["email-reminders"],"o_er_rules":["email-reminders"],"mc6397_visitor_tally":["mc-visitor-tally"],"stephino_rpg_buildings":["stephino-rpg"],"stephino_rpg_cities":["stephino-rpg"],"stephino_rpg_convoys":["stephino-rpg"],"stephino_rpg_entities":["stephino-rpg"],"stephino_rpg_islands":["stephino-rpg"],"stephino_rpg_messages":["stephino-rpg"],"stephino_rpg_queues":["stephino-rpg"],"stephino_rpg_research_fields":["stephino-rpg"],"stephino_rpg_users":["stephino-rpg"],"stephino_rpg_statistics":["stephino-rpg"],"stephino_rpg_ptf_plays":["stephino-rpg"],"stephino_rpg_ptfs":["stephino-rpg"],"lgpd_consent":["lgpd-framework"],"lgpd_userlogs":["lgpd-framework"],"plty_etsy_connections":["platycorp-etsy-syncer"],"plty_etsy_options":["platycorp-etsy-syncer"],"plty_etsy_products":["platycorp-etsy-syncer"],"plty_etsy_shops":["platycorp-etsy-syncer"],"plty_etsy_templates":["platycorp-etsy-syncer"],"plty_etsy_templates_meta":["platycorp-etsy-syncer"],"plty_etsy_logs":["platycorp-etsy-syncer"],"plty_etsy_products_meta":["platycorp-etsy-syncer"],"he_data":["cache-master"],"feedback":["wp-roadmap"],"feedback_status":["wp-roadmap"],"feedback_upvote":["wp-roadmap"],"artplacer":["artplacer-widget"],"femora_pending_images":["femora-compress"],"femora_usage_statistics":["femora-compress"],"ora_pending_images":["femora-compress"],"ora_usage_statistics":["femora-compress"],"tableon_tables":["posts-table-filterable"],"tableon_tables_columns":["posts-table-filterable"],"tableon_tables_meta":["posts-table-filterable"],"tableon_vocabulary":["posts-table-filterable"],"attendance_taken":["wp-employee-attendance-system"],"employee_details":["wp-employee-attendance-system"],"apoyl_baidupush":["apoyl-baidupush"],"eusr_class":["e-unlocked-student-result"],"eusr_mark":["e-unlocked-student-result"],"eusr_school_info":["e-unlocked-student-result"],"eusr_student_result":["e-unlocked-student-result"],"eusr_subject":["e-unlocked-student-result"],"eusr_view_settings":["e-unlocked-student-result"],"actt_report":["activitytime"],"actt_user_sessions":["activitytime"],"actt_visited_pages":["activitytime"],"cb_bookingcodes":["commonsbooking"],"everypay_logging":["everypay-payment-gateway"],"everypay_tokenization":["everypay-payment-gateway"],"bpstory_admin_stories":["beycanpress-advanced-story"],"bpstory_admin_story_boxes":["beycanpress-advanced-story"],"many_forms":["cf7-redirections-integrations-and-database"],"watchtower_logs":["watchtowerhq"],"wati_abandonment":["wati-chat-and-notification"],"wati_setting":["wati-chat-and-notification"],"beaglescandata":["beagle-security-wp-security-advanced-penetration-testing"],"va_testresults":["corona-test-results"],"wc_knet_transactions":["wc-knet"],"post_links":["plugin-optimizer"],"adoric_data":["adoric"],"yay_smtp_sendinblue_email_logs":["smtp-sendinblue"],"sct":["send-chat-tools"],"sticky_header_on_scroll":["sticky-header-on-scroll"],"sync_track_order":["dtdc-econnect"],"calculator_builder":["calculator-builder"],"stylish_gsr1":["stylish-google-sheet-reader"],"esl_shipping_methods":["eshoplogisticru"],"sbs_6310_item":["service-box-with-slider"],"sbs_6310_style":["service-box-with-slider"],"wppm_attachments":["taskbuilder"],"wppm_checklist":["taskbuilder"],"wppm_checklist_items":["taskbuilder"],"wppm_project":["taskbuilder"],"wppm_project_categories":["taskbuilder"],"wppm_project_meta":["taskbuilder"],"wppm_project_statuses":["taskbuilder"],"wppm_project_users":["taskbuilder"],"wppm_task":["taskbuilder"],"wppm_task_comment":["taskbuilder"],"wppm_task_meta":["taskbuilder"],"wppm_task_priorities":["taskbuilder"],"wppm_task_statuses":["taskbuilder"],"track_the_click_hit":["track-the-click"],"track_the_click_link":["track-the-click"],"track_the_click_group":["track-the-click"],"track_the_click_link_group":["track-the-click"],"fs_account_nodes":["fs-poster-lite"],"fs_accounts":["fs-poster-lite"],"fs_feeds":["fs-poster-lite"],"fs_grouped_accounts":["fs-poster-lite"],"cryptowoo_exchange_rates":["cryptocurrency-payment-gateway"],"cryptowoo_payments_temp":["cryptocurrency-payment-gateway"],"imh_6310_style":["image-map-hotspots"],"peepso_social_login_user_profile":["social-login-wp"],"burst_goals":["burst-statistics"],"burst_sessions":["burst-statistics"],"burst_statistics":["burst-statistics"],"sellkit_applied_funnel":["sellkit"],"sellkit_contact_segmentation":["sellkit"],"wpsp_ebaycache":["shopping-pages"],"wpsp_pages":["shopping-pages"],"wpsp_templates":["shopping-pages"],"wpcm_course_holders":["wp-course-manager"],"wpcm_courses":["wp-course-manager"],"wpcm_lecturers":["wp-course-manager"],"wpcm_schedule":["wp-course-manager"],"svs_pricing_tables":["svs-pricing-tables"],"lumia_calender":["lumia-calender"],"dday":["dday"],"dimwwt_requests":["connect-with-telegram"],"schat_channel_users":["simple-chat"],"schat_channels":["simple-chat"],"schat_users":["simple-chat"],"usermessages":["simple-chat"],"steam_group_widget":["steam-group-viewer"],"edoc_tables":["edoc-easy-tables"],"woo_quote_calculator":["woo-quote-calculator-order"],"cpvg_list_views":["custom-post-view-generator"],"cpvg_post_views":["custom-post-view-generator"],"easy_ads_taxnomy_sections_meta":["easy-ads-manager"],"as_tejus_slideshow":["image-slider"],"mf_timeline_stories":["wp-facebook-timeline-mf-timeline"],"classified_maker_wishlist":["classified-maker"],"_container":["star-review-manager"],"_containerrating":["star-review-manager"],"_rating":["star-review-manager"],"_users":["star-review-manager"],"wc_order_meta":["webful-simple-grocery-shop"],"wc_orders":["webful-simple-grocery-shop"],"wc_product_menu":["webful-simple-grocery-shop"],"wc_shop_category":["webful-simple-grocery-shop"],"plg_sp_answs":["simply-polls"],"plg_sp_ip":["simply-polls"],"plg_sp_polls":["simply-polls"],"gen_ustsbooking":["wp-booking-manager"],"gen_ustsbooking_paymentmethods":["wp-booking-manager"],"audior_comments":["audio-comments"],"audior_permissions":["audio-comments"],"audior_settings":["audio-comments"],"svg_playlist":["simple-video-gallery"],"svg_video":["simple-video-gallery"],"act_stop_spam":["act-stop-spam"],"activity_log":["activity-logs"],"views_count":["content-stats"],"views_date":["content-stats"],"em_main":["eventify"],"couponcodes":["coupon-code-plugin"],"directory_ads":["directory-builder"],"directory_fields":["directory-builder"],"directory_packages":["directory-builder"],"directory_registration":["directory-builder"],"directory_improvements":["directory-builder"],"directory_activities":["directory-builder"],"directory_booking":["directory-builder"],"directory_support":["directory-builder"],"tzpost_optionset":["post-display"],"tzpost_thumbnail":["post-display"],"fare":["fare-calculator","asi-taxi-booking","asi-fare-map-calculator","asi-fare-calculator"],"taxibooked":["fare-calculator"],"webpush_subscription":["web-push"],"gw_lookup":["icafe-library"],"gw_sections":["icafe-library"],"gw_tiles":["icafe-library"],"tp_yahoo_finance":["top-position-yahoo-finance"],"wls_entries":["wordpress-logging-service"],"wls_logs":["wordpress-logging-service"],"campayn_forms":["campayn-email-newsletter-sign-up"],"rocketgalleries":["rocket-galleries"],"likephoto_votes":["like-photo"],"cwp_custom_field_options":["custom-write-panel"],"cwp_custom_field_properties":["custom-write-panel"],"cwp_custom_field_types":["custom-write-panel"],"cwp_panel_category":["custom-write-panel"],"cwp_panel_custom_field":["custom-write-panel"],"cwp_panel_hidden_external_field":["custom-write-panel"],"cwp_panel_standard_field":["custom-write-panel"],"cwp_standard_fields":["custom-write-panel"],"cwp_write_panels":["custom-write-panel"],"nari100_accounts":["nari-accountant"],"nari100_definitions":["nari-accountant"],"nari100_transactions":["nari-accountant"],"shortcode_form":["icontact-infusionsoft-from-popup"],"domain":["wp-domain-redirect"],"spotify":["wp-spotify"],"geodatastore":["geo-data-store","wp-geoloc"],"ptest_answer":["ptest-personality-tests-for-wordpress"],"ptest_dimension":["ptest-personality-tests-for-wordpress"],"ptest_main":["ptest-personality-tests-for-wordpress"],"ptest_question":["ptest-personality-tests-for-wordpress"],"cms2cms_options":["cms2cms-joomla-k2-to-wp-website-migration","cms2cms-typo3-to-wp-converter-with-redirect","cms2cms-phpbb-to-bbpress-forum-converter","cms2cms-automated-mediawiki-to-wp-migration","cms2cms-umbraco-to-wp-migrator","cms2cms-dnn-software-to-wp-migrator","cms2cms-automated-kunena-to-bbpress-switch","cms2cms-php-fusion-to-wp-migration","cms2cms-smf-to-bbpress-convertor","cms2cms-plone-to-wp-migration","cms2cms-automated-vbulletin-to-bbpress-migrator","cms2cms-vbulletin-to-wp-migration","cms2cms-silverstripe-to-wp-migration","cms2cms-telerik-sitefinity-to-wp-migration","cms2cms-ip-board-to-bbpress-migrator","cms2cms-e107-to-wp-migration","cms2cms-kentico-to-wp-migration","cms2cms-datalife-engine-to-wp-convertor","cms2cms-automated-tumblr-to-wp-migration","cms2cms-mybb-to-bbpress-convertor","cms2cms-b2evolution-to-wp-migration"],"fpcats":["sticky-front-page-categories-and-tags"],"fpcats_tags":["sticky-front-page-categories-and-tags"],"btpi":["post-ideas"],"djisharelinks":["flodjishare"],"ultimate_promo_code":["ultimate-promo-code"],"ultimate_promo_hits":["ultimate-promo-code"],"bbusagestats_track":["bb-usage-stats"],"category_slider":["wp-slide-categorywise"],"cs_settings":["wp-slide-categorywise"],"mark_as_read_data":["mark-as-read"],"gradebook_assignments":["an-gradebook"],"gradebook_cells":["an-gradebook"],"gradebook_courses":["an-gradebook"],"gradebook_users":["an-gradebook"],"guitar_tuners":["guitar-tuner"],"ez_subscribers":["eztexting-sms-notifications"],"ce_category":["community-events"],"ce_events":["community-events"],"ce_venues":["community-events"],"bauernregeln":["bauernregeln"],"wpsf_attendee_custom_question":["wp-simple-forms"],"wpsf_question":["wp-simple-forms"],"wpsf_question_option":["wp-simple-forms"],"wpsf_template":["wp-simple-forms"],"ip_comment_trace":["comment-ip-trace"],"lcache_events":["wp-lcache"],"lcache_tags":["wp-lcache"],"wp2pcloud_config":["wp2pcloud"],"wp2pcloud_logs":["wp2pcloud"],"tfsl_songs":["tf-song-list"],"zws_antispam":["zws-wp-comments-anti-spam-hyperlink-blocker"],"ib_contact_field":["inbound-brew"],"ib_countries":["inbound-brew"],"ib_cta_post_linkages":["inbound-brew"],"ib_cta_templates":["inbound-brew"],"ib_ctas":["inbound-brew"],"ib_downloads":["inbound-brew"],"ib_email_field":["inbound-brew"],"ib_email_templates":["inbound-brew"],"ib_emails":["inbound-brew"],"ib_keywords":["inbound-brew"],"ib_lead_data":["inbound-brew"],"ib_lead_fields":["inbound-brew"],"ib_lead_history":["inbound-brew"],"ib_lead_views":["inbound-brew"],"ib_leads":["inbound-brew"],"ib_post_keyword":["inbound-brew"],"ib_redirects":["inbound-brew"],"ib_settings":["inbound-brew"],"ib_social_network_accounts":["inbound-brew"],"ib_social_network_post_records":["inbound-brew"],"ib_social_network_post_setting_accounts":["inbound-brew"],"ib_social_network_post_settings":["inbound-brew"],"ib_states":["inbound-brew"],"ib_analytic_reports":["inbound-brew"],"ib_campaign":["inbound-brew"],"ib_campaign_master":["inbound-brew"],"ib_campaign_step":["inbound-brew"],"ib_email_track":["inbound-brew"],"ib_facebook_reports":["inbound-brew"],"ib_lead_campaign_events_log":["inbound-brew"],"ib_linkedin_reports":["inbound-brew"],"ib_reports":["inbound-brew"],"ib_tracking_events":["inbound-brew"],"ib_twitter_reports":["inbound-brew"],"wpsb_users":["newsletter-subscription-widget-for-sendblaster"],"laybuy_response":["put-it-on-lay-buy-powered-by-paypal-for-woocommerce"],"laybuy_revision_reports":["put-it-on-lay-buy-powered-by-paypal-for-woocommerce"],"abadminprofiledetails":["appointment-buddy-online-appointment-booking-by-accrete"],"abappointmentmst":["appointment-buddy-online-appointment-booking-by-accrete"],"abholidaymst":["appointment-buddy-online-appointment-booking-by-accrete"],"abservicemst":["appointment-buddy-online-appointment-booking-by-accrete"],"abslotmappingdetails":["appointment-buddy-online-appointment-booking-by-accrete"],"abtimeslotmst":["appointment-buddy-online-appointment-booking-by-accrete"],"wpla_logs":["wp-log-action"],"vsq_filter_results":["very-simple-quiz"],"vsq_questions":["very-simple-quiz"],"vsq_quizzes":["very-simple-quiz"],"vsq_results":["very-simple-quiz"],"esp_question_allowed_ext":["files-addon-for-event-espresso-4"],"laterpay_passes":["laterpay"],"laterpay_terms_price":["laterpay"],"laterpay_subscriptions":["laterpay"],"wh_message_errors":["well-handled"],"wh_message_links":["well-handled"],"wh_message_queue":["well-handled"],"wh_messages":["well-handled"],"aff_logs":["affilicious"],"freights":["ltl-freight-quotes-worldwide-express-edition"],"sis_cache":["sis-handball"],"sis_concatenation_conditions":["sis-handball"],"sis_concatenations":["sis-handball"],"sis_monitoring":["sis-handball"],"sis_snapshots":["sis-handball"],"sis_string_replace":["sis-handball"],"easy_circles_contents":["easy-circle-content"],"easy_circles_contents_data":["easy-circle-content"],"woocommerce_isms_msg_sent":["isms"],"cjaddons_options":["cssjockey-add-ons"],"cjaddons_data":["cssjockey-add-ons"],"tables_list_wooexp":["wp-tables"],"wpbc_locks":["wp-blockchain"],"wpbc_stamp_trees":["wp-blockchain"],"wpbc_stamp_tx_confirmations":["wp-blockchain"],"wpbc_stamp_txs":["wp-blockchain"],"wpbc_stamps":["wp-blockchain"],"komtetkassa_reports":["komtetkassa"],"ffirewall_block_list":["fullworks-firewall"],"owl_carousel_tbl":["responsive-owl-carousel"],"webleesbookmark":["fixed-image-all-position-drag-and-drop"],"webleesbookmark_orders":["fixed-image-all-position-drag-and-drop"],"_exp_default":["arbitrage-expert"],"_exp_iframe":["arbitrage-expert"],"pwad_image_queue":["presswell-art-direction"],"pwooapp_notify":["persian-woocommerce-app"],"rtseo_analytics":["realtime-seo","seo-pack"],"rtseo_content_protection":["realtime-seo","seo-pack"],"widget_revisions":["widget-revisions"],"appdesign_gdpr_comments_wordpress":["webappdesign-gdpr-comments"],"nps_computy":["nps-computy"],"woo_live_notify":["woo-live-sale-notify"],"migratepost_domains":["migrate-post"],"queued_tasks":["bread-finance"],"mwp_queued_tasks":["bread-finance","mwp-rules"],"rednaopdfgravity_form_config":["pdf-builder-for-gravity"],"rednaopdfgravity_templates":["pdf-builder-for-gravity"],"rednaopdfgravity_custom_field":["pdf-builder-for-gravity"],"rednaopdfgravity_records":["pdf-builder-for-gravity"],"rednaopdfgravity_links":["pdf-builder-for-gravity"],"sc_simple_zazzle_table":["sc-simple-zazzle"],"gj_email_queue":["grand-job"],"gj_follows":["grand-job"],"gj_save_jobs":["grand-job"],"gj_save_resums":["grand-job"],"wpxlsdata":["wpxlsdata"],"wpxlsdata_meta":["wpxlsdata"],"wpxlsdata_shortcode":["wpxlsdata"],"genpro_products":["genuine-product-checker"],"wp_mail_debug_emails":["wp-mail-debugger"],"smwp_scans":["scan-my-wp"],"easybet_bets":["easy-bet"],"easybet_leagues":["easy-bet"],"easybet_matches":["easy-bet"],"easybet_places":["easy-bet"],"easybet_stages":["easy-bet"],"easybet_teams":["easy-bet"],"yydev_comments_subscribe":["comments-subscribe-checkbox"],"tblight_cars":["cab-fare-calculator"],"tblight_configs":["cab-fare-calculator"],"tblight_countries":["cab-fare-calculator"],"tblight_currencies":["cab-fare-calculator"],"tblight_order_car_rel":["cab-fare-calculator"],"tblight_orders":["cab-fare-calculator"],"tblight_payment_plg_cash":["cab-fare-calculator"],"tblight_payment_plg_paypal":["cab-fare-calculator"],"tblight_paymentmethods":["cab-fare-calculator"],"pf_fields":["pie-forms-for-wp"],"pf_forms":["pie-forms-for-wp"],"pf_entries":["pie-forms-for-wp"],"pf_entrymeta":["pie-forms-for-wp"],"smstowoo_send":["sms-for-woocommerce"],"wdk_categories":["wpdirectorykit"],"wdk_fields":["wpdirectorykit"],"wdk_listings":["wpdirectorykit"],"wdk_listings_fields":["wpdirectorykit"],"wdk_listings_users":["wpdirectorykit"],"wdk_locations":["wpdirectorykit"],"wdk_messages":["wpdirectorykit"],"wdk_resultitem":["wpdirectorykit"],"wdk_searchform":["wpdirectorykit"],"jiangqie_ow_feedback":["jiangqie-official-website-mini-program"],"cf7a_blacklist":["cf7-antispam"],"cf7a_wordlist":["cf7-antispam"],"wpbph_ip_table":["purple-heart-rating-free"],"search_statistics":["search-keyword-statistics"],"v_0_newsletter_adr":["eelv-newsletter"],"download_data":["fb-viral-downloader"],"vtcrt_purchase_log":["cart-deals-for-woocommerce"],"vtcrt_purchase_log_product":["cart-deals-for-woocommerce"],"vtcrt_purchase_log_product_rule":["cart-deals-for-woocommerce"],"ajax_faq":["wp-responsive-faqs"],"ajax_faq_cat":["wp-responsive-faqs"],"ajax_faq_categories":["wp-responsive-faqs"],"tbl_agents":["live-chat-support-system"],"tbl_conversation":["live-chat-support-system"],"tbl_messages":["live-chat-support-system"],"tbl_offlinechat":["live-chat-support-system"],"tap_log":["tweets-as-posts"],"covercarousel_slider":["3d-cover-carousel"],"qnibus_naversyndication":["naver-syndication"],"emaillist":["ebook-download"],"aparg_flexslider":["aparg-slider"],"aparg_flexslider_options":["aparg-slider"],"aparg_flexslider_sliders":["aparg-slider"],"sogrid_object_meta":["sogrid-lite-social-networks-posts-grid"],"sogrid_objects":["sogrid-lite-social-networks-posts-grid"],"match":["wp-championship"],"team":["wp-championship"],"tipp":["wp-championship"],"tippgroup":["wp-championship"],"adv_reviews":["advanc-link-directory"],"plugin_settings":["instant-gallery","ip-poi-map-list"],"noshop_product_specs":["noshop"],"noshop_products":["noshop"],"bhn_v2_file":["blue-hat-cdn"],"bhn_v2_mesh_hash_data":["blue-hat-cdn"],"bhn_v2_mesh_hash_requests":["blue-hat-cdn"],"bhn_v2_setting":["blue-hat-cdn"],"bhn_v2_setting_tmp":["blue-hat-cdn"],"merlic_poll":["poll-lite"],"merlic_pollresult":["poll-lite"],"elmttolink":["tag-to-link-jqueryrank-sculpting"],"bookaroom_amenities":["book-a-room"],"bookaroom_branches":["book-a-room"],"bookaroom_citylist":["book-a-room"],"bookaroom_closings":["book-a-room"],"bookaroom_event_ages":["book-a-room"],"bookaroom_event_categories":["book-a-room"],"bookaroom_eventages":["book-a-room"],"bookaroom_eventcats":["book-a-room"],"bookaroom_registrations":["book-a-room"],"bookaroom_reservations":["book-a-room"],"bookaroom_reservations_deleted":["book-a-room"],"bookaroom_roomconts":["book-a-room"],"bookaroom_roomconts_members":["book-a-room"],"bookaroom_rooms":["book-a-room"],"bookaroom_times":["book-a-room"],"bookaroom_times_deleted":["book-a-room"],"member_db":["member-database"],"galleryfield":["gallery-stacked-slideshow"],"gallerymeta":["gallery-stacked-slideshow"],"piplus":["post-ideas-plus"],"kb_recipes":["kitchenbug"],"kb_recipes_only":["kitchenbug"],"pbci_mail_control":["mail-queues"],"pbci_mail_queue":["mail-queues"],"url_table":["carousel-widget","take-pic"],"wpcj_testimonials":["wpcj-testimonials"],"ppc_tracker":["ppc-fraud-detctor"],"ppc_tracker_archived":["ppc-fraud-detctor"],"google_api_setting":["wp-google-calendar"],"google_events":["wp-google-calendar"],"prtools_pr":["pagerank-tools"],"prtools_url":["pagerank-tools"],"up_down_comment_vote":["updownupdown-postcomment-voting"],"up_down_comment_vote_totals":["updownupdown-postcomment-voting"],"up_down_post_vote":["updownupdown-postcomment-voting"],"up_down_post_vote_totals":["updownupdown-postcomment-voting"],"amms_members":["association-membership-management-software"],"amms_renewal":["association-membership-management-software"],"memeone":["memeone"],"memeone_backgrounds":["memeone"],"myadmanager_ads":["myadmanager"],"myadmanager_regions":["myadmanager"],"myadmanager_transactions":["myadmanager"],"etsy_treasury":["etsy-treasury-posting-tool"],"affilinker_db":["affilinker"],"affilinker_db_stat":["affilinker"],"affilinker_db_stat_uniq":["affilinker"],"newsticker_aink":["newsticker-aink"],"sppl_fields":["supple-forms"],"sppl_forms":["supple-forms"],"sppl_lookup":["supple-forms"],"sppl_snips":["supple-forms"],"current_requests":["music-request-manager"],"lbb":["lbb-little-black-book"],"goodway":["goodway-group-pixel"],"konnichiwa_content":["konnichiwa"],"konnichiwa_files":["konnichiwa"],"konnichiwa_payments":["konnichiwa"],"konnichiwa_plans":["konnichiwa"],"konnichiwa_subscriptions":["konnichiwa"],"konnichiwa_usage":["konnichiwa"],"testimonials_pro":["testimonials-pro"],"wf_ip_list":["world-flags"],"wow_signup_free":["viral-signup"],"wiqet":["wiqet-photo-voice-and-webcam-video-personal-presentation-plugin"],"wpci_id_associations":["products-csv-importer-for-woocommerce"],"webclap":["wp-webclap","yet-another-webclap-for-wordpress"],"webclap_comments":["wp-webclap","yet-another-webclap-for-wordpress"],"wp_a_log":["wp-activity-log"],"bb_apis":["author-showcase"],"buybooks":["author-showcase"],"ugf_fields":["data-collection-form"],"ugf_fields_attributes":["data-collection-form"],"ugf_fields_validations":["data-collection-form"],"ugf_forms":["data-collection-form"],"edt_payments":["easy-donations"],"tp_google_finance":["top-position-google-finance"],"socal_count_cache":["step-by-step-social-count-cache"],"hatena_notation_link_titles":["wp-hatena-notation"],"hexam_questions":["hexam"],"hexam_testnames":["hexam"],"hexam_userdata":["hexam"],"svs_shortlinks":["svs-shortlink-analytics"],"svs_statistics":["svs-shortlink-analytics"],"easy_todo":["wordpress-easy-todo"],"amazon_setting":["amazon-product-price"],"tzcustom_optionset":["custom-post-slider"],"tzcustom_thumbnail":["custom-post-slider"],"mlq_mail_plugins":["email-queue"],"mlq_mail_send":["email-queue"],"mlq_mail_users":["email-queue"],"bns_email_new_sending":["best-newsletter"],"bns_email_new_sending_extra":["best-newsletter"],"bns_email_new_temp_all_track":["best-newsletter"],"bns_email_new_temp_link":["best-newsletter"],"bns_email_news_list":["best-newsletter"],"bns_email_news_list_extra":["best-newsletter"],"bns_email_news_open_track":["best-newsletter"],"bns_email_news_sending_slots":["best-newsletter"],"bns_email_news_templ":["best-newsletter"],"bns_email_news_templ_track":["best-newsletter"],"bns_email_news_unsubscribe_track":["best-newsletter"],"plugin_audit":["plugin-auditor"],"tracker_peers":["katracker"],"mk_connect":["mailkitchen-official-plugin"],"mk_form_content":["mailkitchen-official-plugin"],"mk_form_name":["mailkitchen-official-plugin"],"firedrum_wc_customer_carts":["firedrum-email-marketing"],"realty_tech_api":["apex-idx"],"realty_tech_links":["apex-idx"],"inazo_tor_logs":["tor-blocker-by-inazo"],"wws_categories":["woo-salesforce-connector"],"wws_products":["woo-salesforce-connector"],"woosfrest_categories":["woo-salesforce-connector"],"woosfrest_orders":["woo-salesforce-connector"],"woosfrest_products":["woo-salesforce-connector"],"woosfrest_users":["woo-salesforce-connector"],"amo_shortcodes_cache":["wp-amo"],"pw_adboxes":["plugin-wonderful"],"kcaptcha_setting":["kcaptcha"],"panion_map_config":["companion-map"],"panion_map_mitglieder":["companion-map"],"companion_map_config":["companion-map"],"companion_map_mitglieder":["companion-map"],"dwrp_alert":["download-directory"],"agoda_settings":["old-to-new-agoda-link-converter"],"agoda_countries":["old-to-new-agoda-link-converter"],"cformsdata":["cforms2-old-tracking-db"],"cformssubmissions":["cforms2-old-tracking-db"],"mcm_baby_name":["mcm-random-baby-name-generator"],"twm_user_lessons":["memberwunder"],"twm_user_lessons_quizes":["memberwunder"],"sitehealth_errorlog":["site-health"],"mcpu_customized_plugins":["manage-customized-plugin-updates"],"xola_listings":["xola-bookings-for-tours-activities"],"azr_page_visits":["marketing-automation-by-azexo"],"azr_visitor_tags":["marketing-automation-by-azexo"],"azr_visitors":["marketing-automation-by-azexo"],"azr_visitor_posts":["marketing-automation-by-azexo"],"u2gform_data":["hkinfosoft-unbounce-to-gravity-form-integration"],"ptw_modules":["woo-product-pricing-tables"],"ptw_modules_type":["woo-product-pricing-tables"],"ptw_product_properties":["woo-product-pricing-tables"],"ptw_product_property_codes":["woo-product-pricing-tables"],"ptw_products":["woo-product-pricing-tables"],"ptw_tables":["woo-product-pricing-tables"],"ptw_usage_stat":["woo-product-pricing-tables"],"swi_abandoned_carts":["smartrmail-personalized-email-marketing"],"lt_src_lambdatest":["lambdatest-screenshot"],"achievements":["wpachievements-free"],"wpc_contests":["wp-contest"],"wpc_entry":["wp-contest"],"wpc_phase_one_votiong":["wp-contest"],"wpc_phase_two_votiong":["wp-contest"],"abr_test_urls":["ab-rankings-testing-tool"],"abr_tests":["ab-rankings-testing-tool"],"prt_requests":["immobilien-leadgenerator"],"prt_statistics":["immobilien-leadgenerator"],"issslpg_cities":["seo-landing-page-generator"],"issslpg_city_county":["seo-landing-page-generator"],"issslpg_city_data":["seo-landing-page-generator"],"issslpg_city_zip_code":["seo-landing-page-generator"],"issslpg_counties":["seo-landing-page-generator"],"issslpg_county_data":["seo-landing-page-generator"],"issslpg_scheduled_landing_page_updates":["seo-landing-page-generator"],"issslpg_state_data":["seo-landing-page-generator"],"issslpg_states":["seo-landing-page-generator"],"issslpg_zip_codes":["seo-landing-page-generator"],"issslpg_excluded_county_template_pages":["seo-landing-page-generator"],"issslpg_countries":["seo-landing-page-generator"],"issslpg_country_data":["seo-landing-page-generator"],"issslpg_download_queue":["seo-landing-page-generator"],"issslpg_city_demographics":["seo-landing-page-generator"],"issslpg_county_demographics":["seo-landing-page-generator"],"issslpg_state_demographics":["seo-landing-page-generator"],"wsc_gocodes":["wpneon-gocodes"],"simplelender_account":["simplelender-by-umatidocs-com"],"simplelender_client_account":["simplelender-by-umatidocs-com"],"simplelender_client_loan":["simplelender-by-umatidocs-com"],"simplelender_d_entry":["simplelender-by-umatidocs-com"],"simplelender_dat_key":["simplelender-by-umatidocs-com"],"simplelender_dat_value":["simplelender-by-umatidocs-com"],"simplelender_loan_setting":["simplelender-by-umatidocs-com"],"simplelender_mail_recipients":["simplelender-by-umatidocs-com"],"simplelender_spending_goal":["simplelender-by-umatidocs-com"],"simplelender_webhook_args":["simplelender-by-umatidocs-com"],"simplelender_webhook_events":["simplelender-by-umatidocs-com"],"simplelender_webhook_logs":["simplelender-by-umatidocs-com"],"simplelender_webhook_urls":["simplelender-by-umatidocs-com"],"simplelender_webhooks":["simplelender-by-umatidocs-com"],"simplelender_message":["simplelender-by-umatidocs-com"],"simplelender_ticket":["simplelender-by-umatidocs-com"],"simplelender_api_key":["simplelender-by-umatidocs-com"],"simplelender_api_value":["simplelender-by-umatidocs-com"],"simplelender_notifications":["simplelender-by-umatidocs-com"],"gf_draft_submissions":["simplelender-by-umatidocs-com","gravityforms"],"gf_entry":["simplelender-by-umatidocs-com","gravityforms"],"gf_entry_meta":["simplelender-by-umatidocs-com","gravityforms"],"gf_entry_notes":["simplelender-by-umatidocs-com","gravityforms"],"gf_form":["simplelender-by-umatidocs-com","gravityforms"],"gf_form_meta":["simplelender-by-umatidocs-com","gravityforms"],"gf_form_revisions":["simplelender-by-umatidocs-com","gravityforms"],"gf_form_view":["simplelender-by-umatidocs-com","gravityforms"],"zcf_form_list":["contact-form-z"],"zcf_form_list_history":["contact-form-z"],"zcf_form_list_post":["contact-form-z"],"zcf_form_save":["contact-form-z"],"ms_subscriber":["ms-subscriber-subscribe-to-news"],"ms_subscriber_options":["ms-subscriber-subscribe-to-news"],"ms_subscriber_templates":["ms-subscriber-subscribe-to-news"],"gpress_chars":["gamepress"],"gpress_companies":["gamepress"],"gpress_content_comps":["gamepress"],"gpress_content_images":["gamepress"],"gpress_content_langs":["gamepress"],"gpress_content_videos":["gamepress"],"gpress_crew":["gamepress"],"gpress_engines":["gamepress"],"gpress_games":["gamepress"],"gpress_genres":["gamepress"],"gpress_images":["gamepress"],"gpress_jobs":["gamepress"],"gpress_langs":["gamepress"],"gpress_modes":["gamepress"],"gpress_op":["gamepress"],"gpress_people":["gamepress"],"gpress_perspectives":["gamepress"],"gpress_platforms":["gamepress"],"gpress_rating":["gamepress"],"gpress_settings":["gamepress"],"gpress_templates":["gamepress"],"gpress_themes":["gamepress"],"gpress_videos":["gamepress"],"bmp_bonus":["binary-mlm-plan"],"bmp_commission":["binary-mlm-plan"],"bmp_country":["binary-mlm-plan"],"bmp_currency":["binary-mlm-plan"],"bmp_epins":["binary-mlm-plan"],"bmp_leftposition":["binary-mlm-plan"],"bmp_payout":["binary-mlm-plan"],"bmp_payout_master":["binary-mlm-plan"],"bmp_product_price":["binary-mlm-plan"],"bmp_referral_commission":["binary-mlm-plan"],"bmp_rightposition":["binary-mlm-plan"],"bmp_royalty":["binary-mlm-plan"],"bmp_users":["binary-mlm-plan"],"wpbot_fb_broadcasts":["chatbot-for-messenger"],"wpbot_fb_pages":["chatbot-for-messenger"],"wpbot_fb_subscribers":["chatbot-for-messenger"],"wpcalendars_event_details":["wpcalendars-lite"],"wpcalendars_events":["wpcalendars-lite"],"platon_invoice":["platon-pay-woocommerce","platon-pay"],"platon_orders":["platon-pay-woocommerce","platon-pay"],"platon_shortcodes":["platon-pay-woocommerce","platon-pay"],"cf7sd_forms":["save-data-contact-form-7"],"wpns_backup_created_report":["backup-and-restore-for-wp"],"epx_transaction":["epx-ecommerce"],"wc_slazzer_process_history":["slazzer-background-changer"],"wc_slazzer_process_status":["slazzer-background-changer"],"lokalise_auth_tokens":["lokalise"],"voyants_info":["dial-voyants"],"adev_blocked_emails":["antideo-email-validator"],"adev_disposable_domains":["antideo-email-validator"],"td_conversations":["thrivedesk"],"bfw_computy":["bonus-for-woo"],"bfw_history_computy":["bonus-for-woo"],"bfw_time_points_computy":["bonus-for-woo"],"sticky_sm_icons_tbl":["sticky-social-media-icons"],"cwmm_chat_widgets":["chat-widgets-for-multivendor-marketplaces"],"betterpayment":["better-payment"],"better_payment":["better-payment"],"acyc_configuration":["acychecker"],"acyc_global_stat":["acychecker"],"acyc_test":["acychecker"],"acyc_block_history":["acychecker"],"c5_history":["history-log-by-click5"],"cpis_file":["cp-image-store"],"cpis_image":["cp-image-store"],"cpis_image_file":["cp-image-store"],"cpis_purchase":["cp-image-store"],"toolshot_player":["toolshot-player"],"t4b_id_lists":["t4b-featured-slider"],"custom_wa":["power-widgets-lite"],"default_wa":["power-widgets-lite"],"old_default_wa":["power-widgets-lite"],"overriding_prot_wa":["power-widgets-lite"],"prototypes_wa":["power-widgets-lite"],"replacement_wa":["power-widgets-lite"],"redirect_it":["cleverwise-redirect-it"],"vw_2wrooms":["webcam-2way-videochat"],"vw_2wsessions":["webcam-2way-videochat"],"vw_2w_chatlog":["webcam-2way-videochat"],"vw_2w_sessions":["webcam-2way-videochat"],"vw_2wmatch":["webcam-2way-videochat"],"database_autobackup":["wp-auto-backup"],"simpleal_images":["simple-al-slider"],"simpleal_slider":["simple-al-slider"],"simpleal_slides":["simple-al-slider"],"simpleal_texts":["simple-al-slider"],"hsgpi_gallery":["horizontal-scroll-google-picasa-images"],"tracks":["tune-library"],"itormailer":["visitor-mailer"],"visitormailer":["visitor-mailer"],"admin_user_message":["admin-user-messages"],"admin_user_message_settings":["admin-user-messages"],"wiw_locals":["where-i-was-where-i-will-be"],"wiw_type":["where-i-was-where-i-will-be"],"social_shares_report":["word-count-and-social-shares"],"wp_beautiful_charts":["wp-beautiful-charts"],"wp_beautiful_charts_data":["wp-beautiful-charts"],"nl_localizations":["nlingual"],"nl_translations":["nlingual"],"pike_firewall_crawl_fake_ip":["pike-firewall"],"pike_firewall_crawl_ip":["pike-firewall"],"pike_firewall_crawl_range_ip":["pike-firewall"],"pike_firewall_filesystem_scan":["pike-firewall"],"pike_firewall_log":["pike-firewall","tor-exit-nodes-blocker"],"pike_firewall_log_crawlers":["pike-firewall"],"pike_firewall_login":["pike-firewall"],"pike_firewall_range_ip":["pike-firewall"],"pike_firewall_single_ip":["pike-firewall","tor-exit-nodes-blocker"],"appreplica_social_icons":["appreplica-social-icons"],"supracsvparser_plugin_presets":["supra-csv-parser"],"wptb":["wp-tweet-plus"],"el_email_sent":["email-list"],"el_email_sent_subscribers":["email-list"],"el_subscribers":["email-list"],"123flashchat":["wordpress-chat-plugin-by-123-flash-chat"],"weallopass_prod":["wordpress-easy-allopass"],"weallopass_stat":["wordpress-easy-allopass"],"pbl_categories":["paid-business-listings"],"pbl_listings":["paid-business-listings"],"pbl_packages":["paid-business-listings"],"pbl_trans_log":["paid-business-listings"],"rpd_related_pages":["related-pages"],"rpd_relations":["related-pages"],"rpd_settings":["related-pages"],"rpd_titles":["related-pages"],"job_castrop_event_lists":["rich-snippets-vevents"],"job_castrop_events":["rich-snippets-vevents"],"oqey_header":["oqey-headers"],"smareviewsb":["quick-business-website"],"quizleads_tbl":["quizleads"],"simple_graph":["simple-graph"],"fancybox":["schmancy-box"],"banners":["jquery-banner-rotate","apa-banner-slider"],"banner_sliders":["jquery-banner-rotate"],"fmecfa_fields":["fma-additional-checkout-attributes"],"fmecfa_meta":["fma-additional-checkout-attributes"],"sh9_betakeys":["wp-keys-giveaway"],"cartypes":["asi-taxi-booking","asi-fare-map-calculator","asi-fare-calculator"],"bookings":["resource-booking-and-availability-calendar"],"bookings_states":["resource-booking-and-availability-calendar"],"nv_slider":["nv-slider"],"mytweetlinks_plg_tweets":["mytweetlinks"],"lwp_campaign":["literally-wordpress"],"lwp_devices":["literally-wordpress"],"lwp_file_logs":["literally-wordpress"],"lwp_file_relationships":["literally-wordpress"],"lwp_files":["literally-wordpress"],"lwp_promotion_logs":["literally-wordpress"],"lwp_reward_logs":["literally-wordpress"],"lwp_transaction":["literally-wordpress"],"subme":["subme"],"subme_queue":["subme"],"jmk_alt_tags":["image-alt-tager"],"ibeffects_layers":["image-banner-effects-lite"],"admin_bar_table":["easy-custom-admin-bar"],"visitor_analytics":["visitor-analytics"],"visitor_analytics_fingerprint":["visitor-analytics"],"visitor_analytics_visitors":["visitor-analytics"],"pike_firewall_ip_range":["tor-exit-nodes-blocker"],"multix":["multix"],"postoftheday":["post-of-the-day"],"customslider_images":["wp-custom-slider"],"customslider_settings":["wp-custom-slider"],"widgets_table":["create-custom-dashboard-widget"],"amaps_categories":["wp-map"],"amaps_configs":["wp-map"],"amaps_countries":["wp-map"],"amaps_locations":["wp-map"],"amaps_locations_categories":["wp-map"],"amaps_markers":["wp-map"],"amazon_link_cache":["recipe-schema"],"recipe_schema_ingredients":["recipe-schema"],"testimonials":["web-testimonials","rotating-testimonial","client-testimonials-quotes"],"back_link":["back-link-tracker"],"active_login":["rnd-active-login"],"gautohyperlink":["g-auto-hyperlink"],"pluginstalkplinker":["post-linker"],"pluginstalkplinkeroptions":["post-linker"],"bibliplug_bibliography":["enhanced-bibliplug"],"bibliplug_creators":["enhanced-bibliplug"],"bibliplug_creatortypes":["enhanced-bibliplug"],"bibliplug_fields":["enhanced-bibliplug"],"bibliplug_typecreatortypes":["enhanced-bibliplug"],"bibliplug_typefields":["enhanced-bibliplug"],"bibliplug_types":["enhanced-bibliplug"],"bibliplug_zoteroconnections":["enhanced-bibliplug"],"reportattacks_loginlog":["reportattacks"],"xyz_cfl_fields":["custom-field-manager"],"xyz_cfl_group":["custom-field-manager"],"ecampaign_log":["ecampaign"],"es_bcard":["business-card-by-esterox-100"],"es_category":["business-card-by-esterox-100"],"iboard_comment":["iboard"],"iboard_item":["iboard"],"iboard_meta":["iboard"],"iboard_setting":["iboard"],"ex_mapping":["exam-matrix"],"ex_questions":["exam-matrix"],"ex_result":["exam-matrix"],"ex_session":["exam-matrix"],"ex_set":["exam-matrix"],"ex_subset":["exam-matrix"],"meetup_users":["meetup"],"indicadores_economicos":["indicadores-economicos"],"post_email_subscriber":["post-to-email"],"vw_videocomrecordings":["video-comments-webcam-recorder"],"uniquep2views":["unique-post-view-conter"],"swx":["aviation-weather-briefing"],"upper_winds":["aviation-weather-briefing"],"sm_entities":["connect-sociallymap"],"sm_entity_options":["connect-sociallymap"],"sm_options":["connect-sociallymap"],"sm_published":["connect-sociallymap"],"smc_entities":["connect-sociallymap"],"smc_entities_categories":["connect-sociallymap"],"smc_logs":["connect-sociallymap"],"smc_message_published":["connect-sociallymap"],"gcp_feeds":["exportfeed-for-woocommerce-google-product-feed"],"gcpf_custom_products":["exportfeed-for-woocommerce-google-product-feed"],"rpsl_certificates":["rapid-secure-login"],"rpsl_config":["rapid-secure-login"],"rpsl_devices":["rapid-secure-login"],"rpsl_sessions":["rapid-secure-login"],"social_media_email_alerts":["social-media-email-alerts"],"infusionsoft_forms":["wp-infusionsoft"],"quranaday":["quran-verse-a-day"],"donate_form":["idonateie-donate-now"],"wp_key_mon_keyword_results":["wp-keyword-monitor"],"wp_key_mon_keywords":["wp-keyword-monitor"],"links_stats":["affiliate-tools-viet-nam"],"masklinks":["affiliate-tools-viet-nam"],"kg":["knowledge-google-par-jm-crea"],"crm_company":["dx-sales-crm"],"crm_customer":["dx-sales-crm"],"crm_project":["dx-sales-crm"],"crm_roadmap":["dx-sales-crm"],"qi_clients":["quip-invoices-free"],"qi_invoices":["quip-invoices-free"],"qi_line_items":["quip-invoices-free"],"qi_payments":["quip-invoices-free"],"qi_templates":["quip-invoices-free"],"edoc_form_saved":["edoc-employee-application"],"upela_connector":["upela-e-commerce-connector"],"exercise_location":["walking-log"],"exercise_log":["walking-log"],"exercise_type":["walking-log"],"xeroom_credentials":["xeroom"],"xeroom_debug":["xeroom"],"xeroom_license_key_status":["xeroom"],"xeroom_tax":["xeroom"],"ucwp_item_post_rel":["ultracart-ecommerce-shopping-cart"],"ucwp_items":["ultracart-ecommerce-shopping-cart"],"limit_max_ips_per_user":["limit-max-ips-per-user"],"sume_clientes_conf":["sumeclientes"],"sume_clientes_paginas":["sumeclientes"],"sume_clientes_variaciones":["sumeclientes"],"kshelf_sales":["bookshelf"],"linkedinclude_posts":["linkedinclude"],"gestion_tarif":["gestion-tarifs"],"als_index":["ajax-live-search"],"als_log":["ajax-live-search"],"searchlog":["log-searches"],"qr_code_waiter_calling_system_options":["qr-code-waiter-calling-system"],"adback_account":["adback-solution-to-adblock"],"adback_end_point":["adback-solution-to-adblock"],"adback_full_tag":["adback-solution-to-adblock"],"adback_myinfo":["adback-solution-to-adblock"],"adback_token":["adback-solution-to-adblock"],"clearent_transaction":["clearent-payments"],"logy_users":["logy"],"galcategory":["categorized-gallery"],"galimage":["categorized-gallery"],"hst_attachments":["helpdesk-support-tickets"],"hst_tickets":["helpdesk-support-tickets"],"hst_tickets_categories":["helpdesk-support-tickets"],"hst_tickets_events":["helpdesk-support-tickets"],"hst_tickets_priorities":["helpdesk-support-tickets"],"hst_tickets_statuses":["helpdesk-support-tickets"],"branch_manager":["cbx-restaurant-booking"],"rbookinglogs":["cbx-restaurant-booking"],"cbxrbooking_branch_manager":["cbx-restaurant-booking"],"cbxrbooking_log_manager":["cbx-restaurant-booking"],"monero_gateway_live_rates":["monero-woocommerce-gateway"],"monero_gateway_quotes":["monero-woocommerce-gateway"],"monero_gateway_quotes_txids":["monero-woocommerce-gateway"],"sm_sql_logs":["sm-sql-logs"],"crea_agent":["aretk-crea"],"crea_api_log":["aretk-crea"],"crea_api_log_exclusive":["aretk-crea"],"crea_lead_reminder_detail":["aretk-crea"],"crea_listing_detail_count":["aretk-crea"],"crea_listing_document_detail":["aretk-crea"],"crea_listing_images_detail":["aretk-crea"],"crea_user_listing_detail":["aretk-crea"],"rpam_ads":["rp-ads-manager"],"rpam_rel":["rp-ads-manager"],"rpam_codes":["rp-ads-manager"],"rpam_groups":["rp-ads-manager"],"rpam_options":["rp-ads-manager"],"rpam_shortcodes":["rp-ads-manager"],"fiddlemail_log":["fiddlemail"],"fiddlemail_wblist":["fiddlemail"],"csh_callback_request":["csh-callback"],"mlubgg":["meeple-like-us-boardgamegeek"],"vem_event_dates":["venture-event-manager"],"vem_date_terms":["venture-event-manager"],"ispring_data":["embed-ispring"],"sello_channelconnector_orders":["sello-channelconnector"],"visitorinfo":["geo-location"],"plugin_revoffers_queue":["revoffers-advertiser-integration"],"zacctmgr_acm_assignments_mapping":["account-manager-woocommerce"],"zacctmgr_acm_commissions_mapping":["account-manager-woocommerce"],"zacctmgr_acm_manager_commission_audit_mapping":["account-manager-woocommerce"],"zacctmgr_acm_order_audit_mapping":["account-manager-woocommerce"],"js_learnmanager_activitylog":["learn-manager"],"js_learnmanager_category":["learn-manager"],"js_learnmanager_config":["learn-manager"],"js_learnmanager_country":["learn-manager"],"js_learnmanager_course":["learn-manager"],"js_learnmanager_course_access_type":["learn-manager"],"js_learnmanager_course_level":["learn-manager"],"js_learnmanager_course_section":["learn-manager"],"js_learnmanager_course_section_lecture":["learn-manager"],"js_learnmanager_currencies":["learn-manager"],"js_learnmanager_emailtemplates":["learn-manager"],"js_learnmanager_emailtemplates_config":["learn-manager"],"js_learnmanager_fieldsordering":["learn-manager"],"js_learnmanager_instructor":["learn-manager"],"js_learnmanager_language":["learn-manager"],"js_learnmanager_lecture_file":["learn-manager"],"js_learnmanager_slug":["learn-manager"],"js_learnmanager_student":["learn-manager"],"js_learnmanager_student_enrollment":["learn-manager"],"js_learnmanager_system_errors":["learn-manager"],"js_learnmanager_user":["learn-manager"],"js_learnmanager_user_role":["learn-manager"],"js_learnmanager_wishlist":["learn-manager"],"js_learnmanager_session":["learn-manager"],"ahop_cats_offerpacks":["avirato-hotels-promotional-packs"],"ahop_textcomp_offerpacks":["avirato-hotels-promotional-packs"],"vxg_insightly":["gf-insightly"],"vxg_insightly_accounts":["gf-insightly"],"vxg_insightly_log":["gf-insightly"],"mdwcpt_subscriptions":["mdwcpt"],"bookme_pro_appointments":["bookme-pro-free-appointment-booking-system"],"bookme_pro_categories":["bookme-pro-free-appointment-booking-system"],"bookme_pro_coupon_services":["bookme-pro-free-appointment-booking-system"],"bookme_pro_coupons":["bookme-pro-free-appointment-booking-system"],"bookme_pro_customer_appointments":["bookme-pro-free-appointment-booking-system"],"bookme_pro_customers":["bookme-pro-free-appointment-booking-system"],"bookme_pro_holidays":["bookme-pro-free-appointment-booking-system"],"bookme_pro_notifications":["bookme-pro-free-appointment-booking-system"],"bookme_pro_payments":["bookme-pro-free-appointment-booking-system"],"bookme_pro_schedule_item_breaks":["bookme-pro-free-appointment-booking-system"],"bookme_pro_sent_notifications":["bookme-pro-free-appointment-booking-system"],"bookme_pro_series":["bookme-pro-free-appointment-booking-system"],"bookme_pro_services":["bookme-pro-free-appointment-booking-system"],"bookme_pro_staff":["bookme-pro-free-appointment-booking-system"],"bookme_pro_staff_preference_orders":["bookme-pro-free-appointment-booking-system"],"bookme_pro_staff_schedule_items":["bookme-pro-free-appointment-booking-system"],"bookme_pro_staff_services":["bookme-pro-free-appointment-booking-system"],"bookme_pro_sub_services":["bookme-pro-free-appointment-booking-system"],"bookingbundlehours":["woo-booking-bundle-hours"],"pp_analytics":["protected-page"],"pp_passwords":["protected-page"],"wc_remove_bg":["wc-remove-bg"],"wc_remove_bg_backup":["wc-remove-bg"],"sp_cardcom":["simple-payment"],"sp_transactions":["simple-payment"],"sp_history":["simple-payment"],"wpsl_leads":["capture-and-convert"],"wpsl_stats":["capture-and-convert"],"whiterabbit_import_data":["white-rabbit-suite"],"whiterabbit_posts":["white-rabbit-suite"],"whiterabbit_abandoned_carts":["white-rabbit-suite"],"totalcontest_log":["totalcontest-lite"],"totalcontest_votes":["totalcontest-lite"],"wal_cloud":["winterlock"],"wal_control":["winterlock"],"wal_control_rule":["winterlock"],"wal_failed_attemps":["winterlock"],"wal_log":["winterlock"],"wal_report":["winterlock"],"wal_history":["winterlock"],"wal_sessions":["winterlock"],"innovs_attendance":["innovs-hr-manager"],"innovs_department":["innovs-hr-manager"],"innovs_designation":["innovs-hr-manager"],"innovs_employee":["innovs-hr-manager"],"innovs_holiday":["innovs-hr-manager"],"innovs_leave_entitlement":["innovs-hr-manager"],"innovs_leave_policy":["innovs-hr-manager"],"innovs_leave_request":["innovs-hr-manager"],"innovs_location":["innovs-hr-manager"],"innovs_setting":["innovs-hr-manager"],"occupancy_plan":["occupancy-plan"],"occupancy_plan_block":["occupancy-plan"],"occupancy_plan_prepared_block":["occupancy-plan"],"occupancy_plan_court_name":["occupancy-plan"],"occupancy_plan_time_slot":["occupancy-plan"],"billsby_table_config":["billsby"],"billsby_webhook_logs":["billsby"],"payment_page_stripe_customers":["payment-page"],"payment_page_stripe_prices":["payment-page"],"payment_page_stripe_products":["payment-page"],"nd_spt_booking":["nd-sports-booking"],"eepress_shortcodes":["threepress"],"wca_referrals":["wc-affiliate"],"wca_transactions":["wc-affiliate"],"wca_visits":["wc-affiliate"],"ocw_contact":["online-contact-widget"],"ocw_contact_content":["online-contact-widget"],"spod_shop_import_images":["wc-spod"],"spod_shop_import_products":["wc-spod"],"copyscape":["copyscape"],"woo_transition":["woo-superb-slideshow-transition-gallery-with-random-effect"],"upi_invoice_template":["ultimate-pdf-invoice"],"audio_tracklist":["playlist-audio-player"],"social_keys":["social-media-integration"],"social_to_post":["social-media-integration"],"emojiemo_emojis":["emoji-reactions"],"_companies":["cardealerpress"],"_inventory":["cardealerpress"],"_inventory_import":["cardealerpress"],"_data":["cardealerpress"],"_inventory_1":["cardealerpress"],"_inventory_import_1":["cardealerpress"],"bw_helpdesk_attachments":["bravowp-helpdesk"],"bw_helpdesk_categories":["bravowp-helpdesk"],"bw_helpdesk_messages":["bravowp-helpdesk"],"bw_helpdesk_notifications":["bravowp-helpdesk"],"bw_helpdesk_tickets":["bravowp-helpdesk"],"playlists_yt":["playlist-for-youtube"],"lo_optin_forms":["leadoutcome"],"alate_offer_files":["escalate-network-affiliate-plugin"],"alate_offers":["escalate-network-affiliate-plugin"],"wpstacker_posted_links":["wp-stacker"],"displayembeddedvideosbydb":["display-embedded-videos-by-dbiota"],"aipwp_ads":["ads-inside-post-aipwp"],"ssjp":["slippy-slider-responsive-touch-navigation-slider"],"deals":["shareasale-dealsbar"],"sts_options":["simple-support-ticket-system"],"ir_emails":["inbound-rocket"],"ir_leads":["inbound-rocket"],"ir_pageviews":["inbound-rocket"],"ir_shares":["inbound-rocket"],"ir_submissions":["inbound-rocket"],"ir_tag_relationships":["inbound-rocket"],"ir_tags":["inbound-rocket"],"give_it_away":["give-it-away-now"],"c_messages":["text-message-contact-form"],"c_settings":["text-message-contact-form"],"chapitres":["chapters"],"user_chat":["wp-ajax-user-chat"],"slidorion":["slidorion"],"seomonitor_keywords":["seo-monitor"],"seomonitor_ranks":["seo-monitor"],"pp_album_review2_comment_table":["albumreviewer"],"pp_album_review2_page_table":["albumreviewer"],"gallary_setting":["youtube-gallery"],"dingpages":["html-landing-page"],"cat_sub_categories_users":["category-subscriptions"],"cat_sub_messages":["category-subscriptions"],"atpf_options":["add-to-post-footer"],"likeit":["like-it"],"ftm_task_lists":["simple-tasks-todos"],"ftm_tasks":["simple-tasks-todos"],"send_to_twitter":["send-to-twitter"],"gtt":["go-to-top-button"],"appointment_data":["ink-appointment-booking"],"apt_currency":["ink-appointment-booking"],"apt_dateslot":["ink-appointment-booking"],"apt_service":["ink-appointment-booking"],"apt_timeslot":["ink-appointment-booking"],"apt_transaction":["ink-appointment-booking"],"smugmug_widget":["smugmug-widget"],"hover_image":["hover-image-and-text"],"ssfade":["wp-crossfade"],"gtg_ap":["gtg-audio-player"],"gtg_ap_options":["gtg-audio-player"],"gtg_ap_songs":["gtg-audio-player"],"wukstats":["wukch-dns-prefetch-prerender"],"bw_category":["bet-on-sports"],"bw_category_1":["bet-on-sports"],"bw_item":["bet-on-sports"],"bw_item_1":["bet-on-sports"],"bw_sports":["bet-on-sports"],"bw_sports_1":["bet-on-sports"],"bw_tournament":["bet-on-sports"],"bw_tournament_1":["bet-on-sports"],"selfshortener_url":["self-shortener"],"project_tasks":["wp-project","project-tasks"],"project_clients":["wp-project"],"project_projects":["wp-project"],"rav_cav_session":["currently-active-visitors"],"signupmeta":["wp-user-signups"],"yanewsletter_emails":["yet-another-newsletter"],"likabradashboard":["dashboard-info"],"feedbacks_summary":["rate-this-page-plugin"],"upzfilemanager_files":["unpointzero-filemanager"],"upzfilemanager_folders":["unpointzero-filemanager"],"upzfilemanager_group":["unpointzero-filemanager"],"upzfilemanager_userfiles":["unpointzero-filemanager"],"au_urls":["auto-url"],"leadeo_lite":["leadeo-lite"],"leadeo_lite_data":["leadeo-lite"],"leadeo_lite_temp":["leadeo-lite"],"zvideo_management":["fma-media-gallery"],"zvideo_settings":["fma-media-gallery"],"matches_matches":["matches"],"matches_teams":["matches"],"optify_form":["optify-for-wordpress"],"plugin_dir_stats":["plugin-directory-stats"],"wkg_kml_cache":["simple-kml-generator"],"wkg_kml_index":["simple-kml-generator"],"wkg_kml_list":["simple-kml-generator"],"simplepayulatam_trans":["simple-payu-latam"],"countdown":["wp-countdown"],"jk_login_log":["jeffrey-keijzer-wp-login-count"],"pictagger":["wp-pic-tagger"],"ps_puffar_relations":["puffar"],"registrationuser":["user-drop-down-roles-in-registration"],"clm_applicants":["car-loan-application-and-calculator-module"],"clm_co_buyers":["car-loan-application-and-calculator-module"],"bandcamplib":["dq-bandcamp-library"],"classdex_classes":["classdex"],"classdex_customers":["classdex"],"classdex_payments":["classdex"],"classdex_registrations":["classdex"],"yblog":["yblog-stats"],"s3_image_queue":["wp-s3"],"dls_error_log":["error-manager"],"td_tts_departments":["td-ticket-system"],"td_tts_messages":["td-ticket-system"],"td_tts_responses":["td-ticket-system"],"td_tts_settings":["td-ticket-system"],"thirukural":["tamil-thirukural"],"thirukural_explanation":["tamil-thirukural"],"fodds_customization":["football-odds"],"fodds_settings":["football-odds"],"ispconfig_invoice":["wp-ispconfig3","wc-invoice-pdf"],"da_ga_effects":["goanimate"],"da_ga_settings":["goanimate"],"da_goanimate":["goanimate"],"conferencer_shortcode_cache":["conferencer"],"aho":["as-heard-on"],"collectiveaccess_cache":["wp-collectiveaccess"],"registration_control":["registration-control"],"wpsc_account":["wp-support-centre"],"wpsc_additional_fields_meta":["wp-support-centre"],"wpsc_categories":["wp-support-centre"],"wpsc_imap":["wp-support-centre"],"wpsc_notifications":["wp-support-centre"],"wpsc_piping_preview":["wp-support-centre"],"wpsc_priority":["wp-support-centre"],"wpsc_reminders":["wp-support-centre"],"wpsc_settings":["wp-support-centre"],"wpsc_status":["wp-support-centre"],"wpsc_templates":["wp-support-centre"],"wpsc_threads":["wp-support-centre"],"wpsc_threads_read":["wp-support-centre"],"wpsc_tickets":["wp-support-centre"],"wpsc_tickets_recurring":["wp-support-centre"],"globalcontentbybb":["global-content"],"tbank_conf":["timebank-system"],"tbank_exchange":["timebank-system"],"tbank_exchange_denegationtype":["timebank-system"],"tbank_exchange_manager":["timebank-system"],"tbank_exchange_statustype":["timebank-system"],"tbank_users":["timebank-system"],"tbank_users_alerttype":["timebank-system"],"tbank_users_statustype":["timebank-system"],"dietmaster":["dietmaster-pro-nutrition"],"rksheet_class":["emarksheet"],"rksheet_marks":["emarksheet"],"rksheet_setting":["emarksheet"],"rksheet_student":["emarksheet"],"rksheet_subject":["emarksheet"],"dynamicsync_settings":["dynamicsync"],"_categories":["weecomments"],"_comments":["weecomments"],"_comments_replies":["weecomments"],"_products":["weecomments"],"wpeuc_data":["wp-energy-usage-calculator"],"cf7_forms":["contact-form-7-round-robin-lead-distribution"],"cf7_mail":["contact-form-7-round-robin-lead-distribution"],"cf7_sent":["contact-form-7-round-robin-lead-distribution"],"cf7_users":["contact-form-7-round-robin-lead-distribution"],"idgm_games":["indiedev-game-marketer"],"idgm_tweets":["indiedev-game-marketer"],"all_in_one_post_ratings":["wp-category-tag-ratings"],"njt_fb_mess_categories":["fb-messenger-bulksender"],"njt_fb_mess_category_sender":["fb-messenger-bulksender"],"njt_fb_mess_pages":["fb-messenger-bulksender"],"njt_fb_mess_senders":["fb-messenger-bulksender"],"hkp_reactions_posts":["wp-reactions-box"],"wow_brmp":["border-menu"],"wpfilmlist_jre_list_dynamic_db_names":["wpfilmlist"],"wpfilmlist_jre_movie_quotes":["wpfilmlist"],"wpfilmlist_jre_saved_film_for_widget":["wpfilmlist"],"wpfilmlist_jre_saved_film_log":["wpfilmlist"],"wpfilmlist_jre_user_options":["wpfilmlist"],"wswl_product_list":["wc-simple-waiting-list"],"wswl_product_list_log":["wc-simple-waiting-list"],"team_bullet_list_ultimate_list":["bullet-list"],"team_bullet_list_ultimate_style":["bullet-list"],"profile_editor_fields":["profile-editor"],"wfs_configure":["webfontswordpressjsonwitheditor","webfontswordpressxmlwithouteditor","webfontswordpressxmlwitheditor"],"wfs_editor_fonts":["webfontswordpressjsonwitheditor","webfontswordpressxmlwitheditor"],"cubesliderconfig":["cube-slider"],"price_excel":["import-excel"],"feed_seo":["feed-seo"],"post_feed_seo":["feed-seo"],"perso_product_buy":["perso-recommendation-engine-for-woocommerce"],"perso_product_views":["perso-recommendation-engine-for-woocommerce"],"perso_visitor_views":["perso-recommendation-engine-for-woocommerce"],"mx_seo_actions":["matrixseo"],"mx_seo_history":["matrixseo"],"mx_seo_ignore":["matrixseo"],"mx_seo_urls":["matrixseo"],"password_log":["prevent-password-reuse"],"utt_classrooms":["unitimetable"],"utt_events":["unitimetable"],"utt_groups":["unitimetable"],"utt_holidays":["unitimetable"],"utt_lectures":["unitimetable"],"utt_lectures_view":["unitimetable"],"utt_periods":["unitimetable"],"utt_subjects":["unitimetable"],"utt_teachers":["unitimetable"],"xyz_wp_posts_filter":["wp-filter-posts"],"mm_providers":["scand-multi-mailer"],"agilepress_lookup_types":["agilepress"],"agilepress_lookup_values":["agilepress"],"wcwizard_posts":["word-count-wizard"],"plgbkup_config":["simple-backup-tool"],"utt_attribute_taxonomies":["ultimate-travel"],"obk_bookings":["oui-booking"],"obk_locations":["oui-booking"],"obk_modifyprice":["oui-booking"],"obk_modifyprice_bookings":["oui-booking"],"obk_modifyprice_spaces":["oui-booking"],"obk_options":["oui-booking"],"obk_spaces":["oui-booking"],"obk_texts":["oui-booking"],"obk_parameters":["oui-booking"],"obk_shortcodes":["oui-booking"],"cb_access":["wp-clickbank-vendor"],"cb_customers":["wp-clickbank-vendor"],"cb_transactions":["wp-clickbank-vendor"],"sumuixcareer":["career-work-with-us"],"traitwarelogins":["traitware-login-manager"],"traitwareusers":["traitware-login-manager"],"traitwareapprovals":["traitware-login-manager"],"requests":["playme"],"spark_gf_failed_submissions":["spark-gf-failed-submissions"],"spark_gf_failed_submissions_fields":["spark-gf-failed-submissions"],"external_url_as_post_featured_image_thumbnail__errors_log":["external-url-as-post-featured-image-thumbnail"],"userplace_cards":["userplace-member-subscription-restriction-payments"],"userplace_invoices":["userplace-member-subscription-restriction-payments"],"userplace_logs":["userplace-member-subscription-restriction-payments"],"advert_clicks":["adverts-click-tracker"],"adverts":["adverts-click-tracker"],"zdm_archives":["z-downloads"],"zdm_files":["z-downloads"],"zdm_files_rel":["z-downloads"],"zdm_log":["z-downloads"],"jpgw_trx":["woo-jenga-payment-gateway"],"ocob_form":["infocob-crm-forms"],"ocob_ws":["infocob-crm-forms"],"ocob_form_cf7":["infocob-crm-forms"],"ocob_form_ifb":["infocob-crm-forms"],"hieldon_logs":["wp-shieldon"],"hieldon_rule_list":["wp-shieldon"],"hieldon_sessions":["wp-shieldon"],"scheduled_mails":["woo-coupon-reminder"],"viwcr_statistics":["woo-coupon-reminder"],"notifyodoo_notifications":["notify-odoo"],"cbxpetition_signs":["cbxpetition"],"niwoosc_user_role_commission":["ni-woo-sales-commission"],"pnfpb_ic_subscribed_deviceids_web":["push-notification-for-post-and-buddypress"],"siff_settings":["sliced-invoices-formidable-forms"],"playlists_peertube":["embed-peertube-playlist"],"ratapay_splitter":["ratapay"],"wpesg_fields_mapping":["wp-esignature-by-esign-genie"],"wpesg_mapping_system":["wp-esignature-by-esign-genie"],"wpesg_owner_details":["wp-esignature-by-esign-genie"],"wpesg_party_mapping":["wp-esignature-by-esign-genie"],"wpesg_party_require_param":["wp-esignature-by-esign-genie"],"wpesg_template_response":["wp-esignature-by-esign-genie"],"zcostofgoods_product_cog":["cost-of-goods-manager-for-woocommerce"],"ncs_tax_rate":["studiocart"],"coatings":["eyewear-prescription-form"],"epf_properties":["eyewear-prescription-form"],"glasses":["eyewear-prescription-form"],"lens":["eyewear-prescription-form"],"farazsms_contacts":["farazsms-club"],"tencent_wordpress_tms_keyword_records":["tencentcloud-tms"],"checkrobin_logging":["checkrobin"],"checkrobin_settings":["checkrobin"],"checkrobin_tracking":["checkrobin"],"height":["matrimony"],"matri_bio":["matrimony"],"dozent_completes":["dozent"],"dozent_earnings":["dozent"],"dozent_enrols":["dozent"],"dozent_instructor_courses":["dozent"],"dozent_quiz_answers":["dozent"],"dozent_quiz_attempts":["dozent"],"dozent_quiz_question_options":["dozent"],"dozent_quiz_questions":["dozent"],"dozent_reviews":["dozent"],"dozent_withdrawal":["dozent"],"dozent_enrolls":["dozent"],"wpcivimrf_profile":["connector-civicrm-mcrestface"],"wpcmrf_core_call":["connector-civicrm-mcrestface"],"payall":["payall-online-odeme-sistemi"],"evergreen_content_logs":["evergreen-content-poster"],"evergreen_categories":["evergreen-content-poster"],"afaq_6310_category":["accordion-faq-for-elementor"],"afaq_6310_faq":["accordion-faq-for-elementor"],"afaq_6310_style":["accordion-faq-for-elementor"],"lupsonlinelinknetwerk":["lupsonline-link-netwerk"],"sm_images":["socialmark"],"acm_post_to_post":["atlas-content-modeler"],"dex_reservations":["cp-reservation-calendar"],"dex_reservations_discount_codes":["cp-reservation-calendar"],"reservation_calendars":["cp-reservation-calendar"],"reservation_calendars_data":["cp-reservation-calendar"],"gtabber":["wp-tabber-widget"],"metaapp_ads":["ads-easy-simple-for-ads-into-post"],"qcld_seo_help_scans":["seo-help"],"qcld_seo_help_urls_locations":["seo-help"],"sudo_users":["sudo-oauth"],"eewee_restaurant_devise":["eewee-restaurant-menu"],"eewee_restaurant_lang":["eewee-restaurant-menu"],"eewee_restaurant_lang_plat":["eewee-restaurant-menu"],"eewee_restaurant_menu":["eewee-restaurant-menu"],"eewee_restaurant_menu_composition":["eewee-restaurant-menu"],"eewee_restaurant_menu_type":["eewee-restaurant-menu"],"eewee_restaurant_plat":["eewee-restaurant-menu"],"eewee_restaurant_plat_categorie":["eewee-restaurant-menu"],"eewee_restaurant_taxe":["eewee-restaurant-menu"],"wdh_svwe_css":["synoptic-web-designer-best-design-tool"],"wdh_svwe_general_settings":["synoptic-web-designer-best-design-tool"],"wdh_svwe_history":["synoptic-web-designer-best-design-tool"],"wdh_svwe_settings":["synoptic-web-designer-best-design-tool"],"wdh_svwe_temporary_css":["synoptic-web-designer-best-design-tool"],"adsense_id":["adsense-revenue-sharing"],"adsense_settings":["adsense-revenue-sharing"],"dimbal_poll_manager_poll_question":["dimbal-poll-manager"],"dimbal_poll_manager_poll_response":["dimbal-poll-manager"],"dimbal_poll_manager_settings":["dimbal-poll-manager"],"dimbal_poll_manager_zone":["dimbal-poll-manager"],"dimbal_poll_manager_zone_item":["dimbal-poll-manager"],"insertagram_instances":["insertagram"],"insertagram_media":["insertagram"],"ydsts_agent_settings":["yds-support-ticket-system"],"ydsts_attachments":["yds-support-ticket-system"],"ydsts_category":["yds-support-ticket-system"],"ydsts_priority":["yds-support-ticket-system"],"ydsts_ticket":["yds-support-ticket-system"],"ydsts_ticket_thread":["yds-support-ticket-system"],"sendfeed":["sendfeed"],"sendfeed_lock":["sendfeed"],"sendfeed_logs":["sendfeed"],"wptofb":["wptofacebook"],"advert_logged":["advert"],"advert_payment":["advert"],"jcsp_category_permalinks":["jadedcoder-sticky-permalinks"],"jcsp_post_permalinks":["jadedcoder-sticky-permalinks"],"vstemplate_tc":["vstemplate-creator"],"cuv_log":["count-unique-visitors-widget"],"tr_result":["team-results-widget-displaying-scores-for-teams"],"tr_team":["team-results-widget-displaying-scores-for-teams"],"yaawp_nodes":["yaawp"],"adminnote":["admin-note"],"google_real_estate_map":["google-real-estate-maps"],"twitter_it_tinyurls":["twitter-it"],"rotating_ad":["rotating-ad"],"rotating_ad_groups":["rotating-ad"],"sbg":["search-box-google-par-jm-crea"],"iproperty_properties":["intellectual-property-basic"],"amazon_cache":["amazon-tools"],"amazon_lists":["amazon-tools"],"amazon_template_fields":["amazon-tools"],"amazon_templates":["amazon-tools"],"jsss_settings":["js-ss"],"jsss_stylesheet":["js-ss"],"cartpauj_pm_attachments":["devnia-pm-based-on-cartpauj-pm"],"cartpauj_pm_messages":["devnia-pm-based-on-cartpauj-pm"],"pluginsl_plagiary_search":["plagiary-search"],"simple_network_login_log":["simple-multisite-login-log"],"troll_comments":["trollguard"],"troll_log":["trollguard"],"affp_referrals":["affiliate-plus"],"pcx":["post-content-xmlrpc"],"lexicographer":["lexicographer"],"afm_list":["appointment-form-manager"],"movdb_movies":["movie-database"],"movdb_reservations":["movie-database"],"movdb_screenings":["movie-database"],"movdb_sources":["movie-database"],"scheduledthemes":["wp-scheduled-themes"],"feed_the_grid_streams":["feed-the-grid"],"mw_faktury":["fakturace"],"s_promo_hits":["simple-promo-code"],"dam_auction":["dutch-auction-masters"],"dam_bid":["dutch-auction-masters"],"dam_order":["dutch-auction-masters"],"dam_shipping_address":["dutch-auction-masters"],"hfpl_record":["hungred-feature-post-list"],"cuterecords":["bizarski-cute-records"],"cuterecords_tracks":["bizarski-cute-records"],"whatsapp_software":["whatsapp-subscription"],"spc_photos":["simple-photos-contest"],"spc_votes":["simple-photos-contest"],"pricingtableconfig":["triple-pricing-table"],"shared_article_subscriptions":["wl-article-adopter"],"credly_login_ids":["credly-login"],"w4c_widget":["widget4call"],"restrict_registration":["restrict-registration"],"sm_object_permissions":["wp-snakemember-integration"],"login_protection_auth_fail":["login-protection"],"sraf_ip":["super-refer-a-friend"],"bxgalinks":["google-analytics-link-builder"],"bxgastats":["google-analytics-link-builder"],"log_sessions":["separate-login"],"log_translate":["separate-login"],"log_users":["separate-login"],"azc_ffi_images":["azurecurve-floating-featured-image"],"liveshoutbox":["azurecurve-floating-featured-image"],"product_licenses":["wp-license-manager"],"engine":["ad-engine"],"gear":["runners-log"],"amd_recipeseo_ingredients":["recipeseo"],"amd_recipeseo_recipes":["recipeseo"],"netblog":["netblog"],"netblog_bibitem":["netblog"],"netblog_bibrefs":["netblog"],"netblog_bibrefs_rel_items":["netblog"],"netblog_caption":["netblog"],"netblog_ext":["netblog"],"netblog_footprint":["netblog"],"netblog_rel_extnd":["netblog"],"netblog_testpilot":["netblog"],"kvcodes_email":["kv-send-email-from-admin"],"ax_sidebar":["ax-sidebar"],"404_error_log_report_by_duo_leaf_log":["404-error-log-report-by-duo-leaf"],"ias_cntrs_base":["ias-countries"],"ias_cntrs_trans":["ias-countries"],"dwr_donations":["donate-with-robokassa"],"searchhistory":["user-recent-search-history"],"socialfeed_plugin_data":["social-feed"],"wpquiz_questions":["wpquiz"],"wpquiz_quiz":["wpquiz"],"lxt_jast_surveys":["jast-another-survey-tool"],"ajeadresse":["adresses-maps-pages-et-categories"],"iqamahtimes":["salah-world-prayer-iqamah-timings-for-your-masjids"],"pripre_book":["pripre"],"pripre_book_param":["pripre"],"pripre_book_post_param":["pripre"],"pripre_dist":["pripre"],"pripre_dist_cart":["pripre"],"pripre_dist_cart_buy":["pripre"],"pripre_dist_cart_item":["pripre"],"pripre_dist_log_download":["pripre"],"pripre_dist_tag":["pripre"],"pripre_dist_version":["pripre"],"pripre_post_param":["pripre"],"pripre_user_style":["pripre"],"google_reviews_on_pages":["nueve-solutions-google-places-reviews"],"rsv_rss":["rsv-rss-viewer"],"s3userdbinfo":["amazon-s3-simple-upload-form"],"wdl_pedigree_category":["lyons-barton-family-history-and-genealogy-pedigree-chart"],"wdl_pedigree_css":["lyons-barton-family-history-and-genealogy-pedigree-chart"],"wdl_pedigree_marriage":["lyons-barton-family-history-and-genealogy-pedigree-chart"],"wdl_pedigree_person":["lyons-barton-family-history-and-genealogy-pedigree-chart"],"affliate_url_cloacker":["custom-affiliate-links-cloaker"],"wpxapi_queue":["wp-experience-api"],"edc_en_quran":["quran-shortcode"],"edc_quran":["quran-shortcode"],"edc_suraames":["quran-shortcode"],"xero_auth":["invoice-sync-for-xero-and-wpecommerce"],"xero_history":["invoice-sync-for-xero-and-wpecommerce"],"nuceyt":["nuceyt-sayac-eklentisi"],"nuceyt_ayarlar":["nuceyt-sayac-eklentisi"],"nuceyt_log":["nuceyt-sayac-eklentisi"],"forzr_distances":["lazyeater"],"woocommerce_downloadable_product_emails_tld":["tld-woocommerce-downloadable-product-update-emails"],"idcard_users":["smart-id"],"totalsoft_evcal_eff_data":["event-calendars"],"totalsoft_evcal_eff_p1":["event-calendars"],"totalsoft_evcal_eff_p2":["event-calendars"],"totalsoft_evcal_events":["event-calendars"],"totalsoft_evcal_ids":["event-calendars"],"totalsoft_evcal_manager":["event-calendars"],"eflyermaker_forms_builder":["eflyermaker-sign-up-form-builder"],"eflyermaker_popup_form_options":["eflyermaker-sign-up-form-builder"],"draugiem_users":["draugiem-pase"],"bsk_files_manager_cats":["bsk-files-manager"],"bsk_files_manager_files":["bsk-files-manager"],"private_feed_keys":["private-feed-keys"],"mytext_link":["own-text-links"],"osc_locations":["fma-google-maps"],"zgmap_settings":["fma-google-maps"],"tejus_djcat":["tejus-add-cat-image"],"izeechat":["izeechat"],"anc_fields":["any-custom-field"],"dashylite":["dashylite"],"dashy_dashboard":["dashylite"],"gift_certificates":["gift-certificate-creator"],"f_a_link_performance":["fast-affiliate"],"rp_units":["rentpress"],"transients":["dedicated-transients"],"plnl_locations":["nearby-locations"],"plnl_sections":["nearby-locations"],"ajf_nl_locations":["nearby-locations"],"ajf_nl_sections":["nearby-locations"],"sp_login_details":["loginplus"],"snapcam":["wp-snapcam"],"salesmatelogs":["gf-salesmate-add-on"],"mactrak_customlines":["mactrak"],"mactrak_markers":["mactrak"],"mactrak_markertypes":["mactrak"],"mactrak_route":["mactrak"],"_tebravo_attemps":["bravo-security"],"_tebravo_firewall_actions":["bravo-security"],"_tebravo_scan_ps":["bravo-security"],"_tebravo_traffic":["bravo-security"],"rtr_courses":["training"],"rtr_email_templates":["training"],"rtr_enrollment":["training"],"rtr_lesson_notes":["training"],"rtr_lessons":["training"],"rtr_media":["training"],"rtr_modules":["training"],"rtr_project_exercise":["training"],"rtr_projects":["training"],"rtr_resource_list":["training"],"rtr_resource_status":["training"],"rtr_setting":["training"],"rtr_authors":["training"],"rtr_categories":["training"],"blope_donation_buttons":["bloks-stripe-donation"],"art_config":["art-picture-gallery"],"art_freigaben":["art-picture-gallery"],"art_galerie":["art-picture-gallery"],"art_images