WP-Optimize - Version 3.0.13

Version Description

  • 21/Oct/2019 =

  • FIX: Don't show VIEWs as corrupted database tables

  • TWEAK: Image compression - Cancel button now stops the compression process

  • TWEAK: Only show general notice when update notice isn't shown

  • TWEAK: Improve message when Gzip compression is already enabled

  • TWEAK: Premium - Use path to include lazy load script

  • TWEAK: Image compression - Use wp_remote_get() instead file_get_contents() for retrieving compressed images

  • TWEAK: Use wp_remote_get() instead file_get_contents() for retrieving compressed images

  • TWEAK: Cache feature - add a 'Purge all' cache button to the admin bar

  • TWEAK: Premium - Prevent php warning in scheduled optimisations list

  • TWEAK: Premium - Unused images feature - Add compatibility with Advanced Custom Fields (ACF) image and gallery fields

Download this release

Release Info

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

Code changes from version 3.0.12 to 3.0.13

Files changed (32) hide show
  1. cache/class-wpo-cache-rules.php +83 -2
  2. cache/class-wpo-page-cache.php +112 -25
  3. cache/file-based-page-cache-functions.php +13 -4
  4. css/{admin-3-0-12.min.css → admin-3-0-13.min.css} +1 -1
  5. css/{admin-3-0-12.min.css.map → admin-3-0-13.min.css.map} +1 -1
  6. css/{smush-3-0-12.min.css → smush-3-0-13.min.css} +1 -1
  7. css/{smush-3-0-12.min.css.map → smush-3-0-13.min.css.map} +1 -1
  8. css/wp-optimize-admin-3-0-12.min.css.map +0 -1
  9. css/{wp-optimize-admin-3-0-12.min.css → wp-optimize-admin-3-0-13.min.css} +2 -2
  10. css/wp-optimize-admin-3-0-13.min.css.map +1 -0
  11. css/wp-optimize-admin.css +10 -1
  12. css/{wp-optimize-notices-3-0-12.min.css → wp-optimize-notices-3-0-13.min.css} +1 -1
  13. css/{wp-optimize-notices-3-0-12.min.css.map → wp-optimize-notices-3-0-13.min.css.map} +1 -1
  14. includes/class-updraft-nitrosmush-task.php +11 -7
  15. includes/class-updraft-resmushit-task.php +10 -4
  16. includes/class-updraft-smush-manager.php +0 -1
  17. includes/class-updraft-smush-task.php +16 -0
  18. includes/class-wp-optimize-install-or-update-notice.php +18 -1
  19. includes/class-wp-optimize-updates.php +70 -0
  20. includes/wp-optimize-database-information.php +2 -0
  21. js/{cache-3-0-12.min.js → cache-3-0-13.min.js} +0 -0
  22. js/handlebars/handlebars.js +431 -620
  23. js/handlebars/handlebars.min.js +4 -4
  24. js/handlebars/handlebars.runtime.js +35 -16
  25. js/handlebars/handlebars.runtime.min.js +2 -2
  26. js/{queue-3-0-12.min.js → queue-3-0-13.min.js} +0 -0
  27. js/{wpoadmin-3-0-12.min.js → wpoadmin-3-0-13.min.js} +0 -0
  28. js/wposmush-3-0-12.min.js +0 -1
  29. js/wposmush-3-0-13.min.js +1 -0
  30. js/wposmush.js +8 -4
  31. languages/wp-optimize.pot +77 -57
  32. plugin.json +0 -1
cache/class-wpo-cache-rules.php CHANGED
@@ -41,15 +41,21 @@ class WPO_Cache_Rules {
41
  add_action('wp_trash_post', array($this, 'purge_post_on_update'), 10, 1);
42
  add_action('comment_post', array($this, 'purge_post_on_comment'), 10, 3);
43
  add_action('wp_set_comment_status', array($this, 'purge_post_on_comment_status_change'), 10, 1);
 
 
44
 
45
  /**
46
  * List of hooks for which when executed, the cache will be purged
47
  *
48
  * @param array $actions The actions
49
  */
50
- $purge_on_action = apply_filters('wpo_purge_cache_hooks', array('after_switch_theme', 'wp_update_nav_menu', 'customize_save_after', 'wp_ajax_save-widget'));
51
  foreach ($purge_on_action as $action) {
52
- add_action($action, array($this, 'purge_cache'));
 
 
 
 
53
  }
54
  }
55
 
@@ -106,12 +112,87 @@ class WPO_Cache_Rules {
106
  */
107
  if (apply_filters('wpo_purge_all_cache_on_update', false, $post_id)) {
108
  $this->purge_cache();
 
109
  } else {
110
  if (apply_filters('wpo_delete_cached_homepage_on_post_update', true, $post_id)) WPO_Page_Cache::delete_homepage_cache();
111
  WPO_Page_Cache::delete_single_post_cache($post_id);
112
  }
113
  }
114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  /**
116
  * Clears the cache.
117
  */
41
  add_action('wp_trash_post', array($this, 'purge_post_on_update'), 10, 1);
42
  add_action('comment_post', array($this, 'purge_post_on_comment'), 10, 3);
43
  add_action('wp_set_comment_status', array($this, 'purge_post_on_comment_status_change'), 10, 1);
44
+ add_action('edit_terms', array($this, 'purge_related_elements_on_term_updated'), 10, 2);
45
+ add_action('set_object_terms', array($this, 'purge_related_elements_on_post_terms_change'), 10, 6);
46
 
47
  /**
48
  * List of hooks for which when executed, the cache will be purged
49
  *
50
  * @param array $actions The actions
51
  */
52
+ $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)));
53
  foreach ($purge_on_action as $action) {
54
+ if (is_array($action)) {
55
+ add_action($action[0], array($this, 'purge_cache'), $action[1]);
56
+ } else {
57
+ add_action($action, array($this, 'purge_cache'));
58
+ }
59
  }
60
  }
61
 
112
  */
113
  if (apply_filters('wpo_purge_all_cache_on_update', false, $post_id)) {
114
  $this->purge_cache();
115
+ return;
116
  } else {
117
  if (apply_filters('wpo_delete_cached_homepage_on_post_update', true, $post_id)) WPO_Page_Cache::delete_homepage_cache();
118
  WPO_Page_Cache::delete_single_post_cache($post_id);
119
  }
120
  }
121
 
122
+ /**
123
+ * We use it with edit_terms action filter to purge cached elements related
124
+ * to updated term when term updated.
125
+ *
126
+ * @param int $term_id Term taxonomy ID.
127
+ * @param string $taxonomy Taxonomy slug.
128
+ */
129
+ public function purge_related_elements_on_term_updated($term_id, $taxonomy) {
130
+ // purge cached page for term.
131
+ $term = get_term($term_id, $taxonomy, ARRAY_A);
132
+ if (is_array($term)) {
133
+ $term_permalink = get_term_link($term['term_id']);
134
+ if (!is_wp_error($term_permalink)) {
135
+ WPO_Page_Cache::delete_cache_by_url($term_permalink, true);
136
+ }
137
+ }
138
+
139
+ // get posts which belongs to updated term.
140
+ $posts = get_posts(array(
141
+ 'numberposts' => -1,
142
+ 'post_type' => 'any',
143
+ 'fields' => 'ids',
144
+ 'tax_query' => array(
145
+ 'relation' => 'OR',
146
+ array(
147
+ 'taxonomy' => $taxonomy,
148
+ 'field' => 'term_id',
149
+ 'terms' => $term_id,
150
+ )
151
+ ),
152
+ ));
153
+
154
+ if (!empty($posts)) {
155
+ foreach ($posts as $post_id) {
156
+ WPO_Page_Cache::delete_single_post_cache($post_id);
157
+ }
158
+ }
159
+ }
160
+
161
+ /**
162
+ * Triggered by set_object_terms action. Used to clear all the terms archives a post belongs to or belonged to before being saved.
163
+ *
164
+ * @param int $object_id Object ID.
165
+ * @param array $terms An array of object terms.
166
+ * @param array $tt_ids An array of term taxonomy IDs.
167
+ * @param string $taxonomy Taxonomy slug.
168
+ * @param bool $append Whether to append new terms to the old terms.
169
+ * @param array $old_tt_ids Old array of term taxonomy IDs.
170
+ */
171
+ public function purge_related_elements_on_post_terms_change($object_id, $terms, $tt_ids, $taxonomy, $append, $old_tt_ids) {
172
+
173
+ $post_type = get_post_type($object_id);
174
+
175
+ if ((defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) || 'revision' === $post_type) {
176
+ return;
177
+ }
178
+
179
+ // get all affected terms.
180
+ $affected_terms_ids = array_unique(array_merge($tt_ids, $old_tt_ids));
181
+
182
+ if (!empty($affected_terms_ids)) {
183
+ // walk through all changed terms and purge cached pages for them.
184
+ foreach ($affected_terms_ids as $tt_id) {
185
+ $term = get_term($tt_id, $taxonomy, ARRAY_A);
186
+ if (!is_array($term)) continue;
187
+
188
+ $term_permalink = get_term_link($term['term_id']);
189
+ if (!is_wp_error($term_permalink)) {
190
+ WPO_Page_Cache::delete_cache_by_url($term_permalink, true);
191
+ }
192
+ }
193
+ }
194
+ }
195
+
196
  /**
197
  * Clears the cache.
198
  */
cache/class-wpo-page-cache.php CHANGED
@@ -138,13 +138,45 @@ class WPO_Page_Cache {
138
 
139
  if (!$this->is_enabled()) return;
140
 
 
 
141
  if (!is_admin() || 'post.php' == $pagenow) {
142
  $wp_admin_bar->add_menu(array(
143
  'id' => 'wpo_purge_cache',
144
- 'title' => 'Purge from cache',
145
- 'href' => add_query_arg('_wpo_purge', wp_create_nonce('wpo_purge_single_page_cache')),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
146
  'meta' => array(
147
- 'title' => __('Purge from cache', 'wp-optimize'),
148
  ),
149
  'parent' => false,
150
  ));
@@ -155,40 +187,90 @@ class WPO_Page_Cache {
155
  * Check if purge single page action sent and purge cache.
156
  */
157
  public function handle_purge_single_page_cache() {
158
- if (isset($_GET['wpo_cache_purged'])) {
159
- add_action('admin_notices', array($this, 'notice_purge_single_page_cache'));
 
 
 
 
 
 
 
 
160
  }
161
 
162
- if (!isset($_GET['_wpo_purge']) || !wp_verify_nonce($_GET['_wpo_purge'], 'wpo_purge_single_page_cache')) return;
 
 
 
163
 
164
- if (is_admin()) {
165
- $post = isset($_GET['post']) ? (int) $_GET['post'] : 0;
166
- if ($post > 0) {
167
- self::delete_single_post_cache($post);
 
 
 
168
  }
169
- } else {
170
- self::delete_cache_by_url(wpo_current_url());
 
 
 
 
 
 
 
 
 
171
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
 
173
- // remove nonce from url and reload page.
174
- wp_redirect(add_query_arg('wpo_cache_purged', true, remove_query_arg('_wpo_purge')));
175
- exit;
 
 
176
  }
177
 
178
  /**
179
- * Show notification when page cache purged.
180
  */
181
- public function notice_purge_single_page_cache() {
 
 
 
 
 
 
 
 
 
 
182
  ?>
183
- <div class="notice notice-success is-dismissible">
184
- <p><?php _e('The page cache was successfully purged.', 'wp-optimize'); ?></p>
185
  </div>
186
  <script>
187
  window.addEventListener('load', function() {
188
  (function(wp) {
189
  wp.data.dispatch('core/notices').createNotice(
190
- 'success',
191
- '<?php _e('The page cache was successfully purged.', 'wp-optimize'); ?>',
192
  {
193
  isDismissible: true,
194
  }
@@ -684,19 +766,24 @@ EOF;
684
  * Delete cached files for specific url.
685
  *
686
  * @param string $url
 
 
 
687
  */
688
- public static function delete_cache_by_url($url) {
689
- if (!defined('WPO_CACHE_FILES_DIR')) return;
690
 
691
  $path = trailingslashit(WPO_CACHE_FILES_DIR) . trailingslashit(wpo_get_url_path($url));
692
 
693
- wpo_delete_files($path, false);
694
  }
695
 
696
  /**
697
  * Delete cached files for single post.
698
  *
699
  * @param integer $post_id The post ID
 
 
700
  */
701
  public static function delete_single_post_cache($post_id) {
702
 
@@ -704,7 +791,7 @@ EOF;
704
 
705
  $path = trailingslashit(WPO_CACHE_FILES_DIR) . trailingslashit(wpo_get_url_path(get_permalink($post_id)));
706
 
707
- wpo_delete_files($path, false);
708
  }
709
 
710
  /**
138
 
139
  if (!$this->is_enabled()) return;
140
 
141
+ $act_url = remove_query_arg(array('wpo_single_page_cache_purged', 'wpo_all_pages_cache_purged'));
142
+
143
  if (!is_admin() || 'post.php' == $pagenow) {
144
  $wp_admin_bar->add_menu(array(
145
  'id' => 'wpo_purge_cache',
146
+ 'title' => __('Purge cache', 'wp-optimize'),
147
+ 'href' => '#',
148
+ 'meta' => array(
149
+ 'title' => __('Purge cache', 'wp-optimize'),
150
+ ),
151
+ 'parent' => false,
152
+ ));
153
+
154
+ $wp_admin_bar->add_node(array(
155
+ 'id' => 'wpo_purge_this_page_cache',
156
+ 'title' => __('Purge this page', 'wp-optimize'),
157
+ 'href' => add_query_arg('_wpo_purge', wp_create_nonce('wpo_purge_single_page_cache'), $act_url),
158
+ 'meta' => array(
159
+ 'title' => __('Purge this page', 'wp-optimize'),
160
+ ),
161
+ 'parent' => 'wpo_purge_cache',
162
+ ));
163
+
164
+ $wp_admin_bar->add_node(array(
165
+ 'id' => 'wpo_purge_all_pages_cache',
166
+ 'title' => __('Purge all pages', 'wp-optimize'),
167
+ 'href' => add_query_arg('_wpo_purge', wp_create_nonce('wpo_purge_all_pages_cache'), $act_url),
168
+ 'meta' => array(
169
+ 'title' => __('Purge all pages', 'wp-optimize'),
170
+ ),
171
+ 'parent' => 'wpo_purge_cache',
172
+ ));
173
+ } else {
174
+ $wp_admin_bar->add_menu(array(
175
+ 'id' => 'wpo_purge_cache',
176
+ 'title' => __('Purge all cache', 'wp-optimize'),
177
+ 'href' => add_query_arg('_wpo_purge', wp_create_nonce('wpo_purge_all_pages_cache'), $act_url),
178
  'meta' => array(
179
+ 'title' => __('Purge all cache', 'wp-optimize'),
180
  ),
181
  'parent' => false,
182
  ));
187
  * Check if purge single page action sent and purge cache.
188
  */
189
  public function handle_purge_single_page_cache() {
190
+ if (isset($_GET['wpo_single_page_cache_purged']) || isset($_GET['wpo_all_pages_cache_purged'])) {
191
+ if (isset($_GET['wpo_single_page_cache_purged'])) {
192
+ $notice_function = $_GET['wpo_single_page_cache_purged'] ? 'notice_purge_single_page_cache_success' : 'notice_purge_single_page_cache_error';
193
+ } else {
194
+ $notice_function = $_GET['wpo_all_pages_cache_purged'] ? 'notice_purge_all_pages_cache_success' : 'notice_purge_all_pages_cache_error';
195
+ }
196
+
197
+ add_action('admin_notices', array($this, $notice_function));
198
+
199
+ return;
200
  }
201
 
202
+ if (!isset($_GET['_wpo_purge'])) return;
203
+
204
+ if (wp_verify_nonce($_GET['_wpo_purge'], 'wpo_purge_single_page_cache')) {
205
+ $success = false;
206
 
207
+ if (is_admin()) {
208
+ $post = isset($_GET['post']) ? (int) $_GET['post'] : 0;
209
+ if ($post > 0) {
210
+ $success = self::delete_single_post_cache($post);
211
+ }
212
+ } else {
213
+ $success = self::delete_cache_by_url(wpo_current_url());
214
  }
215
+
216
+ // remove nonce from url and reload page.
217
+ wp_redirect(add_query_arg('wpo_single_page_cache_purged', $success, remove_query_arg('_wpo_purge')));
218
+ exit;
219
+
220
+ } elseif (wp_verify_nonce($_GET['_wpo_purge'], 'wpo_purge_all_pages_cache')) {
221
+ $success = self::purge();
222
+
223
+ // remove nonce from url and reload page.
224
+ wp_redirect(add_query_arg('wpo_all_pages_cache_purged', $success, remove_query_arg('_wpo_purge')));
225
+ exit;
226
  }
227
+ }
228
+
229
+ /**
230
+ * Show notification when page cache purged successfully.
231
+ */
232
+ public function notice_purge_single_page_cache_success() {
233
+ $this->show_notice(__('The page cache was successfully purged.', 'wp-optimize'), 'success');
234
+ }
235
+
236
+ /**
237
+ * Show notification when page cache wasn't purged.
238
+ */
239
+ public function notice_purge_single_page_cache_error() {
240
+ $this->show_notice(__('The page cache was not purged.', 'wp-optimize'), 'error');
241
+ }
242
 
243
+ /**
244
+ * Show notification when all pages cache purged successfully.
245
+ */
246
+ public function notice_purge_all_pages_cache_success() {
247
+ $this->show_notice(__('All pages cache was successfully purged.', 'wp-optimize'), 'success');
248
  }
249
 
250
  /**
251
+ * Show notification when all pages cache wasn't purged.
252
  */
253
+ public function notice_purge_all_pages_cache_error() {
254
+ $this->show_notice(__('All pages cache was not purged.', 'wp-optimize'), 'error');
255
+ }
256
+
257
+ /**
258
+ * Show notification in WordPress admin.
259
+ *
260
+ * @param string $message HTML (no further escaping is performed)
261
+ * @param string $type error, warning, success, or info
262
+ */
263
+ public function show_notice($message, $type) {
264
  ?>
265
+ <div class="notice notice-<?php echo $type; ?> is-dismissible">
266
+ <p><?php echo $message; ?></p>
267
  </div>
268
  <script>
269
  window.addEventListener('load', function() {
270
  (function(wp) {
271
  wp.data.dispatch('core/notices').createNotice(
272
+ '<?php echo $type; ?>',
273
+ '<?php echo $message; ?>',
274
  {
275
  isDismissible: true,
276
  }
766
  * Delete cached files for specific url.
767
  *
768
  * @param string $url
769
+ * @param bool $recursive If true child elements will deleted too
770
+ *
771
+ * @return bool
772
  */
773
+ public static function delete_cache_by_url($url, $recursive = false) {
774
+ if (!defined('WPO_CACHE_FILES_DIR') || '' == $url) return;
775
 
776
  $path = trailingslashit(WPO_CACHE_FILES_DIR) . trailingslashit(wpo_get_url_path($url));
777
 
778
+ return wpo_delete_files($path, $recursive);
779
  }
780
 
781
  /**
782
  * Delete cached files for single post.
783
  *
784
  * @param integer $post_id The post ID
785
+ *
786
+ * @return bool
787
  */
788
  public static function delete_single_post_cache($post_id) {
789
 
791
 
792
  $path = trailingslashit(WPO_CACHE_FILES_DIR) . trailingslashit(wpo_get_url_path(get_permalink($post_id)));
793
 
794
+ return wpo_delete_files($path, false);
795
  }
796
 
797
  /**
cache/file-based-page-cache-functions.php CHANGED
@@ -683,6 +683,7 @@ function wpo_delete_files($src, $recursive = true) {
683
  }
684
 
685
  $success = true;
 
686
 
687
  if ($recursive) {
688
  // N.B. If opendir() fails, then a false positive (i.e. true) will be returned
@@ -707,20 +708,28 @@ function wpo_delete_files($src, $recursive = true) {
707
  }
708
  closedir($dir);
709
  }
710
-
711
- // Success of this operation is not recorded; we only ultimately care about emptying, not removing entirely (empty folders in our context are harmless)
712
- rmdir($src);
713
  } else {
714
  // Not recursive, so we only delete the files
715
  $files = scandir($src);
716
  foreach ($files as $file) {
717
- if (is_dir($src . '/' . $file) || '.' == $file || '..' == $file) continue;
 
 
 
 
 
 
718
  if (!unlink($src . '/' . $file)) {
719
  $success = false;
720
  }
721
  }
722
  }
723
 
 
 
 
 
 
724
  // delete cached information about cache size.
725
  WP_Optimize()->get_page_cache()->delete_cache_size_information();
726
 
683
  }
684
 
685
  $success = true;
686
+ $has_dir = false;
687
 
688
  if ($recursive) {
689
  // N.B. If opendir() fails, then a false positive (i.e. true) will be returned
708
  }
709
  closedir($dir);
710
  }
 
 
 
711
  } else {
712
  // Not recursive, so we only delete the files
713
  $files = scandir($src);
714
  foreach ($files as $file) {
715
+ if ('.' == $file || '..' == $file) continue;
716
+
717
+ if (is_dir($src . '/' . $file)) {
718
+ $has_dir = true;
719
+ continue;
720
+ }
721
+
722
  if (!unlink($src . '/' . $file)) {
723
  $success = false;
724
  }
725
  }
726
  }
727
 
728
+ if ($success && !$has_dir) {
729
+ // Success of this operation is not recorded; we only ultimately care about emptying, not removing entirely (empty folders in our context are harmless)
730
+ rmdir($src);
731
+ }
732
+
733
  // delete cached information about cache size.
734
  WP_Optimize()->get_page_cache()->delete_cache_size_information();
735
 
css/{admin-3-0-12.min.css → admin-3-0-13.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}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{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}#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:5px;display:block;margin-bottom:5px;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_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{margin-bottom:15px}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-0-12.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}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{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}#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:5px;display:block;margin-bottom:5px;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_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{margin-bottom:15px}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-0-13.min.css.map */
css/{admin-3-0-12.min.css.map → admin-3-0-13.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;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,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;;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,mBAAmB;CACnB,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;;;CAGC,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;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-0-12.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.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\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 {\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#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: 5px;\n\tdisplay: block;\n\tmargin-bottom: 5px;\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_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\tmargin-bottom: 15px;\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}"]}
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;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,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;;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,mBAAmB;CACnB,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;;;CAGC,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;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-0-13.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.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\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 {\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#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: 5px;\n\tdisplay: block;\n\tmargin-bottom: 5px;\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_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\tmargin-bottom: 15px;\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}"]}
css/{smush-3-0-12.min.css → smush-3-0-13.min.css} RENAMED
@@ -1,2 +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}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 .toggle-smush-advanced{cursor:pointer;text-decoration:underline;color:#0088bc}.wpo-fieldgroup .button.toggle-smush-advanced{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.toggle-smush-advanced span.dashicons{text-decoration:none;font-size:16px;height:16px;vertical-align:middle;color:#444;transition:.2s all}.wpo-fieldgroup .toggle-smush-advanced span.text{background:#f2f4f4;z-index:1;position:relative;padding-right:5px}.wpo-fieldgroup .button.toggle-smush-advanced:hover,.wpo-fieldgroup .button.toggle-smush-advanced:focus{background:transparent}.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-show{display:inline-block}.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-hide{display:none}.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-show{display:none}.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-hide{display:inline-block}.wpo-fieldgroup .button.toggle-smush-advanced.opened::before{content:'';border-top:1px solid #CCC;width:100%;position:absolute;top:16px;left:0}.wpo-fieldgroup .button.toggle-smush-advanced.opened span.dashicons{transform:rotate(180deg)}.wpo-fieldgroup .smush-advanced{display:none}.wpo-fieldgroup .button.toggle-smush-advanced.opened+.smush-advanced{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 .toggle-smush-advanced{cursor:pointer;display:block;clear:both;margin-top:10px;margin-bottom:10px}#smush-metabox-inside-wrapper .toggle-smush-advanced:not(.opened) ~ .smush-advanced{display:none}#smush-metabox-inside-wrapper .toggle-smush-advanced.opened ~ .smush-advanced{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}.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}}
2
- /*# sourceMappingURL=smush-3-0-12.min.css.map */
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}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 .toggle-smush-advanced{cursor:pointer;text-decoration:underline;color:#0088bc}.wpo-fieldgroup .button.toggle-smush-advanced{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.toggle-smush-advanced span.dashicons{text-decoration:none;font-size:16px;height:16px;vertical-align:middle;color:#444;transition:.2s all}.wpo-fieldgroup .toggle-smush-advanced span.text{background:#f2f4f4;z-index:1;position:relative;padding-right:5px}.wpo-fieldgroup .button.toggle-smush-advanced:hover,.wpo-fieldgroup .button.toggle-smush-advanced:focus{background:transparent}.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-show{display:inline-block}.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-hide{display:none}.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-show{display:none}.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-hide{display:inline-block}.wpo-fieldgroup .button.toggle-smush-advanced.opened::before{content:'';border-top:1px solid #CCC;width:100%;position:absolute;top:16px;left:0}.wpo-fieldgroup .button.toggle-smush-advanced.opened span.dashicons{transform:rotate(180deg)}.wpo-fieldgroup .smush-advanced{display:none}.wpo-fieldgroup .button.toggle-smush-advanced.opened+.smush-advanced{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 .toggle-smush-advanced{cursor:pointer;display:block;clear:both;margin-top:10px;margin-bottom:10px}#smush-metabox-inside-wrapper .toggle-smush-advanced:not(.opened) ~ .smush-advanced{display:none}#smush-metabox-inside-wrapper .toggle-smush-advanced.opened ~ .smush-advanced{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}.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}}
2
+ /*# sourceMappingURL=smush-3-0-13.min.css.map */
css/{smush-3-0-12.min.css.map → smush-3-0-13.min.css.map} RENAMED
@@ -1 +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;;AAED;CACC,YAAY;CACZ,2BAA2B;CAC3B,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,QAAQ;CACR;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,cAAc;CACd;;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;;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","file":"smush-3-0-12.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\nspan.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 .toggle-smush-advanced {\n\tcursor: pointer;\n\ttext-decoration: underline;\n\tcolor: #0088BC;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced {\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.toggle-smush-advanced 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 .toggle-smush-advanced span.text {\n\tbackground: #F2F4F4;\n\tz-index: 1;\n\tposition: relative;\n\tpadding-right: 5px;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced:hover,\n.wpo-fieldgroup .button.toggle-smush-advanced:focus {\n\tbackground: transparent;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-show {\n\tdisplay: inline-block;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-hide {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-show {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-hide {\n\tdisplay: inline-block;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.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.toggle-smush-advanced.opened span.dashicons {\n\ttransform: rotate(180deg);\n}\n\n.wpo-fieldgroup .smush-advanced {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened + .smush-advanced {\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 .toggle-smush-advanced {\n\tcursor: pointer;\n\tdisplay: block;\n\tclear: both;\n\tmargin-top: 10px;\n\tmargin-bottom: 10px;\n}\n\n#smush-metabox-inside-wrapper .toggle-smush-advanced:not(.opened) ~ .smush-advanced {\n\tdisplay: none;\n}\n\n#smush-metabox-inside-wrapper .toggle-smush-advanced.opened ~ .smush-advanced {\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/**\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"]}
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,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;;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","file":"smush-3-0-13.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\nspan.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 .toggle-smush-advanced {\n\tcursor: pointer;\n\ttext-decoration: underline;\n\tcolor: #0088BC;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced {\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.toggle-smush-advanced 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 .toggle-smush-advanced span.text {\n\tbackground: #F2F4F4;\n\tz-index: 1;\n\tposition: relative;\n\tpadding-right: 5px;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced:hover,\n.wpo-fieldgroup .button.toggle-smush-advanced:focus {\n\tbackground: transparent;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-show {\n\tdisplay: inline-block;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced .toggle-smush-advanced__text-hide {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-show {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened .toggle-smush-advanced__text-hide {\n\tdisplay: inline-block;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.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.toggle-smush-advanced.opened span.dashicons {\n\ttransform: rotate(180deg);\n}\n\n.wpo-fieldgroup .smush-advanced {\n\tdisplay: none;\n}\n\n.wpo-fieldgroup .button.toggle-smush-advanced.opened + .smush-advanced {\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 .toggle-smush-advanced {\n\tcursor: pointer;\n\tdisplay: block;\n\tclear: both;\n\tmargin-top: 10px;\n\tmargin-bottom: 10px;\n}\n\n#smush-metabox-inside-wrapper .toggle-smush-advanced:not(.opened) ~ .smush-advanced {\n\tdisplay: none;\n}\n\n#smush-metabox-inside-wrapper .toggle-smush-advanced.opened ~ .smush-advanced {\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/**\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"]}
css/wp-optimize-admin-3-0-12.min.css.map DELETED
@@ -1 +0,0 @@
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/_image-list.scss","css/scss/_plugin-family-tab.scss","css/scss/_table-sorter.scss","css/scss/_cache.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;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,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;;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,mBAAmB;CACnB,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;;;CAGC,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;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;;AChjBD;;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;;CAsLd;;AApLA;;CAVD;EAWE,cAAc;EAmLf;CAlLC;;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;EAYZ;CAXC;;AACD;;CAJD;EAKE,QAAQ;EACR,UAAU;EAQX;CAPC;;AACD;;CARD;EASE,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;;AChSD,mBAAmB;;AAGnB,aAAa;;AAKX;;CADD;EAEE,eAAe;EACf,YAAY;EAEb;CADC;;AAGF;EACC,eAAY;CACZ;;AAED;;EAEC,eAAe;EACf,gBAAgB;CAChB;;AAGF;CACC,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;CAIjB;;AAHA;;CALD;EAME,kBAAkB;EAEnB;CADC;;AAGF,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;CA2Bd;;AAzBA;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;;AAID;CACC,oBAAoB;CACpB;;AAGF,kBAAkB;;AAGjB;EACC,mBAAmB;EACnB,sBAAsB;EACtB,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,uBAAuB;;EAmFvB;;AAjFA,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;;AAIF;GACC,iDAAgE;GAChE;;AAIF;EACC,eAAe;EACf,YAAY;EAQZ;;AAPA;GACC,eAAe;GACf,uBAAuB;GACvB;;AACD;CACC,kBAAkB;CAClB;;AAGF;EACC,eAAe;EACf;;AAIF,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;;ACzVD,UAAU;;AAEV;IACI,iBAAiB;CACpB,oBAAoB;CACpB,mBAAmB;CA8JnB;;AA5JA;;;;EAIC,aAAa;EACb,wBAAwB;EACxB,UAAU;EACV,kCAAkC;EAClC,kBAAkB;EAClB,eAAgB;EAwBhB;;AAtBA;GACC,eAAe;GACf,eAAe;GACf,eAA0B;GAC1B,gBAAgB;GAChB,YAAY;GACZ,aAAa;GACb;;AAED;GACC,sBAAsB;GACtB,iBAAiB;GACjB,aAAa;GACb,gBAAgB;GAChB,oBAAqB;GACrB,eAAe;GACf,mBAAmB;GACnB,YAAY;GACZ,iBAAiB;GACjB,0BAA0B;GAC1B,sBAAsB;GACtB;;AAGF;;;;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;;AAMH,yBAAyB;;AAEzB;IACI,YAAY;IACZ,iBAAiB;IACjB,wCAAsB;IACtB,iBAAiB;IACjB,YAAY;IACZ,aAAa;CAChB;;ACzbD,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;OAAlB,uBAAkB;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;CACtB;;AAGD,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;;AC9OD,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;;AAID;IACE,YAAY;IACZ,mBAAmB;IACnB,cAAc;IACd,kBAAkB;IAClB,iBAAiB;IACjB,oBAAoB;GACrB;;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;GAClB","file":"wp-optimize-admin-3-0-12.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/image-list\";\n\n@import \"scss/plugin-family-tab\";\n\n@import \"scss/table-sorter\";\n\n@import \"scss/cache\";",".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.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\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 {\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#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: 5px;\n\tdisplay: block;\n\tmargin-bottom: 5px;\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_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\tmargin-bottom: 15px;\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}","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: 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.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","/* 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\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\t@media (min-width: $breakpoint-small) {\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 {\n\t\tfont-size: inherit;\n\t\tbackground: #d8dbdc;\n\t\tborder-radius: 3px;\n\t}\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\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}\n\n\t.wpo-fieldgroup > .switch-container:first-child {\n\t\tpadding-top: 0;\n\t}\n\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}","/* 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.premium-only {\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\tbackground: $wp-blue;\n\t\t\tline-height: 1;\n\t\t\tborder-radius: 3px;\n\t\t\tcolor: #FFF;\n\t\t\tfont-weight: 300;\n\t\t\ttext-transform: uppercase;\n\t\t\tletter-spacing: .06em;\n\t\t}\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\n/* Admin bar separator */\n\n#wpadminbar .quicklinks .menupop.hover ul li.separator .ab-item.ab-empty-item {\n height: 2px;\n line-height: 2px;\n background: #ffffff17;\n margin: 5px 10px;\n width: auto;\n min-width: 0;\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_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 {\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}\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#wp-optimize-nav-tab-wpo_cache-advanced-contents {\n textarea {\n width: 100%;\n border-radius: 5px;\n height: 100px;\n min-height: 100px;\n margin-top: 10px;\n margin-bottom: 10px;\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 }\n}"]}
 
css/{wp-optimize-admin-3-0-12.min.css → wp-optimize-admin-3-0-13.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}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{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}#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:5px;display:block;margin-bottom:5px;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_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{margin-bottom:15px}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:46px}}@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)}}@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}.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){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{font-size:inherit;background:#d8dbdc;border-radius:3px}.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: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 .wpo-fieldgroup>.switch-container:first-child{padding-top:0}.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}#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.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover span.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus span.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active span.premium-only{display:inline-block;margin-left:6px;padding:4px;font-size:10px;background:#0272aa;line-height:1;border-radius:3px;color:#FFF;font-weight:300;text-transform:uppercase;letter-spacing:.06em}#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}}#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}.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;-moz-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_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_smush_images_grid .wpo-fieldgroup{width:100%;margin:4px}#wpo_unused_images 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-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}#wp-optimize-nav-tab-wpo_cache-advanced-contents textarea{width:100%;border-radius:5px;height:100px;min-height:100px;margin-top:10px;margin-bottom:10px}#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}
2
- /*# sourceMappingURL=wp-optimize-admin-3-0-12.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}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{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}#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:5px;display:block;margin-bottom:5px;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_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{margin-bottom:15px}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:46px}}@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)}}@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}.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){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{font-size:inherit;background:#d8dbdc;border-radius:3px}.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: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 .wpo-fieldgroup>.switch-container:first-child{padding-top:0}.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}#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.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:hover span.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus span.premium-only,#wp-optimize-wrap h2.nav-tab-wrapper .nav-tab:focus:active span.premium-only{display:inline-block;margin-left:6px;padding:4px;font-size:10px;background:#0272aa;line-height:1;border-radius:3px;color:#FFF;font-weight:300;text-transform:uppercase;letter-spacing:.06em}#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}}#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}.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;-moz-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_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_smush_images_grid .wpo-fieldgroup{width:100%;margin:4px}#wpo_unused_images 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-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}#wp-optimize-nav-tab-wpo_cache-advanced-contents textarea{width:100%;border-radius:5px;height:100px;min-height:100px;margin-top:10px;margin-bottom:10px}#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}.wpo-gzip-already-enabled span.dashicons.dashicons-yes{font-size:40px;width:40px;height:40px;line-height:40px;vertical-align:middle;color:green}
2
+ /*# sourceMappingURL=wp-optimize-admin-3-0-13.min.css.map */
css/wp-optimize-admin-3-0-13.min.css.map ADDED
@@ -0,0 +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/_image-list.scss","css/scss/_plugin-family-tab.scss","css/scss/_table-sorter.scss","css/scss/_cache.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;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,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;;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,mBAAmB;CACnB,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;;;CAGC,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;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;;AChjBD;;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;;CAsLd;;AApLA;;CAVD;EAWE,cAAc;EAmLf;CAlLC;;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;EAYZ;CAXC;;AACD;;CAJD;EAKE,QAAQ;EACR,UAAU;EAQX;CAPC;;AACD;;CARD;EASE,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;;AChSD,mBAAmB;;AAGnB,aAAa;;AAKX;;CADD;EAEE,eAAe;EACf,YAAY;EAEb;CADC;;AAGF;EACC,eAAY;CACZ;;AAED;;EAEC,eAAe;EACf,gBAAgB;CAChB;;AAGF;CACC,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;CAIjB;;AAHA;;CALD;EAME,kBAAkB;EAEnB;CADC;;AAGF,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;CA2Bd;;AAzBA;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;;AAID;CACC,oBAAoB;CACpB;;AAGF,kBAAkB;;AAGjB;EACC,mBAAmB;EACnB,sBAAsB;EACtB,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,uBAAuB;;EAmFvB;;AAjFA,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;;AAIF;GACC,iDAAgE;GAChE;;AAIF;EACC,eAAe;EACf,YAAY;EAQZ;;AAPA;GACC,eAAe;GACf,uBAAuB;GACvB;;AACD;CACC,kBAAkB;CAClB;;AAGF;EACC,eAAe;EACf;;AAIF,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;;ACzVD,UAAU;;AAEV;IACI,iBAAiB;CACpB,oBAAoB;CACpB,mBAAmB;CA8JnB;;AA5JA;;;;EAIC,aAAa;EACb,wBAAwB;EACxB,UAAU;EACV,kCAAkC;EAClC,kBAAkB;EAClB,eAAgB;EAwBhB;;AAtBA;GACC,eAAe;GACf,eAAe;GACf,eAA0B;GAC1B,gBAAgB;GAChB,YAAY;GACZ,aAAa;GACb;;AAED;GACC,sBAAsB;GACtB,iBAAiB;GACjB,aAAa;GACb,gBAAgB;GAChB,oBAAqB;GACrB,eAAe;GACf,mBAAmB;GACnB,YAAY;GACZ,iBAAiB;GACjB,0BAA0B;GAC1B,sBAAsB;GACtB;;AAGF;;;;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;;AAMH,yBAAyB;;AAEzB;IACI,YAAY;IACZ,iBAAiB;IACjB,wCAAsB;IACtB,iBAAiB;IACjB,YAAY;IACZ,aAAa;CAChB;;ACzbD,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;OAAlB,uBAAkB;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;CACtB;;AAGD,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;;AC9OD,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;;AAID;IACE,YAAY;IACZ,mBAAmB;IACnB,cAAc;IACd,kBAAkB;IAClB,iBAAiB;IACjB,oBAAoB;GACrB;;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;GAClB;;AAGH;EACE,gBAAgB;EAChB,YAAY;EACZ,aAAa;EACb,kBAAkB;EAClB,uBAAuB;EACvB,aAAa;CACd","file":"wp-optimize-admin-3-0-13.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/image-list\";\n\n@import \"scss/plugin-family-tab\";\n\n@import \"scss/table-sorter\";\n\n@import \"scss/cache\";",".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.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\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 {\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#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: 5px;\n\tdisplay: block;\n\tmargin-bottom: 5px;\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_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\tmargin-bottom: 15px;\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}","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: 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.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","/* 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\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\t@media (min-width: $breakpoint-small) {\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 {\n\t\tfont-size: inherit;\n\t\tbackground: #d8dbdc;\n\t\tborder-radius: 3px;\n\t}\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\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}\n\n\t.wpo-fieldgroup > .switch-container:first-child {\n\t\tpadding-top: 0;\n\t}\n\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}","/* 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.premium-only {\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\tbackground: $wp-blue;\n\t\t\tline-height: 1;\n\t\t\tborder-radius: 3px;\n\t\t\tcolor: #FFF;\n\t\t\tfont-weight: 300;\n\t\t\ttext-transform: uppercase;\n\t\t\tletter-spacing: .06em;\n\t\t}\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\n/* Admin bar separator */\n\n#wpadminbar .quicklinks .menupop.hover ul li.separator .ab-item.ab-empty-item {\n height: 2px;\n line-height: 2px;\n background: #ffffff17;\n margin: 5px 10px;\n width: auto;\n min-width: 0;\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_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 {\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}\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#wp-optimize-nav-tab-wpo_cache-advanced-contents {\n textarea {\n width: 100%;\n border-radius: 5px;\n height: 100px;\n min-height: 100px;\n margin-top: 10px;\n margin-bottom: 10px;\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 }\n}\n\n.wpo-gzip-already-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"]}
css/wp-optimize-admin.css CHANGED
@@ -2330,4 +2330,13 @@ textarea.cache-settings {
2330
 
2331
  #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 {
2332
  font-weight: 600;
2333
- }
 
 
 
 
 
 
 
 
 
2330
 
2331
  #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 {
2332
  font-weight: 600;
2333
+ }
2334
+
2335
+ .wpo-gzip-already-enabled span.dashicons.dashicons-yes {
2336
+ font-size: 40px;
2337
+ width: 40px;
2338
+ height: 40px;
2339
+ line-height: 40px;
2340
+ vertical-align: middle;
2341
+ color: green;
2342
+ }
css/{wp-optimize-notices-3-0-12.min.css → wp-optimize-notices-3-0-13.min.css} RENAMED
@@ -1,2 +1,2 @@
1
  .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] .notice{margin-left:0;margin-right:0}.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_advert_content_left{float:none;width:65px}.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-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}@media screen and (min-width:560px){.updraft_notice_container{-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center}}@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}}
2
- /*# sourceMappingURL=wp-optimize-notices-3-0-12.min.css.map */
1
  .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] .notice{margin-left:0;margin-right:0}.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_advert_content_left{float:none;width:65px}.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-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}@media screen and (min-width:560px){.updraft_notice_container{-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center}}@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}}
2
+ /*# sourceMappingURL=wp-optimize-notices-3-0-13.min.css.map */
css/{wp-optimize-notices-3-0-12.min.css.map → wp-optimize-notices-3-0-13.min.css.map} RENAMED
@@ -1 +1 @@
1
- {"version":3,"sources":["css/wp-optimize-notices.css"],"names":[],"mappings":"AAAA,qBAAqB;;AAErB;;CAEC,iBAAiB;CACjB,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED,+CAA+C;;AAE/C;;CAEC,eAAe;CACf,gBAAgB;CAChB;;AAED;;;;;;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,YAAY;CACZ,YAAY;CACZ;;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,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;;CAEC;EACC,wBAAoB;MAApB,oBAAoB;EAEpB,uBAAuB;EACvB,oBAAoB;EACpB;;CAED;;AAED;;CAEC;;EAEC,oBAAoB;EACpB,mBAAmB;EACnB;;CAED;;AAED;;CAEC;;EAEC,gBAAgB;EAChB;;CAED","file":"wp-optimize-notices-3-0-12.min.css","sourcesContent":["/* 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] .notice,\nbody[class*=wp-optimize] .notice {\n\tmargin-left: 0;\n\tmargin-right: 0;\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_advert_content_left {\n\tfloat: none;\n\twidth: 65px;\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-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@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}\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"]}
1
+ {"version":3,"sources":["css/wp-optimize-notices.css"],"names":[],"mappings":"AAAA,qBAAqB;;AAErB;;CAEC,iBAAiB;CACjB,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED,+CAA+C;;AAE/C;;CAEC,eAAe;CACf,gBAAgB;CAChB;;AAED;;;;;;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,YAAY;CACZ,YAAY;CACZ;;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,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;;CAEC;EACC,wBAAoB;MAApB,oBAAoB;EAEpB,uBAAuB;EACvB,oBAAoB;EACpB;;CAED;;AAED;;CAEC;;EAEC,oBAAoB;EACpB,mBAAmB;EACnB;;CAED;;AAED;;CAEC;;EAEC,gBAAgB;EAChB;;CAED","file":"wp-optimize-notices-3-0-13.min.css","sourcesContent":["/* 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] .notice,\nbody[class*=wp-optimize] .notice {\n\tmargin-left: 0;\n\tmargin-right: 0;\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_advert_content_left {\n\tfloat: none;\n\twidth: 65px;\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-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@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}\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"]}
includes/class-updraft-nitrosmush-task.php CHANGED
@@ -138,16 +138,20 @@ class Nitro_Smush_Task extends Updraft_Smush_Task {
138
  return false;
139
  }
140
 
141
- $compressed_image = file_get_contents($data->result_file);
142
-
143
- if ($compressed_image) {
144
- return $compressed_image;
 
 
 
 
 
 
145
  } else {
146
  $this->fail("invalid_response", "The compression apparently succeeded, but WP-Optimize could not retrieve the compressed image from the remote server.");
147
  $this->log("data: ".json_encode($data));
148
- if (!empty($http_response_header) && is_array($http_response_header)) {
149
- $this->log("headers: ".implode("\n", $http_response_header));
150
- }
151
  return false;
152
  }
153
  }
138
  return false;
139
  }
140
 
141
+ $compressed_image_response = wp_remote_get($data->result_file);
142
+
143
+ if (!is_wp_error($compressed_image_response)) {
144
+ $image_contents = wp_remote_retrieve_body($compressed_image_response);
145
+ if ($this->is_downloaded_image_buffer_mime_type_valid($image_contents)) {
146
+ return $image_contents;
147
+ } else {
148
+ $this->log("The downloaded resource does not have a matching mime type.");
149
+ return false;
150
+ }
151
  } else {
152
  $this->fail("invalid_response", "The compression apparently succeeded, but WP-Optimize could not retrieve the compressed image from the remote server.");
153
  $this->log("data: ".json_encode($data));
154
+ $this->log("response: ".json_encode($compressed_image_response));
 
 
155
  return false;
156
  }
157
  }
includes/class-updraft-resmushit-task.php CHANGED
@@ -149,10 +149,16 @@ class Re_Smush_It_Task extends Updraft_Smush_Task {
149
  return false;
150
  }
151
 
152
- $compressed_image = file_get_contents($data->dest);
153
-
154
- if ($compressed_image) {
155
- return $compressed_image;
 
 
 
 
 
 
156
  } else {
157
  $this->fail("invalid_response", "The compression apparently succeeded, but WP-Optimize could not retrieve the compressed image from the remote server.");
158
  $this->log("data: ".json_encode($data));
149
  return false;
150
  }
151
 
152
+ $compressed_image_response = wp_remote_get($data->dest);
153
+
154
+ if (!is_wp_error($compressed_image_response)) {
155
+ $image_contents = wp_remote_retrieve_body($compressed_image_response);
156
+ if ($this->is_downloaded_image_buffer_mime_type_valid($image_contents)) {
157
+ return $image_contents;
158
+ } else {
159
+ $this->log("The downloaded resource does not have a matching mime type.");
160
+ return false;
161
+ }
162
  } else {
163
  $this->fail("invalid_response", "The compression apparently succeeded, but WP-Optimize could not retrieve the compressed image from the remote server.");
164
  $this->log("data: ".json_encode($data));
includes/class-updraft-smush-manager.php CHANGED
@@ -442,7 +442,6 @@ class Updraft_Smush_Manager extends Updraft_Task_Manager_1_2 {
442
  'back_up_delete_after_days' => $this->options->get_option('back_up_delete_after_days', 7),
443
  'preserve_exif' => $this->options->get_option('preserve_exif', false),
444
  'autosmush' => $this->options->get_option('autosmush', false),
445
- 'image_quality' => $this->options->get_option('image_quality'),
446
  'show_smush_metabox' => $this->options->get_option('show_smush_metabox', 'show') == 'show' ? true : false
447
  );
448
  }
442
  'back_up_delete_after_days' => $this->options->get_option('back_up_delete_after_days', 7),
443
  'preserve_exif' => $this->options->get_option('preserve_exif', false),
444
  'autosmush' => $this->options->get_option('autosmush', false),
 
445
  'show_smush_metabox' => $this->options->get_option('show_smush_metabox', 'show') == 'show' ? true : false
446
  );
447
  }
includes/class-updraft-smush-task.php CHANGED
@@ -418,5 +418,21 @@ abstract class Updraft_Smush_Task extends Updraft_Task_1_1 {
418
 
419
  return $attachment_images;
420
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
421
  }
422
  endif;
418
 
419
  return $attachment_images;
420
  }
421
+
422
+ /**
423
+ * Check the mime type of a downloaded file, returns true if it is a valid image mime type.
424
+ *
425
+ * @param string $file_buffer The buffer string downloaded from the compression service
426
+ * @return boolean
427
+ */
428
+ protected function is_downloaded_image_buffer_mime_type_valid($file_buffer) {
429
+ // If the required class does not exist, return true to avoid breaking the functionality
430
+ if (!class_exists('finfo')) return true;
431
+ $accepted_types = apply_filters('wpo_image_compression_accepted_mime_types', array('image/png', 'image/jpeg', 'image/jpg', 'image/gif', 'image/webp'));
432
+ // The ignore rule below is added because "finfo" doesn't exist in PHP5.2.
433
+ $finfo = new finfo(FILEINFO_MIME_TYPE); // phpcs:ignore PHPCompatibility.Classes.NewClasses.finfoFound, PHPCompatibility.Constants.NewConstants.fileinfo_mime_typeFound
434
+ $mime_type = $finfo->buffer($file_buffer);
435
+ return in_array($mime_type, $accepted_types);
436
+ }
437
  }
438
  endif;
includes/class-wp-optimize-install-or-update-notice.php CHANGED
@@ -32,11 +32,25 @@ class WP_Optimize_Install_Or_Update_Notice {
32
  *
33
  * @return boolean
34
  */
35
- private function show_current_notice() {
 
36
  $latest_saved_notice = $this->options->get_option('install-or-update-notice-version', false);
37
  if ($latest_saved_notice && version_compare($latest_saved_notice, $this->version, '>=')) {
38
  return false;
39
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  return true;
41
  }
42
 
@@ -81,6 +95,9 @@ class WP_Optimize_Install_Or_Update_Notice {
81
  return false;
82
  }
83
 
 
 
 
84
  return true;
85
  }
86
 
32
  *
33
  * @return boolean
34
  */
35
+ public function show_current_notice() {
36
+ // Check the option
37
  $latest_saved_notice = $this->options->get_option('install-or-update-notice-version', false);
38
  if ($latest_saved_notice && version_compare($latest_saved_notice, $this->version, '>=')) {
39
  return false;
40
  }
41
+
42
+ $notice_show_time = $this->options->get_option('install-or-update-notice-show-time', false);
43
+
44
+ // If notice has been showing for more than 14days, automatically dismiss it.
45
+ if ($notice_show_time && (time() - $notice_show_time) > (14 * 86400)) {
46
+ $this->dismiss();
47
+ return false;
48
+ }
49
+
50
+ if (!$notice_show_time) {
51
+ // Save the first time the notice was shown
52
+ $this->options->update_option('install-or-update-notice-show-time', time());
53
+ }
54
  return true;
55
  }
56
 
95
  return false;
96
  }
97
 
98
+ // Delete Notice show time option, to allow re-creating next time we need to show it.
99
+ $this->options->delete_option('install-or-update-notice-show-time');
100
+
101
  return true;
102
  }
103
 
includes/class-wp-optimize-updates.php ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WP_Optimize_Updates class using for run updates in database from version to version.
4
+ */
5
+
6
+ if (!defined('ABSPATH')) die('Access denied.');
7
+
8
+ if (!class_exists('WP_Optimize_Updates')) :
9
+
10
+ class WP_Optimize_Updates {
11
+
12
+ /**
13
+ * Format: key=<version>, value=array of method names to call
14
+ * Example Usage:
15
+ * private static $db_updates = array(
16
+ * '1.0.1' => array(
17
+ * 'update_101_add_new_column',
18
+ * ),
19
+ * );
20
+ *
21
+ * @var Mixed
22
+ */
23
+ private static $updates = array(
24
+ '3.0.12' => array('delete_old_locks'),
25
+ );
26
+
27
+ /**
28
+ * See if any database schema updates are needed, and perform them if so.
29
+ * Example Usage:
30
+ * public static function update_101_add_new_column() {
31
+ * $wpdb = $GLOBALS['wpdb'];
32
+ * $wpdb->query('ALTER TABLE tm_tasks ADD task_expiry varchar(300) AFTER id');
33
+ * }
34
+ */
35
+ public static function check_updates() {
36
+ $our_version = WPO_VERSION;
37
+ $db_version = get_option('wpo_update_version');
38
+ if (!$db_version || version_compare($our_version, $db_version, '>')) {
39
+ foreach (self::$updates as $version => $updates) {
40
+ if (version_compare($version, $db_version, '>')) {
41
+ foreach ($updates as $update) {
42
+ call_user_func(array(__CLASS__, $update));
43
+ }
44
+ }
45
+ }
46
+ update_option('wpo_update_version', WPO_VERSION);
47
+ }
48
+ }
49
+
50
+ /**
51
+ * Delete old semaphore locks from options database table.
52
+ */
53
+ public static function delete_old_locks() {
54
+ global $wpdb;
55
+
56
+ // using this query we delete all rows related to locks.
57
+ $query = "DELETE FROM {$wpdb->options}".
58
+ " WHERE (option_name LIKE ('updraft_semaphore_%')".
59
+ " OR option_name LIKE ('updraft_last_lock_time_%')".
60
+ " OR option_name LIKE ('updraft_locked_%')".
61
+ " OR option_name LIKE ('updraft_unlocked_%'))".
62
+ " AND ".
63
+ "(option_name LIKE ('%smush')".
64
+ " OR option_name LIKE ('%load-url-task'));";
65
+
66
+ $wpdb->query($query);
67
+ }
68
+ }
69
+
70
+ endif;
includes/wp-optimize-database-information.php CHANGED
@@ -381,6 +381,8 @@ class WP_Optimize_Database_Information {
381
  public function is_table_needing_repair($table_name) {
382
  $table_statuses = $this->check_all_tables();
383
 
 
 
384
  if (is_array($table_statuses) && array_key_exists($table_name, $table_statuses) && $table_statuses[$table_name]['corrupted']) {
385
  return true;
386
  } else {
381
  public function is_table_needing_repair($table_name) {
382
  $table_statuses = $this->check_all_tables();
383
 
384
+ if (!$this->is_table_type_repair_supported($table_name)) return false;
385
+
386
  if (is_array($table_statuses) && array_key_exists($table_name, $table_statuses) && $table_statuses[$table_name]['corrupted']) {
387
  return true;
388
  } else {
js/{cache-3-0-12.min.js → cache-3-0-13.min.js} RENAMED
File without changes
js/handlebars/handlebars.js CHANGED
@@ -1,7 +1,7 @@
1
  /**!
2
 
3
  @license
4
- handlebars v4.3.0
5
 
6
  Copyright (C) 2011-2017 by Yehuda Katz
7
 
@@ -98,13 +98,13 @@ return /******/ (function(modules) { // webpackBootstrap
98
 
99
  var _handlebarsCompilerBase = __webpack_require__(36);
100
 
101
- var _handlebarsCompilerCompiler = __webpack_require__(43);
102
 
103
- var _handlebarsCompilerJavascriptCompiler = __webpack_require__(44);
104
 
105
  var _handlebarsCompilerJavascriptCompiler2 = _interopRequireDefault(_handlebarsCompilerJavascriptCompiler);
106
 
107
- var _handlebarsCompilerVisitor = __webpack_require__(41);
108
 
109
  var _handlebarsCompilerVisitor2 = _interopRequireDefault(_handlebarsCompilerVisitor);
110
 
@@ -275,11 +275,13 @@ return /******/ (function(modules) { // webpackBootstrap
275
 
276
  var _logger2 = _interopRequireDefault(_logger);
277
 
278
- var VERSION = '4.3.0';
279
  exports.VERSION = VERSION;
280
  var COMPILER_REVISION = 8;
281
-
282
  exports.COMPILER_REVISION = COMPILER_REVISION;
 
 
 
283
  var REVISION_CHANGES = {
284
  1: '<= 1.0.rc.2', // 1.0.rc.2 is actually rev2 but doesn't report it
285
  2: '== 1.0.0-rc.3',
@@ -686,7 +688,7 @@ return /******/ (function(modules) { // webpackBootstrap
686
  /* 12 */
687
  /***/ (function(module, exports, __webpack_require__) {
688
 
689
- 'use strict';
690
 
691
  var _interopRequireDefault = __webpack_require__(1)['default'];
692
 
@@ -748,6 +750,16 @@ return /******/ (function(modules) { // webpackBootstrap
748
  execIteration(i, i, i === context.length - 1);
749
  }
750
  }
 
 
 
 
 
 
 
 
 
 
751
  } else {
752
  var priorKey = undefined;
753
 
@@ -778,6 +790,7 @@ return /******/ (function(modules) { // webpackBootstrap
778
  };
779
 
780
  module.exports = exports['default'];
 
781
 
782
  /***/ }),
783
  /* 13 */
@@ -1087,15 +1100,17 @@ return /******/ (function(modules) { // webpackBootstrap
1087
  var compilerRevision = compilerInfo && compilerInfo[0] || 1,
1088
  currentRevision = _base.COMPILER_REVISION;
1089
 
1090
- if (compilerRevision !== currentRevision) {
1091
- if (compilerRevision < currentRevision) {
1092
- var runtimeVersions = _base.REVISION_CHANGES[currentRevision],
1093
- compilerVersions = _base.REVISION_CHANGES[compilerRevision];
1094
- throw new _exception2['default']('Template was precompiled with an older version of Handlebars than the current runtime. ' + 'Please update your precompiler to a newer version (' + runtimeVersions + ') or downgrade your runtime to an older version (' + compilerVersions + ').');
1095
- } else {
1096
- // Use the embedded version info since the runtime doesn't know about this revision yet
1097
- throw new _exception2['default']('Template was precompiled with a newer version of Handlebars than the current runtime. ' + 'Please update your runtime to a newer version (' + compilerInfo[1] + ').');
1098
- }
 
 
1099
  }
1100
  }
1101
 
@@ -1115,6 +1130,9 @@ return /******/ (function(modules) { // webpackBootstrap
1115
  // for external users to override these as pseudo-supported APIs.
1116
  env.VM.checkRevision(templateSpec.compiler);
1117
 
 
 
 
1118
  function invokePartialWrapper(partial, context, options) {
1119
  if (options.hash) {
1120
  context = Utils.extend({}, context, options.hash);
@@ -1243,9 +1261,10 @@ return /******/ (function(modules) { // webpackBootstrap
1243
  }
1244
 
1245
  container.hooks = {};
1246
- var keepHelper = options.allowCallsToHelperMissing;
1247
- _helpers.moveHelperToHooks(container, 'helperMissing', keepHelper);
1248
- _helpers.moveHelperToHooks(container, 'blockHelperMissing', keepHelper);
 
1249
  } else {
1250
  container.helpers = options.helpers;
1251
  container.partials = options.partials;
@@ -1606,11 +1625,11 @@ return /******/ (function(modules) { // webpackBootstrap
1606
 
1607
  var _parser2 = _interopRequireDefault(_parser);
1608
 
1609
- var _whitespaceControl = __webpack_require__(40);
1610
 
1611
  var _whitespaceControl2 = _interopRequireDefault(_whitespaceControl);
1612
 
1613
- var _helpers = __webpack_require__(42);
1614
 
1615
  var Helpers = _interopRequireWildcard(_helpers);
1616
 
@@ -1640,131 +1659,20 @@ return /******/ (function(modules) { // webpackBootstrap
1640
 
1641
  /***/ }),
1642
  /* 37 */
1643
- /***/ (function(module, exports, __webpack_require__) {
1644
 
1645
  // File ignored in coverage tests via setting in .istanbul.yml
1646
- /* parser generated by jison 0.4.16 */
1647
- /*
1648
- Returns a Parser object of the following structure:
1649
-
1650
- Parser: {
1651
- yy: {}
1652
- }
1653
-
1654
- Parser.prototype: {
1655
- yy: {},
1656
- trace: function(),
1657
- symbols_: {associative list: name ==> number},
1658
- terminals_: {associative list: number ==> name},
1659
- productions_: [...],
1660
- performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate, $$, _$),
1661
- table: [...],
1662
- defaultActions: {...},
1663
- parseError: function(str, hash),
1664
- parse: function(input),
1665
-
1666
- lexer: {
1667
- EOF: 1,
1668
- parseError: function(str, hash),
1669
- setInput: function(input),
1670
- input: function(),
1671
- unput: function(str),
1672
- more: function(),
1673
- less: function(n),
1674
- pastInput: function(),
1675
- upcomingInput: function(),
1676
- showPosition: function(),
1677
- test_match: function(regex_match_array, rule_index),
1678
- next: function(),
1679
- lex: function(),
1680
- begin: function(condition),
1681
- popState: function(),
1682
- _currentRules: function(),
1683
- topState: function(),
1684
- pushState: function(condition),
1685
-
1686
- options: {
1687
- ranges: boolean (optional: true ==> token location info will include a .range[] member)
1688
- flex: boolean (optional: true ==> flex-like lexing behaviour where the rules are tested exhaustively to find the longest match)
1689
- backtrack_lexer: boolean (optional: true ==> lexer regexes are tested in order and for each matching regex the action code is invoked; the lexer terminates the scan when a token is returned by the action code)
1690
- },
1691
-
1692
- performAction: function(yy, yy_, $avoiding_name_collisions, YY_START),
1693
- rules: [...],
1694
- conditions: {associative list: name ==> set},
1695
- }
1696
- }
1697
-
1698
-
1699
- token location info (@$, _$, etc.): {
1700
- first_line: n,
1701
- last_line: n,
1702
- first_column: n,
1703
- last_column: n,
1704
- range: [start_number, end_number] (where the numbers are indexes into the input string, regular zero-based)
1705
- }
1706
-
1707
-
1708
- the parseError function receives a 'hash' object with these members for lexer and parser errors: {
1709
- text: (matched text)
1710
- token: (the produced terminal token, if any)
1711
- line: (yylineno)
1712
- }
1713
- while parser (grammar) errors will also provide these members, i.e. parser errors deliver a superset of attributes: {
1714
- loc: (yylloc)
1715
- expected: (string describing the set of expected tokens)
1716
- recoverable: (boolean: TRUE when the parser has a error recovery rule available for this particular error)
1717
- }
1718
- */
1719
  "use strict";
1720
 
1721
- var _Object$create = __webpack_require__(38)["default"];
1722
-
1723
  exports.__esModule = true;
1724
  var handlebars = (function () {
1725
- var o = function o(k, v, _o, l) {
1726
- for (_o = _o || {}, l = k.length; l--; _o[k[l]] = v);return _o;
1727
- },
1728
- $V0 = [2, 46],
1729
- $V1 = [1, 20],
1730
- $V2 = [5, 14, 15, 19, 29, 34, 39, 44, 47, 48, 51, 55, 60],
1731
- $V3 = [1, 35],
1732
- $V4 = [1, 28],
1733
- $V5 = [1, 29],
1734
- $V6 = [1, 30],
1735
- $V7 = [1, 31],
1736
- $V8 = [1, 32],
1737
- $V9 = [1, 34],
1738
- $Va = [14, 15, 19, 29, 34, 39, 44, 47, 48, 51, 55, 60],
1739
- $Vb = [14, 15, 19, 29, 34, 44, 47, 48, 51, 55, 60],
1740
- $Vc = [1, 44],
1741
- $Vd = [14, 15, 19, 29, 34, 47, 48, 51, 55, 60],
1742
- $Ve = [33, 65, 72, 80, 81, 82, 83, 84, 85],
1743
- $Vf = [23, 33, 54, 65, 68, 72, 75, 80, 81, 82, 83, 84, 85],
1744
- $Vg = [1, 51],
1745
- $Vh = [23, 33, 54, 65, 68, 72, 75, 80, 81, 82, 83, 84, 85, 87],
1746
- $Vi = [2, 45],
1747
- $Vj = [54, 65, 72, 80, 81, 82, 83, 84, 85],
1748
- $Vk = [1, 58],
1749
- $Vl = [1, 59],
1750
- $Vm = [15, 18],
1751
- $Vn = [1, 67],
1752
- $Vo = [33, 65, 72, 75, 80, 81, 82, 83, 84, 85],
1753
- $Vp = [23, 65, 72, 80, 81, 82, 83, 84, 85],
1754
- $Vq = [1, 79],
1755
- $Vr = [65, 68, 72, 80, 81, 82, 83, 84, 85],
1756
- $Vs = [33, 75],
1757
- $Vt = [23, 33, 54, 68, 72, 75],
1758
- $Vu = [1, 109],
1759
- $Vv = [1, 121],
1760
- $Vw = [72, 77];
1761
  var parser = { trace: function trace() {},
1762
  yy: {},
1763
- symbols_: { "error": 2, "root": 3, "program": 4, "EOF": 5, "program_repetition0": 6, "statement": 7, "mustache": 8, "block": 9, "rawBlock": 10, "partial": 11, "partialBlock": 12, "content": 13, "COMMENT": 14, "CONTENT": 15, "openRawBlock": 16, "rawBlock_repetition_plus0": 17, "END_RAW_BLOCK": 18, "OPEN_RAW_BLOCK": 19, "helperName": 20, "openRawBlock_repetition0": 21, "openRawBlock_option0": 22, "CLOSE_RAW_BLOCK": 23, "openBlock": 24, "block_option0": 25, "closeBlock": 26, "openInverse": 27, "block_option1": 28, "OPEN_BLOCK": 29, "openBlock_repetition0": 30, "openBlock_option0": 31, "openBlock_option1": 32, "CLOSE": 33, "OPEN_INVERSE": 34, "openInverse_repetition0": 35, "openInverse_option0": 36, "openInverse_option1": 37, "openInverseChain": 38, "OPEN_INVERSE_CHAIN": 39, "openInverseChain_repetition0": 40, "openInverseChain_option0": 41, "openInverseChain_option1": 42, "inverseAndProgram": 43, "INVERSE": 44, "inverseChain": 45, "inverseChain_option0": 46, "OPEN_ENDBLOCK": 47, "OPEN": 48, "mustache_repetition0": 49, "mustache_option0": 50, "OPEN_UNESCAPED": 51, "mustache_repetition1": 52, "mustache_option1": 53, "CLOSE_UNESCAPED": 54, "OPEN_PARTIAL": 55, "partialName": 56, "partial_repetition0": 57, "partial_option0": 58, "openPartialBlock": 59, "OPEN_PARTIAL_BLOCK": 60, "openPartialBlock_repetition0": 61, "openPartialBlock_option0": 62, "param": 63, "sexpr": 64, "OPEN_SEXPR": 65, "sexpr_repetition0": 66, "sexpr_option0": 67, "CLOSE_SEXPR": 68, "hash": 69, "hash_repetition_plus0": 70, "hashSegment": 71, "ID": 72, "EQUALS": 73, "blockParams": 74, "OPEN_BLOCK_PARAMS": 75, "blockParams_repetition_plus0": 76, "CLOSE_BLOCK_PARAMS": 77, "path": 78, "dataName": 79, "STRING": 80, "NUMBER": 81, "BOOLEAN": 82, "UNDEFINED": 83, "NULL": 84, "DATA": 85, "pathSegments": 86, "SEP": 87, "$accept": 0, "$end": 1 },
1764
  terminals_: { 2: "error", 5: "EOF", 14: "COMMENT", 15: "CONTENT", 18: "END_RAW_BLOCK", 19: "OPEN_RAW_BLOCK", 23: "CLOSE_RAW_BLOCK", 29: "OPEN_BLOCK", 33: "CLOSE", 34: "OPEN_INVERSE", 39: "OPEN_INVERSE_CHAIN", 44: "INVERSE", 47: "OPEN_ENDBLOCK", 48: "OPEN", 51: "OPEN_UNESCAPED", 54: "CLOSE_UNESCAPED", 55: "OPEN_PARTIAL", 60: "OPEN_PARTIAL_BLOCK", 65: "OPEN_SEXPR", 68: "CLOSE_SEXPR", 72: "ID", 73: "EQUALS", 75: "OPEN_BLOCK_PARAMS", 77: "CLOSE_BLOCK_PARAMS", 80: "STRING", 81: "NUMBER", 82: "BOOLEAN", 83: "UNDEFINED", 84: "NULL", 85: "DATA", 87: "SEP" },
1765
- productions_: [0, [3, 2], [4, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [13, 1], [10, 3], [16, 5], [9, 4], [9, 4], [24, 6], [27, 6], [38, 6], [43, 2], [45, 3], [45, 1], [26, 3], [8, 5], [8, 5], [11, 5], [12, 3], [59, 5], [63, 1], [63, 1], [64, 5], [69, 1], [71, 3], [74, 3], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [56, 1], [56, 1], [79, 2], [78, 1], [86, 3], [86, 1], [6, 0], [6, 2], [17, 1], [17, 2], [21, 0], [21, 2], [22, 0], [22, 1], [25, 0], [25, 1], [28, 0], [28, 1], [30, 0], [30, 2], [31, 0], [31, 1], [32, 0], [32, 1], [35, 0], [35, 2], [36, 0], [36, 1], [37, 0], [37, 1], [40, 0], [40, 2], [41, 0], [41, 1], [42, 0], [42, 1], [46, 0], [46, 1], [49, 0], [49, 2], [50, 0], [50, 1], [52, 0], [52, 2], [53, 0], [53, 1], [57, 0], [57, 2], [58, 0], [58, 1], [61, 0], [61, 2], [62, 0], [62, 1], [66, 0], [66, 2], [67, 0], [67, 1], [70, 1], [70, 2], [76, 1], [76, 2]],
1766
- performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate, /* action[1] */$$, /* vstack */_$ /* lstack */) {
1767
- /* this == yyval */
1768
 
1769
  var $0 = $$.length - 1;
1770
  switch (yystate) {
@@ -1774,11 +1682,25 @@ return /******/ (function(modules) { // webpackBootstrap
1774
  case 2:
1775
  this.$ = yy.prepareProgram($$[$0]);
1776
  break;
1777
- case 3:case 4:case 5:case 6:case 7:case 8:case 20:case 27:case 28:case 33:case 34:case 40:case 41:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1778
  this.$ = $$[$0];
1779
  break;
1780
  case 9:
1781
-
1782
  this.$ = {
1783
  type: 'CommentStatement',
1784
  value: yy.stripComment($$[$0]),
@@ -1788,7 +1710,6 @@ return /******/ (function(modules) { // webpackBootstrap
1788
 
1789
  break;
1790
  case 10:
1791
-
1792
  this.$ = {
1793
  type: 'ContentStatement',
1794
  original: $$[$0],
@@ -1812,29 +1733,36 @@ return /******/ (function(modules) { // webpackBootstrap
1812
  case 15:
1813
  this.$ = { open: $$[$0 - 5], path: $$[$0 - 4], params: $$[$0 - 3], hash: $$[$0 - 2], blockParams: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 5], $$[$0]) };
1814
  break;
1815
- case 16:case 17:
 
 
 
1816
  this.$ = { path: $$[$0 - 4], params: $$[$0 - 3], hash: $$[$0 - 2], blockParams: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 5], $$[$0]) };
1817
  break;
1818
  case 18:
1819
  this.$ = { strip: yy.stripFlags($$[$0 - 1], $$[$0 - 1]), program: $$[$0] };
1820
  break;
1821
  case 19:
1822
-
1823
  var inverse = yy.prepareBlock($$[$0 - 2], $$[$0 - 1], $$[$0], $$[$0], false, this._$),
1824
  program = yy.prepareProgram([inverse], $$[$0 - 1].loc);
1825
  program.chained = true;
1826
 
1827
  this.$ = { strip: $$[$0 - 2].strip, program: program, chain: true };
1828
 
 
 
 
1829
  break;
1830
  case 21:
1831
  this.$ = { path: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 2], $$[$0]) };
1832
  break;
1833
- case 22:case 23:
 
 
 
1834
  this.$ = yy.prepareMustache($$[$0 - 3], $$[$0 - 2], $$[$0 - 1], $$[$0 - 4], yy.stripFlags($$[$0 - 4], $$[$0]), this._$);
1835
  break;
1836
  case 24:
1837
-
1838
  this.$ = {
1839
  type: 'PartialStatement',
1840
  name: $$[$0 - 3],
@@ -1852,8 +1780,13 @@ return /******/ (function(modules) { // webpackBootstrap
1852
  case 26:
1853
  this.$ = { path: $$[$0 - 3], params: $$[$0 - 2], hash: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 4], $$[$0]) };
1854
  break;
 
 
 
 
 
 
1855
  case 29:
1856
-
1857
  this.$ = {
1858
  type: 'SubExpression',
1859
  path: $$[$0 - 3],
@@ -1872,6 +1805,12 @@ return /******/ (function(modules) { // webpackBootstrap
1872
  case 32:
1873
  this.$ = yy.id($$[$0 - 1]);
1874
  break;
 
 
 
 
 
 
1875
  case 35:
1876
  this.$ = { type: 'StringLiteral', value: $$[$0], original: $$[$0], loc: yy.locInfo(this._$) };
1877
  break;
@@ -1887,6 +1826,12 @@ return /******/ (function(modules) { // webpackBootstrap
1887
  case 39:
1888
  this.$ = { type: 'NullLiteral', original: null, value: null, loc: yy.locInfo(this._$) };
1889
  break;
 
 
 
 
 
 
1890
  case 42:
1891
  this.$ = yy.preparePath(true, $$[$0], this._$);
1892
  break;
@@ -1899,81 +1844,125 @@ return /******/ (function(modules) { // webpackBootstrap
1899
  case 45:
1900
  this.$ = [{ part: yy.id($$[$0]), original: $$[$0] }];
1901
  break;
1902
- case 46:case 50:case 58:case 64:case 70:case 78:case 82:case 86:case 90:case 94:
1903
  this.$ = [];
1904
  break;
1905
- case 47:case 49:case 51:case 59:case 65:case 71:case 79:case 83:case 87:case 91:case 95:case 99:case 101:
1906
  $$[$0 - 1].push($$[$0]);
1907
  break;
1908
- case 48:case 98:case 100:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1909
  this.$ = [$$[$0]];
1910
  break;
 
 
 
 
 
 
 
 
 
1911
  }
1912
  },
1913
- table: [o([5, 14, 15, 19, 29, 34, 48, 51, 55, 60], $V0, { 3: 1, 4: 2, 6: 3 }), { 1: [3] }, { 5: [1, 4] }, o([5, 39, 44, 47], [2, 2], { 7: 5, 8: 6, 9: 7, 10: 8, 11: 9, 12: 10, 13: 11, 24: 15, 27: 16, 16: 17, 59: 19, 14: [1, 12], 15: $V1, 19: [1, 23], 29: [1, 21], 34: [1, 22], 48: [1, 13], 51: [1, 14], 55: [1, 18], 60: [1, 24] }), { 1: [2, 1] }, o($V2, [2, 47]), o($V2, [2, 3]), o($V2, [2, 4]), o($V2, [2, 5]), o($V2, [2, 6]), o($V2, [2, 7]), o($V2, [2, 8]), o($V2, [2, 9]), { 20: 25, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 36, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Va, $V0, { 6: 3, 4: 37 }), o($Vb, $V0, { 6: 3, 4: 38 }), { 13: 40, 15: $V1, 17: 39 }, { 20: 42, 56: 41, 64: 43, 65: $Vc, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Vd, $V0, { 6: 3, 4: 45 }), o([5, 14, 15, 18, 19, 29, 34, 39, 44, 47, 48, 51, 55, 60], [2, 10]), { 20: 46, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 47, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 48, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 42, 56: 49, 64: 43, 65: $Vc, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Ve, [2, 78], { 49: 50 }), o($Vf, [2, 33]), o($Vf, [2, 34]), o($Vf, [2, 35]), o($Vf, [2, 36]), o($Vf, [2, 37]), o($Vf, [2, 38]), o($Vf, [2, 39]), o($Vf, [2, 43], { 87: $Vg }), { 72: $V3, 86: 52 }, o($Vh, $Vi), o($Vj, [2, 82], { 52: 53 }), { 25: 54, 38: 56, 39: $Vk, 43: 57, 44: $Vl, 45: 55, 47: [2, 54] }, { 28: 60, 43: 61, 44: $Vl, 47: [2, 56] }, { 13: 63, 15: $V1, 18: [1, 62] }, o($Vm, [2, 48]), o($Ve, [2, 86], { 57: 64 }), o($Ve, [2, 40]), o($Ve, [2, 41]), { 20: 65, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 26: 66, 47: $Vn }, o($Vo, [2, 58], { 30: 68 }), o($Vo, [2, 64], { 35: 69 }), o($Vp, [2, 50], { 21: 70 }), o($Ve, [2, 90], { 61: 71 }), { 20: 75, 33: [2, 80], 50: 72, 63: 73, 64: 76, 65: $Vc, 69: 74, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 72: [1, 80] }, o($Vf, [2, 42], { 87: $Vg }), { 20: 75, 53: 81, 54: [2, 84], 63: 82, 64: 76, 65: $Vc, 69: 83, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 26: 84, 47: $Vn }, { 47: [2, 55] }, o($Va, $V0, { 6: 3, 4: 85 }), { 47: [2, 20] }, { 20: 86, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Vd, $V0, { 6: 3, 4: 87 }), { 26: 88, 47: $Vn }, { 47: [2, 57] }, o($V2, [2, 11]), o($Vm, [2, 49]), { 20: 75, 33: [2, 88], 58: 89, 63: 90, 64: 76, 65: $Vc, 69: 91, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Vr, [2, 94], { 66: 92 }), o($V2, [2, 25]), { 20: 93, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($Vs, [2, 60], { 78: 26, 79: 27, 86: 33, 20: 75, 64: 76, 70: 77, 71: 78, 31: 94, 63: 95, 69: 96, 65: $Vc, 72: $Vq, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9 }), o($Vs, [2, 66], { 78: 26, 79: 27, 86: 33, 20: 75, 64: 76, 70: 77, 71: 78, 36: 97, 63: 98, 69: 99, 65: $Vc, 72: $Vq, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9 }), { 20: 75, 22: 100, 23: [2, 52], 63: 101, 64: 76, 65: $Vc, 69: 102, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 20: 75, 33: [2, 92], 62: 103, 63: 104, 64: 76, 65: $Vc, 69: 105, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 33: [1, 106] }, o($Ve, [2, 79]), { 33: [2, 81] }, o($Vf, [2, 27]), o($Vf, [2, 28]), o([23, 33, 54, 68, 75], [2, 30], { 71: 107, 72: [1, 108] }), o($Vt, [2, 98]), o($Vh, $Vi, { 73: $Vu }), o($Vh, [2, 44]), { 54: [1, 110] }, o($Vj, [2, 83]), { 54: [2, 85] }, o($V2, [2, 13]), { 38: 56, 39: $Vk, 43: 57, 44: $Vl, 45: 112, 46: 111, 47: [2, 76] }, o($Vo, [2, 70], { 40: 113 }), { 47: [2, 18] }, o($V2, [2, 14]), { 33: [1, 114] }, o($Ve, [2, 87]), { 33: [2, 89] }, { 20: 75, 63: 116, 64: 76, 65: $Vc, 67: 115, 68: [2, 96], 69: 117, 70: 77, 71: 78, 72: $Vq, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, { 33: [1, 118] }, { 32: 119, 33: [2, 62], 74: 120, 75: $Vv }, o($Vo, [2, 59]), o($Vs, [2, 61]), { 33: [2, 68], 37: 122, 74: 123, 75: $Vv }, o($Vo, [2, 65]), o($Vs, [2, 67]), { 23: [1, 124] }, o($Vp, [2, 51]), { 23: [2, 53] }, { 33: [1, 125] }, o($Ve, [2, 91]), { 33: [2, 93] }, o($V2, [2, 22]), o($Vt, [2, 99]), { 73: $Vu }, { 20: 75, 63: 126, 64: 76, 65: $Vc, 72: $V3, 78: 26, 79: 27, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9, 86: 33 }, o($V2, [2, 23]), { 47: [2, 19] }, { 47: [2, 77] }, o($Vs, [2, 72], { 78: 26, 79: 27, 86: 33, 20: 75, 64: 76, 70: 77, 71: 78, 41: 127, 63: 128, 69: 129, 65: $Vc, 72: $Vq, 80: $V4, 81: $V5, 82: $V6, 83: $V7, 84: $V8, 85: $V9 }), o($V2, [2, 24]), { 68: [1, 130] }, o($Vr, [2, 95]), { 68: [2, 97] }, o($V2, [2, 21]), { 33: [1, 131] }, { 33: [2, 63] }, { 72: [1, 133], 76: 132 }, { 33: [1, 134] }, { 33: [2, 69] }, { 15: [2, 12] }, o($Vd, [2, 26]), o($Vt, [2, 31]), { 33: [2, 74], 42: 135, 74: 136, 75: $Vv }, o($Vo, [2, 71]), o($Vs, [2, 73]), o($Vf, [2, 29]), o($Va, [2, 15]), { 72: [1, 138], 77: [1, 137] }, o($Vw, [2, 100]), o($Vb, [2, 16]), { 33: [1, 139] }, { 33: [2, 75] }, { 33: [2, 32] }, o($Vw, [2, 101]), o($Va, [2, 17])],
1914
- defaultActions: { 4: [2, 1], 55: [2, 55], 57: [2, 20], 61: [2, 57], 74: [2, 81], 83: [2, 85], 87: [2, 18], 91: [2, 89], 102: [2, 53], 105: [2, 93], 111: [2, 19], 112: [2, 77], 117: [2, 97], 120: [2, 63], 123: [2, 69], 124: [2, 12], 136: [2, 75], 137: [2, 32] },
1915
  parseError: function parseError(str, hash) {
1916
- if (hash.recoverable) {
1917
- this.trace(str);
1918
- } else {
1919
- var _parseError = function _parseError(msg, hash) {
1920
- this.message = msg;
1921
- this.hash = hash;
1922
- };
1923
-
1924
- _parseError.prototype = new Error();
1925
-
1926
- throw new _parseError(str, hash);
1927
- }
1928
  },
1929
  parse: function parse(input) {
1930
  var self = this,
1931
  stack = [0],
1932
- tstack = [],
1933
  vstack = [null],
1934
  lstack = [],
1935
  table = this.table,
1936
- yytext = '',
1937
  yylineno = 0,
1938
  yyleng = 0,
1939
  recovering = 0,
1940
  TERROR = 2,
1941
  EOF = 1;
1942
- var args = lstack.slice.call(arguments, 1);
1943
- var lexer = _Object$create(this.lexer);
1944
- var sharedState = { yy: {} };
1945
- for (var k in this.yy) {
1946
- if (Object.prototype.hasOwnProperty.call(this.yy, k)) {
1947
- sharedState.yy[k] = this.yy[k];
1948
- }
1949
- }
1950
- lexer.setInput(input, sharedState.yy);
1951
- sharedState.yy.lexer = lexer;
1952
- sharedState.yy.parser = this;
1953
- if (typeof lexer.yylloc == 'undefined') {
1954
- lexer.yylloc = {};
1955
- }
1956
- var yyloc = lexer.yylloc;
1957
  lstack.push(yyloc);
1958
- var ranges = lexer.options && lexer.options.ranges;
1959
- if (typeof sharedState.yy.parseError === 'function') {
1960
- this.parseError = sharedState.yy.parseError;
1961
- } else {
1962
- this.parseError = Object.getPrototypeOf(this).parseError;
1963
- }
1964
  function popStack(n) {
1965
  stack.length = stack.length - 2 * n;
1966
  vstack.length = vstack.length - n;
1967
  lstack.length = lstack.length - n;
1968
  }
1969
- _token_stack: var lex = function lex() {
1970
  var token;
1971
- token = lexer.lex() || EOF;
1972
- if (typeof token !== 'number') {
1973
  token = self.symbols_[token] || token;
1974
  }
1975
  return token;
1976
- };
1977
  var symbol,
1978
  preErrorSymbol,
1979
  state,
@@ -1990,50 +1979,42 @@ return /******/ (function(modules) { // webpackBootstrap
1990
  if (this.defaultActions[state]) {
1991
  action = this.defaultActions[state];
1992
  } else {
1993
- if (symbol === null || typeof symbol == 'undefined') {
1994
  symbol = lex();
1995
  }
1996
  action = table[state] && table[state][symbol];
1997
  }
1998
- if (typeof action === 'undefined' || !action.length || !action[0]) {
1999
- var errStr = '';
2000
- expected = [];
2001
- for (p in table[state]) {
2002
- if (this.terminals_[p] && p > TERROR) {
2003
- expected.push('\'' + this.terminals_[p] + '\'');
2004
  }
 
 
 
 
 
 
2005
  }
2006
- if (lexer.showPosition) {
2007
- errStr = 'Parse error on line ' + (yylineno + 1) + ':\n' + lexer.showPosition() + '\nExpecting ' + expected.join(', ') + ', got \'' + (this.terminals_[symbol] || symbol) + '\'';
2008
- } else {
2009
- errStr = 'Parse error on line ' + (yylineno + 1) + ': Unexpected ' + (symbol == EOF ? 'end of input' : '\'' + (this.terminals_[symbol] || symbol) + '\'');
2010
- }
2011
- this.parseError(errStr, {
2012
- text: lexer.match,
2013
- token: this.terminals_[symbol] || symbol,
2014
- line: lexer.yylineno,
2015
- loc: yyloc,
2016
- expected: expected
2017
- });
2018
  }
2019
  if (action[0] instanceof Array && action.length > 1) {
2020
- throw new Error('Parse Error: multiple actions possible at state: ' + state + ', token: ' + symbol);
2021
  }
2022
  switch (action[0]) {
2023
  case 1:
2024
  stack.push(symbol);
2025
- vstack.push(lexer.yytext);
2026
- lstack.push(lexer.yylloc);
2027
  stack.push(action[1]);
2028
  symbol = null;
2029
  if (!preErrorSymbol) {
2030
- yyleng = lexer.yyleng;
2031
- yytext = lexer.yytext;
2032
- yylineno = lexer.yylineno;
2033
- yyloc = lexer.yylloc;
2034
- if (recovering > 0) {
2035
- recovering--;
2036
- }
2037
  } else {
2038
  symbol = preErrorSymbol;
2039
  preErrorSymbol = null;
@@ -2042,17 +2023,12 @@ return /******/ (function(modules) { // webpackBootstrap
2042
  case 2:
2043
  len = this.productions_[action[1]][1];
2044
  yyval.$ = vstack[vstack.length - len];
2045
- yyval._$ = {
2046
- first_line: lstack[lstack.length - (len || 1)].first_line,
2047
- last_line: lstack[lstack.length - 1].last_line,
2048
- first_column: lstack[lstack.length - (len || 1)].first_column,
2049
- last_column: lstack[lstack.length - 1].last_column
2050
- };
2051
  if (ranges) {
2052
  yyval._$.range = [lstack[lstack.length - (len || 1)].range[0], lstack[lstack.length - 1].range[1]];
2053
  }
2054
- r = this.performAction.apply(yyval, [yytext, yyleng, yylineno, sharedState.yy, action[1], vstack, lstack].concat(args));
2055
- if (typeof r !== 'undefined') {
2056
  return r;
2057
  }
2058
  if (len) {
@@ -2071,13 +2047,11 @@ return /******/ (function(modules) { // webpackBootstrap
2071
  }
2072
  }
2073
  return true;
2074
- } };
2075
- /* generated by jison-lex 0.3.4 */
 
2076
  var lexer = (function () {
2077
- var lexer = {
2078
-
2079
- EOF: 1,
2080
-
2081
  parseError: function parseError(str, hash) {
2082
  if (this.yy.parser) {
2083
  this.yy.parser.parseError(str, hash);
@@ -2085,29 +2059,17 @@ return /******/ (function(modules) { // webpackBootstrap
2085
  throw new Error(str);
2086
  }
2087
  },
2088
-
2089
- // resets the lexer, sets new input
2090
- setInput: function setInput(input, yy) {
2091
- this.yy = yy || this.yy || {};
2092
  this._input = input;
2093
- this._more = this._backtrack = this.done = false;
2094
  this.yylineno = this.yyleng = 0;
2095
  this.yytext = this.matched = this.match = '';
2096
  this.conditionStack = ['INITIAL'];
2097
- this.yylloc = {
2098
- first_line: 1,
2099
- first_column: 0,
2100
- last_line: 1,
2101
- last_column: 0
2102
- };
2103
- if (this.options.ranges) {
2104
- this.yylloc.range = [0, 0];
2105
- }
2106
  this.offset = 0;
2107
  return this;
2108
  },
2109
-
2110
- // consumes and returns one char from the input
2111
  input: function input() {
2112
  var ch = this._input[0];
2113
  this.yytext += ch;
@@ -2122,34 +2084,27 @@ return /******/ (function(modules) { // webpackBootstrap
2122
  } else {
2123
  this.yylloc.last_column++;
2124
  }
2125
- if (this.options.ranges) {
2126
- this.yylloc.range[1]++;
2127
- }
2128
 
2129
  this._input = this._input.slice(1);
2130
  return ch;
2131
  },
2132
-
2133
- // unshifts one char (or a string) into the input
2134
  unput: function unput(ch) {
2135
  var len = ch.length;
2136
  var lines = ch.split(/(?:\r\n?|\n)/g);
2137
 
2138
  this._input = ch + this._input;
2139
- this.yytext = this.yytext.substr(0, this.yytext.length - len);
2140
  //this.yyleng -= len;
2141
  this.offset -= len;
2142
  var oldLines = this.match.split(/(?:\r\n?|\n)/g);
2143
  this.match = this.match.substr(0, this.match.length - 1);
2144
  this.matched = this.matched.substr(0, this.matched.length - 1);
2145
 
2146
- if (lines.length - 1) {
2147
- this.yylineno -= lines.length - 1;
2148
- }
2149
  var r = this.yylloc.range;
2150
 
2151
- this.yylloc = {
2152
- first_line: this.yylloc.first_line,
2153
  last_line: this.yylineno + 1,
2154
  first_column: this.yylloc.first_column,
2155
  last_column: lines ? (lines.length === oldLines.length ? this.yylloc.first_column : 0) + oldLines[oldLines.length - lines.length].length - lines[0].length : this.yylloc.first_column - len
@@ -2158,42 +2113,19 @@ return /******/ (function(modules) { // webpackBootstrap
2158
  if (this.options.ranges) {
2159
  this.yylloc.range = [r[0], r[0] + this.yyleng - len];
2160
  }
2161
- this.yyleng = this.yytext.length;
2162
  return this;
2163
  },
2164
-
2165
- // When called from action, caches matched text and appends it on next action
2166
  more: function more() {
2167
  this._more = true;
2168
  return this;
2169
  },
2170
-
2171
- // When called from action, signals the lexer that this rule fails to match the input, so the next matching rule (regex) should be tested instead.
2172
- reject: function reject() {
2173
- if (this.options.backtrack_lexer) {
2174
- this._backtrack = true;
2175
- } else {
2176
- return this.parseError('Lexical error on line ' + (this.yylineno + 1) + '. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n' + this.showPosition(), {
2177
- text: "",
2178
- token: null,
2179
- line: this.yylineno
2180
- });
2181
- }
2182
- return this;
2183
- },
2184
-
2185
- // retain first n characters of the match
2186
  less: function less(n) {
2187
  this.unput(this.match.slice(n));
2188
  },
2189
-
2190
- // displays already matched input, i.e. for error messages
2191
  pastInput: function pastInput() {
2192
  var past = this.matched.substr(0, this.matched.length - this.match.length);
2193
  return (past.length > 20 ? '...' : '') + past.substr(-20).replace(/\n/g, "");
2194
  },
2195
-
2196
- // displays upcoming input, i.e. for error messages
2197
  upcomingInput: function upcomingInput() {
2198
  var next = this.match;
2199
  if (next.length < 20) {
@@ -2201,92 +2133,18 @@ return /******/ (function(modules) { // webpackBootstrap
2201
  }
2202
  return (next.substr(0, 20) + (next.length > 20 ? '...' : '')).replace(/\n/g, "");
2203
  },
2204
-
2205
- // displays the character position where the lexing error occurred, i.e. for error messages
2206
  showPosition: function showPosition() {
2207
  var pre = this.pastInput();
2208
  var c = new Array(pre.length + 1).join("-");
2209
  return pre + this.upcomingInput() + "\n" + c + "^";
2210
  },
2211
-
2212
- // test the lexed token: return FALSE when not a match, otherwise return token
2213
- test_match: function test_match(match, indexed_rule) {
2214
- var token, lines, backup;
2215
-
2216
- if (this.options.backtrack_lexer) {
2217
- // save context
2218
- backup = {
2219
- yylineno: this.yylineno,
2220
- yylloc: {
2221
- first_line: this.yylloc.first_line,
2222
- last_line: this.last_line,
2223
- first_column: this.yylloc.first_column,
2224
- last_column: this.yylloc.last_column
2225
- },
2226
- yytext: this.yytext,
2227
- match: this.match,
2228
- matches: this.matches,
2229
- matched: this.matched,
2230
- yyleng: this.yyleng,
2231
- offset: this.offset,
2232
- _more: this._more,
2233
- _input: this._input,
2234
- yy: this.yy,
2235
- conditionStack: this.conditionStack.slice(0),
2236
- done: this.done
2237
- };
2238
- if (this.options.ranges) {
2239
- backup.yylloc.range = this.yylloc.range.slice(0);
2240
- }
2241
- }
2242
-
2243
- lines = match[0].match(/(?:\r\n?|\n).*/g);
2244
- if (lines) {
2245
- this.yylineno += lines.length;
2246
- }
2247
- this.yylloc = {
2248
- first_line: this.yylloc.last_line,
2249
- last_line: this.yylineno + 1,
2250
- first_column: this.yylloc.last_column,
2251
- last_column: lines ? lines[lines.length - 1].length - lines[lines.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + match[0].length
2252
- };
2253
- this.yytext += match[0];
2254
- this.match += match[0];
2255
- this.matches = match;
2256
- this.yyleng = this.yytext.length;
2257
- if (this.options.ranges) {
2258
- this.yylloc.range = [this.offset, this.offset += this.yyleng];
2259
- }
2260
- this._more = false;
2261
- this._backtrack = false;
2262
- this._input = this._input.slice(match[0].length);
2263
- this.matched += match[0];
2264
- token = this.performAction.call(this, this.yy, this, indexed_rule, this.conditionStack[this.conditionStack.length - 1]);
2265
- if (this.done && this._input) {
2266
- this.done = false;
2267
- }
2268
- if (token) {
2269
- return token;
2270
- } else if (this._backtrack) {
2271
- // recover context
2272
- for (var k in backup) {
2273
- this[k] = backup[k];
2274
- }
2275
- return false; // rule action called reject() implying the next rule should be tested instead.
2276
- }
2277
- return false;
2278
- },
2279
-
2280
- // return next match in input
2281
  next: function next() {
2282
  if (this.done) {
2283
  return this.EOF;
2284
  }
2285
- if (!this._input) {
2286
- this.done = true;
2287
- }
2288
 
2289
- var token, match, tempMatch, index;
2290
  if (!this._more) {
2291
  this.yytext = '';
2292
  this.match = '';
@@ -2297,303 +2155,251 @@ return /******/ (function(modules) { // webpackBootstrap
2297
  if (tempMatch && (!match || tempMatch[0].length > match[0].length)) {
2298
  match = tempMatch;
2299
  index = i;
2300
- if (this.options.backtrack_lexer) {
2301
- token = this.test_match(tempMatch, rules[i]);
2302
- if (token !== false) {
2303
- return token;
2304
- } else if (this._backtrack) {
2305
- match = false;
2306
- continue; // rule action called reject() implying a rule MISmatch.
2307
- } else {
2308
- // else: this is a lexer rule which consumes input without producing a token (e.g. whitespace)
2309
- return false;
2310
- }
2311
- } else if (!this.options.flex) {
2312
- break;
2313
- }
2314
  }
2315
  }
2316
  if (match) {
2317
- token = this.test_match(match, rules[index]);
2318
- if (token !== false) {
2319
- return token;
 
 
 
 
 
 
 
 
 
2320
  }
2321
- // else: this is a lexer rule which consumes input without producing a token (e.g. whitespace)
2322
- return false;
 
 
 
 
2323
  }
2324
  if (this._input === "") {
2325
  return this.EOF;
2326
  } else {
2327
- return this.parseError('Lexical error on line ' + (this.yylineno + 1) + '. Unrecognized text.\n' + this.showPosition(), {
2328
- text: "",
2329
- token: null,
2330
- line: this.yylineno
2331
- });
2332
  }
2333
  },
2334
-
2335
- // return next match that has a token
2336
  lex: function lex() {
2337
  var r = this.next();
2338
- if (r) {
2339
  return r;
2340
  } else {
2341
  return this.lex();
2342
  }
2343
  },
2344
-
2345
- // activates a new lexer condition state (pushes the new lexer condition state onto the condition stack)
2346
  begin: function begin(condition) {
2347
  this.conditionStack.push(condition);
2348
  },
2349
-
2350
- // pop the previously active lexer condition state off the condition stack
2351
  popState: function popState() {
2352
- var n = this.conditionStack.length - 1;
2353
- if (n > 0) {
2354
- return this.conditionStack.pop();
2355
- } else {
2356
- return this.conditionStack[0];
2357
- }
2358
  },
2359
-
2360
- // produce the lexer rule set which is active for the currently active lexer condition state
2361
  _currentRules: function _currentRules() {
2362
- if (this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1]) {
2363
- return this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules;
2364
- } else {
2365
- return this.conditions["INITIAL"].rules;
2366
- }
2367
  },
2368
-
2369
- // return the currently active lexer condition state; when an index argument is provided it produces the N-th previous condition state, if available
2370
- topState: function topState(n) {
2371
- n = this.conditionStack.length - 1 - Math.abs(n || 0);
2372
- if (n >= 0) {
2373
- return this.conditionStack[n];
2374
- } else {
2375
- return "INITIAL";
2376
- }
2377
  },
2378
-
2379
- // alias for begin(condition)
2380
- pushState: function pushState(condition) {
2381
  this.begin(condition);
2382
- },
 
 
2383
 
2384
- // return the number of states currently on the stack
2385
- stateStackSize: function stateStackSize() {
2386
- return this.conditionStack.length;
2387
- },
2388
- options: {},
2389
- performAction: function anonymous(yy, yy_, $avoiding_name_collisions, YY_START) {
2390
 
2391
- function strip(start, end) {
2392
- return yy_.yytext = yy_.yytext.substring(start, yy_.yyleng - end + start);
2393
- }
 
 
 
 
 
 
 
 
 
 
2394
 
2395
- var YYSTATE = YY_START;
2396
- switch ($avoiding_name_collisions) {
2397
- case 0:
2398
- if (yy_.yytext.slice(-2) === "\\\\") {
2399
- strip(0, 1);
2400
- this.begin("mu");
2401
- } else if (yy_.yytext.slice(-1) === "\\") {
2402
- strip(0, 1);
2403
- this.begin("emu");
2404
- } else {
2405
- this.begin("mu");
2406
- }
2407
- if (yy_.yytext) return 15;
2408
 
2409
- break;
2410
- case 1:
2411
- return 15;
2412
- break;
2413
- case 2:
2414
- this.popState();
 
 
 
 
2415
  return 15;
 
 
 
 
2416
 
2417
- break;
2418
- case 3:
2419
- this.begin('raw');return 15;
2420
- break;
2421
- case 4:
2422
- this.popState();
2423
- // Should be using `this.topState()` below, but it currently
2424
- // returns the second top instead of the first top. Opened an
2425
- // issue about it at https://github.com/zaach/jison/issues/291
2426
- if (this.conditionStack[this.conditionStack.length - 1] === 'raw') {
2427
- return 15;
2428
- } else {
2429
- strip(5, 9);
2430
- return 18;
2431
- }
2432
-
2433
- break;
2434
- case 5:
2435
- return 15;
2436
- break;
2437
- case 6:
2438
- this.popState();
2439
- return 14;
2440
 
2441
- break;
2442
- case 7:
2443
- return 65;
2444
- break;
2445
- case 8:
2446
- return 68;
2447
- break;
2448
- case 9:
2449
- return 19;
2450
- break;
2451
- case 10:
2452
- this.popState();
2453
- this.begin('raw');
2454
- return 23;
2455
 
2456
- break;
2457
- case 11:
2458
- return 55;
2459
- break;
2460
- case 12:
2461
- return 60;
2462
- break;
2463
- case 13:
2464
- return 29;
2465
- break;
2466
- case 14:
2467
- return 47;
2468
- break;
2469
- case 15:
2470
- this.popState();return 44;
2471
- break;
2472
- case 16:
2473
- this.popState();return 44;
2474
- break;
2475
- case 17:
2476
- return 34;
2477
- break;
2478
- case 18:
2479
- return 39;
2480
- break;
2481
- case 19:
2482
- return 51;
2483
- break;
2484
- case 20:
2485
- return 48;
2486
- break;
2487
- case 21:
2488
- this.unput(yy_.yytext);
2489
- this.popState();
2490
- this.begin('com');
2491
 
2492
- break;
2493
- case 22:
2494
- this.popState();
2495
- return 14;
2496
 
2497
- break;
2498
- case 23:
2499
- return 48;
2500
- break;
2501
- case 24:
2502
- return 73;
2503
- break;
2504
- case 25:
2505
- return 72;
2506
- break;
2507
- case 26:
2508
- return 72;
2509
- break;
2510
- case 27:
2511
- return 87;
2512
- break;
2513
- case 28:
2514
- // ignore whitespace
2515
- break;
2516
- case 29:
2517
- this.popState();return 54;
2518
- break;
2519
- case 30:
2520
- this.popState();return 33;
2521
- break;
2522
- case 31:
2523
- yy_.yytext = strip(1, 2).replace(/\\"/g, '"');return 80;
2524
- break;
2525
- case 32:
2526
- yy_.yytext = strip(1, 2).replace(/\\'/g, "'");return 80;
2527
- break;
2528
- case 33:
2529
- return 85;
2530
- break;
2531
- case 34:
2532
- return 82;
2533
- break;
2534
- case 35:
2535
- return 82;
2536
- break;
2537
- case 36:
2538
- return 83;
2539
- break;
2540
- case 37:
2541
- return 84;
2542
- break;
2543
- case 38:
2544
- return 81;
2545
- break;
2546
- case 39:
2547
- return 75;
2548
- break;
2549
- case 40:
2550
- return 77;
2551
- break;
2552
- case 41:
2553
- return 72;
2554
- break;
2555
- case 42:
2556
- yy_.yytext = yy_.yytext.replace(/\\([\\\]])/g, '$1');return 72;
2557
- break;
2558
- case 43:
2559
- return 'INVALID';
2560
- break;
2561
- case 44:
2562
- return 5;
2563
- break;
2564
- }
2565
- },
2566
- rules: [/^(?:[^\x00]*?(?=(\{\{)))/, /^(?:[^\x00]+)/, /^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/, /^(?:\{\{\{\{(?=[^\/]))/, /^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/, /^(?:[^\x00]*?(?=(\{\{\{\{)))/, /^(?:[\s\S]*?--(~)?\}\})/, /^(?:\()/, /^(?:\))/, /^(?:\{\{\{\{)/, /^(?:\}\}\}\})/, /^(?:\{\{(~)?>)/, /^(?:\{\{(~)?#>)/, /^(?:\{\{(~)?#\*?)/, /^(?:\{\{(~)?\/)/, /^(?:\{\{(~)?\^\s*(~)?\}\})/, /^(?:\{\{(~)?\s*else\s*(~)?\}\})/, /^(?:\{\{(~)?\^)/, /^(?:\{\{(~)?\s*else\b)/, /^(?:\{\{(~)?\{)/, /^(?:\{\{(~)?&)/, /^(?:\{\{(~)?!--)/, /^(?:\{\{(~)?![\s\S]*?\}\})/, /^(?:\{\{(~)?\*?)/, /^(?:=)/, /^(?:\.\.)/, /^(?:\.(?=([=~}\s\/.)|])))/, /^(?:[\/.])/, /^(?:\s+)/, /^(?:\}(~)?\}\})/, /^(?:(~)?\}\})/, /^(?:"(\\["]|[^"])*")/, /^(?:'(\\[']|[^'])*')/, /^(?:@)/, /^(?:true(?=([~}\s)])))/, /^(?:false(?=([~}\s)])))/, /^(?:undefined(?=([~}\s)])))/, /^(?:null(?=([~}\s)])))/, /^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/, /^(?:as\s+\|)/, /^(?:\|)/, /^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/, /^(?:\[(\\\]|[^\]])*\])/, /^(?:.)/, /^(?:$)/],
2567
- conditions: { "mu": { "rules": [7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "inclusive": false }, "emu": { "rules": [2], "inclusive": false }, "com": { "rules": [6], "inclusive": false }, "raw": { "rules": [3, 4, 5], "inclusive": false }, "INITIAL": { "rules": [0, 1, 44], "inclusive": true } }
2568
  };
 
 
2569
  return lexer;
2570
  })();
2571
  parser.lexer = lexer;
2572
  function Parser() {
2573
  this.yy = {};
2574
- }
2575
- Parser.prototype = parser;parser.Parser = Parser;
2576
  return new Parser();
2577
  })();exports["default"] = handlebars;
2578
  module.exports = exports["default"];
2579
 
2580
  /***/ }),
2581
  /* 38 */
2582
- /***/ (function(module, exports, __webpack_require__) {
2583
-
2584
- module.exports = { "default": __webpack_require__(39), __esModule: true };
2585
-
2586
- /***/ }),
2587
- /* 39 */
2588
- /***/ (function(module, exports, __webpack_require__) {
2589
-
2590
- var $ = __webpack_require__(9);
2591
- module.exports = function create(P, D){
2592
- return $.create(P, D);
2593
- };
2594
-
2595
- /***/ }),
2596
- /* 40 */
2597
  /***/ (function(module, exports, __webpack_require__) {
2598
 
2599
  'use strict';
@@ -2602,7 +2408,7 @@ return /******/ (function(modules) { // webpackBootstrap
2602
 
2603
  exports.__esModule = true;
2604
 
2605
- var _visitor = __webpack_require__(41);
2606
 
2607
  var _visitor2 = _interopRequireDefault(_visitor);
2608
 
@@ -2817,7 +2623,7 @@ return /******/ (function(modules) { // webpackBootstrap
2817
  module.exports = exports['default'];
2818
 
2819
  /***/ }),
2820
- /* 41 */
2821
  /***/ (function(module, exports, __webpack_require__) {
2822
 
2823
  'use strict';
@@ -2960,7 +2766,7 @@ return /******/ (function(modules) { // webpackBootstrap
2960
  module.exports = exports['default'];
2961
 
2962
  /***/ }),
2963
- /* 42 */
2964
  /***/ (function(module, exports, __webpack_require__) {
2965
 
2966
  'use strict';
@@ -3191,7 +2997,7 @@ return /******/ (function(modules) { // webpackBootstrap
3191
  }
3192
 
3193
  /***/ }),
3194
- /* 43 */
3195
  /***/ (function(module, exports, __webpack_require__) {
3196
 
3197
  /* eslint-disable new-cap */
@@ -3767,7 +3573,7 @@ return /******/ (function(modules) { // webpackBootstrap
3767
  }
3768
 
3769
  /***/ }),
3770
- /* 44 */
3771
  /***/ (function(module, exports, __webpack_require__) {
3772
 
3773
  'use strict';
@@ -3784,7 +3590,7 @@ return /******/ (function(modules) { // webpackBootstrap
3784
 
3785
  var _utils = __webpack_require__(5);
3786
 
3787
- var _codeGen = __webpack_require__(45);
3788
 
3789
  var _codeGen2 = _interopRequireDefault(_codeGen);
3790
 
@@ -3798,13 +3604,19 @@ return /******/ (function(modules) { // webpackBootstrap
3798
  // PUBLIC API: You can override these methods in a subclass to provide
3799
  // alternative compiled forms for name lookup and buffering semantics
3800
  nameLookup: function nameLookup(parent, name /* , type*/) {
 
 
3801
  if (name === 'constructor') {
3802
- return ['(', parent, '.propertyIsEnumerable(\'constructor\') ? ', parent, '.constructor : undefined', ')'];
3803
  }
3804
- if (JavaScriptCompiler.isValidJavaScriptVariableName(name)) {
3805
- return [parent, '.', name];
3806
- } else {
3807
- return [parent, '[', JSON.stringify(name), ']'];
 
 
 
 
3808
  }
3809
  },
3810
  depthedLookup: function depthedLookup(name) {
@@ -4003,7 +3815,6 @@ return /******/ (function(modules) { // webpackBootstrap
4003
  for (var alias in this.aliases) {
4004
  // eslint-disable-line guard-for-in
4005
  var node = this.aliases[alias];
4006
-
4007
  if (this.aliases.hasOwnProperty(alias) && node.children && node.referenceCount > 1) {
4008
  varDeclarations += ', alias' + ++aliasCount + '=' + alias;
4009
  node.children[0] = 'alias' + aliasCount;
@@ -4916,7 +4727,7 @@ return /******/ (function(modules) { // webpackBootstrap
4916
  module.exports = exports['default'];
4917
 
4918
  /***/ }),
4919
- /* 45 */
4920
  /***/ (function(module, exports, __webpack_require__) {
4921
 
4922
  /* global define */
1
  /**!
2
 
3
  @license
4
+ handlebars v4.4.5
5
 
6
  Copyright (C) 2011-2017 by Yehuda Katz
7
 
98
 
99
  var _handlebarsCompilerBase = __webpack_require__(36);
100
 
101
+ var _handlebarsCompilerCompiler = __webpack_require__(41);
102
 
103
+ var _handlebarsCompilerJavascriptCompiler = __webpack_require__(42);
104
 
105
  var _handlebarsCompilerJavascriptCompiler2 = _interopRequireDefault(_handlebarsCompilerJavascriptCompiler);
106
 
107
+ var _handlebarsCompilerVisitor = __webpack_require__(39);
108
 
109
  var _handlebarsCompilerVisitor2 = _interopRequireDefault(_handlebarsCompilerVisitor);
110
 
275
 
276
  var _logger2 = _interopRequireDefault(_logger);
277
 
278
+ var VERSION = '4.4.5';
279
  exports.VERSION = VERSION;
280
  var COMPILER_REVISION = 8;
 
281
  exports.COMPILER_REVISION = COMPILER_REVISION;
282
+ var LAST_COMPATIBLE_COMPILER_REVISION = 7;
283
+
284
+ exports.LAST_COMPATIBLE_COMPILER_REVISION = LAST_COMPATIBLE_COMPILER_REVISION;
285
  var REVISION_CHANGES = {
286
  1: '<= 1.0.rc.2', // 1.0.rc.2 is actually rev2 but doesn't report it
287
  2: '== 1.0.0-rc.3',
688
  /* 12 */
689
  /***/ (function(module, exports, __webpack_require__) {
690
 
691
+ /* WEBPACK VAR INJECTION */(function(global) {'use strict';
692
 
693
  var _interopRequireDefault = __webpack_require__(1)['default'];
694
 
750
  execIteration(i, i, i === context.length - 1);
751
  }
752
  }
753
+ } else if (global.Symbol && context[global.Symbol.iterator]) {
754
+ var newContext = [];
755
+ var iterator = context[global.Symbol.iterator]();
756
+ for (var it = iterator.next(); !it.done; it = iterator.next()) {
757
+ newContext.push(it.value);
758
+ }
759
+ context = newContext;
760
+ for (var j = context.length; i < j; i++) {
761
+ execIteration(i, i, i === context.length - 1);
762
+ }
763
  } else {
764
  var priorKey = undefined;
765
 
790
  };
791
 
792
  module.exports = exports['default'];
793
+ /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
794
 
795
  /***/ }),
796
  /* 13 */
1100
  var compilerRevision = compilerInfo && compilerInfo[0] || 1,
1101
  currentRevision = _base.COMPILER_REVISION;
1102
 
1103
+ if (compilerRevision >= _base.LAST_COMPATIBLE_COMPILER_REVISION && compilerRevision <= _base.COMPILER_REVISION) {
1104
+ return;
1105
+ }
1106
+
1107
+ if (compilerRevision < _base.LAST_COMPATIBLE_COMPILER_REVISION) {
1108
+ var runtimeVersions = _base.REVISION_CHANGES[currentRevision],
1109
+ compilerVersions = _base.REVISION_CHANGES[compilerRevision];
1110
+ throw new _exception2['default']('Template was precompiled with an older version of Handlebars than the current runtime. ' + 'Please update your precompiler to a newer version (' + runtimeVersions + ') or downgrade your runtime to an older version (' + compilerVersions + ').');
1111
+ } else {
1112
+ // Use the embedded version info since the runtime doesn't know about this revision yet
1113
+ throw new _exception2['default']('Template was precompiled with a newer version of Handlebars than the current runtime. ' + 'Please update your runtime to a newer version (' + compilerInfo[1] + ').');
1114
  }
1115
  }
1116
 
1130
  // for external users to override these as pseudo-supported APIs.
1131
  env.VM.checkRevision(templateSpec.compiler);
1132
 
1133
+ // backwards compatibility for precompiled templates with compiler-version 7 (<4.3.0)
1134
+ var templateWasPrecompiledWithCompilerV7 = templateSpec.compiler && templateSpec.compiler[0] === 7;
1135
+
1136
  function invokePartialWrapper(partial, context, options) {
1137
  if (options.hash) {
1138
  context = Utils.extend({}, context, options.hash);
1261
  }
1262
 
1263
  container.hooks = {};
1264
+
1265
+ var keepHelperInHelpers = options.allowCallsToHelperMissing || templateWasPrecompiledWithCompilerV7;
1266
+ _helpers.moveHelperToHooks(container, 'helperMissing', keepHelperInHelpers);
1267
+ _helpers.moveHelperToHooks(container, 'blockHelperMissing', keepHelperInHelpers);
1268
  } else {
1269
  container.helpers = options.helpers;
1270
  container.partials = options.partials;
1625
 
1626
  var _parser2 = _interopRequireDefault(_parser);
1627
 
1628
+ var _whitespaceControl = __webpack_require__(38);
1629
 
1630
  var _whitespaceControl2 = _interopRequireDefault(_whitespaceControl);
1631
 
1632
+ var _helpers = __webpack_require__(40);
1633
 
1634
  var Helpers = _interopRequireWildcard(_helpers);
1635
 
1659
 
1660
  /***/ }),
1661
  /* 37 */
1662
+ /***/ (function(module, exports) {
1663
 
1664
  // File ignored in coverage tests via setting in .istanbul.yml
1665
+ /* Jison generated parser */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1666
  "use strict";
1667
 
 
 
1668
  exports.__esModule = true;
1669
  var handlebars = (function () {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1670
  var parser = { trace: function trace() {},
1671
  yy: {},
1672
+ symbols_: { "error": 2, "root": 3, "program": 4, "EOF": 5, "program_repetition0": 6, "statement": 7, "mustache": 8, "block": 9, "rawBlock": 10, "partial": 11, "partialBlock": 12, "content": 13, "COMMENT": 14, "CONTENT": 15, "openRawBlock": 16, "rawBlock_repetition0": 17, "END_RAW_BLOCK": 18, "OPEN_RAW_BLOCK": 19, "helperName": 20, "openRawBlock_repetition0": 21, "openRawBlock_option0": 22, "CLOSE_RAW_BLOCK": 23, "openBlock": 24, "block_option0": 25, "closeBlock": 26, "openInverse": 27, "block_option1": 28, "OPEN_BLOCK": 29, "openBlock_repetition0": 30, "openBlock_option0": 31, "openBlock_option1": 32, "CLOSE": 33, "OPEN_INVERSE": 34, "openInverse_repetition0": 35, "openInverse_option0": 36, "openInverse_option1": 37, "openInverseChain": 38, "OPEN_INVERSE_CHAIN": 39, "openInverseChain_repetition0": 40, "openInverseChain_option0": 41, "openInverseChain_option1": 42, "inverseAndProgram": 43, "INVERSE": 44, "inverseChain": 45, "inverseChain_option0": 46, "OPEN_ENDBLOCK": 47, "OPEN": 48, "mustache_repetition0": 49, "mustache_option0": 50, "OPEN_UNESCAPED": 51, "mustache_repetition1": 52, "mustache_option1": 53, "CLOSE_UNESCAPED": 54, "OPEN_PARTIAL": 55, "partialName": 56, "partial_repetition0": 57, "partial_option0": 58, "openPartialBlock": 59, "OPEN_PARTIAL_BLOCK": 60, "openPartialBlock_repetition0": 61, "openPartialBlock_option0": 62, "param": 63, "sexpr": 64, "OPEN_SEXPR": 65, "sexpr_repetition0": 66, "sexpr_option0": 67, "CLOSE_SEXPR": 68, "hash": 69, "hash_repetition_plus0": 70, "hashSegment": 71, "ID": 72, "EQUALS": 73, "blockParams": 74, "OPEN_BLOCK_PARAMS": 75, "blockParams_repetition_plus0": 76, "CLOSE_BLOCK_PARAMS": 77, "path": 78, "dataName": 79, "STRING": 80, "NUMBER": 81, "BOOLEAN": 82, "UNDEFINED": 83, "NULL": 84, "DATA": 85, "pathSegments": 86, "SEP": 87, "$accept": 0, "$end": 1 },
1673
  terminals_: { 2: "error", 5: "EOF", 14: "COMMENT", 15: "CONTENT", 18: "END_RAW_BLOCK", 19: "OPEN_RAW_BLOCK", 23: "CLOSE_RAW_BLOCK", 29: "OPEN_BLOCK", 33: "CLOSE", 34: "OPEN_INVERSE", 39: "OPEN_INVERSE_CHAIN", 44: "INVERSE", 47: "OPEN_ENDBLOCK", 48: "OPEN", 51: "OPEN_UNESCAPED", 54: "CLOSE_UNESCAPED", 55: "OPEN_PARTIAL", 60: "OPEN_PARTIAL_BLOCK", 65: "OPEN_SEXPR", 68: "CLOSE_SEXPR", 72: "ID", 73: "EQUALS", 75: "OPEN_BLOCK_PARAMS", 77: "CLOSE_BLOCK_PARAMS", 80: "STRING", 81: "NUMBER", 82: "BOOLEAN", 83: "UNDEFINED", 84: "NULL", 85: "DATA", 87: "SEP" },
1674
+ productions_: [0, [3, 2], [4, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [7, 1], [13, 1], [10, 3], [16, 5], [9, 4], [9, 4], [24, 6], [27, 6], [38, 6], [43, 2], [45, 3], [45, 1], [26, 3], [8, 5], [8, 5], [11, 5], [12, 3], [59, 5], [63, 1], [63, 1], [64, 5], [69, 1], [71, 3], [74, 3], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [20, 1], [56, 1], [56, 1], [79, 2], [78, 1], [86, 3], [86, 1], [6, 0], [6, 2], [17, 0], [17, 2], [21, 0], [21, 2], [22, 0], [22, 1], [25, 0], [25, 1], [28, 0], [28, 1], [30, 0], [30, 2], [31, 0], [31, 1], [32, 0], [32, 1], [35, 0], [35, 2], [36, 0], [36, 1], [37, 0], [37, 1], [40, 0], [40, 2], [41, 0], [41, 1], [42, 0], [42, 1], [46, 0], [46, 1], [49, 0], [49, 2], [50, 0], [50, 1], [52, 0], [52, 2], [53, 0], [53, 1], [57, 0], [57, 2], [58, 0], [58, 1], [61, 0], [61, 2], [62, 0], [62, 1], [66, 0], [66, 2], [67, 0], [67, 1], [70, 1], [70, 2], [76, 1], [76, 2]],
1675
+ performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate, $$, _$) {
 
1676
 
1677
  var $0 = $$.length - 1;
1678
  switch (yystate) {
1682
  case 2:
1683
  this.$ = yy.prepareProgram($$[$0]);
1684
  break;
1685
+ case 3:
1686
+ this.$ = $$[$0];
1687
+ break;
1688
+ case 4:
1689
+ this.$ = $$[$0];
1690
+ break;
1691
+ case 5:
1692
+ this.$ = $$[$0];
1693
+ break;
1694
+ case 6:
1695
+ this.$ = $$[$0];
1696
+ break;
1697
+ case 7:
1698
+ this.$ = $$[$0];
1699
+ break;
1700
+ case 8:
1701
  this.$ = $$[$0];
1702
  break;
1703
  case 9:
 
1704
  this.$ = {
1705
  type: 'CommentStatement',
1706
  value: yy.stripComment($$[$0]),
1710
 
1711
  break;
1712
  case 10:
 
1713
  this.$ = {
1714
  type: 'ContentStatement',
1715
  original: $$[$0],
1733
  case 15:
1734
  this.$ = { open: $$[$0 - 5], path: $$[$0 - 4], params: $$[$0 - 3], hash: $$[$0 - 2], blockParams: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 5], $$[$0]) };
1735
  break;
1736
+ case 16:
1737
+ this.$ = { path: $$[$0 - 4], params: $$[$0 - 3], hash: $$[$0 - 2], blockParams: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 5], $$[$0]) };
1738
+ break;
1739
+ case 17:
1740
  this.$ = { path: $$[$0 - 4], params: $$[$0 - 3], hash: $$[$0 - 2], blockParams: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 5], $$[$0]) };
1741
  break;
1742
  case 18:
1743
  this.$ = { strip: yy.stripFlags($$[$0 - 1], $$[$0 - 1]), program: $$[$0] };
1744
  break;
1745
  case 19:
 
1746
  var inverse = yy.prepareBlock($$[$0 - 2], $$[$0 - 1], $$[$0], $$[$0], false, this._$),
1747
  program = yy.prepareProgram([inverse], $$[$0 - 1].loc);
1748
  program.chained = true;
1749
 
1750
  this.$ = { strip: $$[$0 - 2].strip, program: program, chain: true };
1751
 
1752
+ break;
1753
+ case 20:
1754
+ this.$ = $$[$0];
1755
  break;
1756
  case 21:
1757
  this.$ = { path: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 2], $$[$0]) };
1758
  break;
1759
+ case 22:
1760
+ this.$ = yy.prepareMustache($$[$0 - 3], $$[$0 - 2], $$[$0 - 1], $$[$0 - 4], yy.stripFlags($$[$0 - 4], $$[$0]), this._$);
1761
+ break;
1762
+ case 23:
1763
  this.$ = yy.prepareMustache($$[$0 - 3], $$[$0 - 2], $$[$0 - 1], $$[$0 - 4], yy.stripFlags($$[$0 - 4], $$[$0]), this._$);
1764
  break;
1765
  case 24:
 
1766
  this.$ = {
1767
  type: 'PartialStatement',
1768
  name: $$[$0 - 3],
1780
  case 26:
1781
  this.$ = { path: $$[$0 - 3], params: $$[$0 - 2], hash: $$[$0 - 1], strip: yy.stripFlags($$[$0 - 4], $$[$0]) };
1782
  break;
1783
+ case 27:
1784
+ this.$ = $$[$0];
1785
+ break;
1786
+ case 28:
1787
+ this.$ = $$[$0];
1788
+ break;
1789
  case 29:
 
1790
  this.$ = {
1791
  type: 'SubExpression',
1792
  path: $$[$0 - 3],
1805
  case 32:
1806
  this.$ = yy.id($$[$0 - 1]);
1807
  break;
1808
+ case 33:
1809
+ this.$ = $$[$0];
1810
+ break;
1811
+ case 34:
1812
+ this.$ = $$[$0];
1813
+ break;
1814
  case 35:
1815
  this.$ = { type: 'StringLiteral', value: $$[$0], original: $$[$0], loc: yy.locInfo(this._$) };
1816
  break;
1826
  case 39:
1827
  this.$ = { type: 'NullLiteral', original: null, value: null, loc: yy.locInfo(this._$) };
1828
  break;
1829
+ case 40:
1830
+ this.$ = $$[$0];
1831
+ break;
1832
+ case 41:
1833
+ this.$ = $$[$0];
1834
+ break;
1835
  case 42:
1836
  this.$ = yy.preparePath(true, $$[$0], this._$);
1837
  break;
1844
  case 45:
1845
  this.$ = [{ part: yy.id($$[$0]), original: $$[$0] }];
1846
  break;
1847
+ case 46:
1848
  this.$ = [];
1849
  break;
1850
+ case 47:
1851
  $$[$0 - 1].push($$[$0]);
1852
  break;
1853
+ case 48:
1854
+ this.$ = [];
1855
+ break;
1856
+ case 49:
1857
+ $$[$0 - 1].push($$[$0]);
1858
+ break;
1859
+ case 50:
1860
+ this.$ = [];
1861
+ break;
1862
+ case 51:
1863
+ $$[$0 - 1].push($$[$0]);
1864
+ break;
1865
+ case 58:
1866
+ this.$ = [];
1867
+ break;
1868
+ case 59:
1869
+ $$[$0 - 1].push($$[$0]);
1870
+ break;
1871
+ case 64:
1872
+ this.$ = [];
1873
+ break;
1874
+ case 65:
1875
+ $$[$0 - 1].push($$[$0]);
1876
+ break;
1877
+ case 70:
1878
+ this.$ = [];
1879
+ break;
1880
+ case 71:
1881
+ $$[$0 - 1].push($$[$0]);
1882
+ break;
1883
+ case 78:
1884
+ this.$ = [];
1885
+ break;
1886
+ case 79:
1887
+ $$[$0 - 1].push($$[$0]);
1888
+ break;
1889
+ case 82:
1890
+ this.$ = [];
1891
+ break;
1892
+ case 83:
1893
+ $$[$0 - 1].push($$[$0]);
1894
+ break;
1895
+ case 86:
1896
+ this.$ = [];
1897
+ break;
1898
+ case 87:
1899
+ $$[$0 - 1].push($$[$0]);
1900
+ break;
1901
+ case 90:
1902
+ this.$ = [];
1903
+ break;
1904
+ case 91:
1905
+ $$[$0 - 1].push($$[$0]);
1906
+ break;
1907
+ case 94:
1908
+ this.$ = [];
1909
+ break;
1910
+ case 95:
1911
+ $$[$0 - 1].push($$[$0]);
1912
+ break;
1913
+ case 98:
1914
  this.$ = [$$[$0]];
1915
  break;
1916
+ case 99:
1917
+ $$[$0 - 1].push($$[$0]);
1918
+ break;
1919
+ case 100:
1920
+ this.$ = [$$[$0]];
1921
+ break;
1922
+ case 101:
1923
+ $$[$0 - 1].push($$[$0]);
1924
+ break;
1925
  }
1926
  },
1927
+ table: [{ 3: 1, 4: 2, 5: [2, 46], 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 1: [3] }, { 5: [1, 4] }, { 5: [2, 2], 7: 5, 8: 6, 9: 7, 10: 8, 11: 9, 12: 10, 13: 11, 14: [1, 12], 15: [1, 20], 16: 17, 19: [1, 23], 24: 15, 27: 16, 29: [1, 21], 34: [1, 22], 39: [2, 2], 44: [2, 2], 47: [2, 2], 48: [1, 13], 51: [1, 14], 55: [1, 18], 59: 19, 60: [1, 24] }, { 1: [2, 1] }, { 5: [2, 47], 14: [2, 47], 15: [2, 47], 19: [2, 47], 29: [2, 47], 34: [2, 47], 39: [2, 47], 44: [2, 47], 47: [2, 47], 48: [2, 47], 51: [2, 47], 55: [2, 47], 60: [2, 47] }, { 5: [2, 3], 14: [2, 3], 15: [2, 3], 19: [2, 3], 29: [2, 3], 34: [2, 3], 39: [2, 3], 44: [2, 3], 47: [2, 3], 48: [2, 3], 51: [2, 3], 55: [2, 3], 60: [2, 3] }, { 5: [2, 4], 14: [2, 4], 15: [2, 4], 19: [2, 4], 29: [2, 4], 34: [2, 4], 39: [2, 4], 44: [2, 4], 47: [2, 4], 48: [2, 4], 51: [2, 4], 55: [2, 4], 60: [2, 4] }, { 5: [2, 5], 14: [2, 5], 15: [2, 5], 19: [2, 5], 29: [2, 5], 34: [2, 5], 39: [2, 5], 44: [2, 5], 47: [2, 5], 48: [2, 5], 51: [2, 5], 55: [2, 5], 60: [2, 5] }, { 5: [2, 6], 14: [2, 6], 15: [2, 6], 19: [2, 6], 29: [2, 6], 34: [2, 6], 39: [2, 6], 44: [2, 6], 47: [2, 6], 48: [2, 6], 51: [2, 6], 55: [2, 6], 60: [2, 6] }, { 5: [2, 7], 14: [2, 7], 15: [2, 7], 19: [2, 7], 29: [2, 7], 34: [2, 7], 39: [2, 7], 44: [2, 7], 47: [2, 7], 48: [2, 7], 51: [2, 7], 55: [2, 7], 60: [2, 7] }, { 5: [2, 8], 14: [2, 8], 15: [2, 8], 19: [2, 8], 29: [2, 8], 34: [2, 8], 39: [2, 8], 44: [2, 8], 47: [2, 8], 48: [2, 8], 51: [2, 8], 55: [2, 8], 60: [2, 8] }, { 5: [2, 9], 14: [2, 9], 15: [2, 9], 19: [2, 9], 29: [2, 9], 34: [2, 9], 39: [2, 9], 44: [2, 9], 47: [2, 9], 48: [2, 9], 51: [2, 9], 55: [2, 9], 60: [2, 9] }, { 20: 25, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 36, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 4: 37, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 39: [2, 46], 44: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 4: 38, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 44: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 15: [2, 48], 17: 39, 18: [2, 48] }, { 20: 41, 56: 40, 64: 42, 65: [1, 43], 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 4: 44, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 5: [2, 10], 14: [2, 10], 15: [2, 10], 18: [2, 10], 19: [2, 10], 29: [2, 10], 34: [2, 10], 39: [2, 10], 44: [2, 10], 47: [2, 10], 48: [2, 10], 51: [2, 10], 55: [2, 10], 60: [2, 10] }, { 20: 45, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 46, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 47, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 41, 56: 48, 64: 42, 65: [1, 43], 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 33: [2, 78], 49: 49, 65: [2, 78], 72: [2, 78], 80: [2, 78], 81: [2, 78], 82: [2, 78], 83: [2, 78], 84: [2, 78], 85: [2, 78] }, { 23: [2, 33], 33: [2, 33], 54: [2, 33], 65: [2, 33], 68: [2, 33], 72: [2, 33], 75: [2, 33], 80: [2, 33], 81: [2, 33], 82: [2, 33], 83: [2, 33], 84: [2, 33], 85: [2, 33] }, { 23: [2, 34], 33: [2, 34], 54: [2, 34], 65: [2, 34], 68: [2, 34], 72: [2, 34], 75: [2, 34], 80: [2, 34], 81: [2, 34], 82: [2, 34], 83: [2, 34], 84: [2, 34], 85: [2, 34] }, { 23: [2, 35], 33: [2, 35], 54: [2, 35], 65: [2, 35], 68: [2, 35], 72: [2, 35], 75: [2, 35], 80: [2, 35], 81: [2, 35], 82: [2, 35], 83: [2, 35], 84: [2, 35], 85: [2, 35] }, { 23: [2, 36], 33: [2, 36], 54: [2, 36], 65: [2, 36], 68: [2, 36], 72: [2, 36], 75: [2, 36], 80: [2, 36], 81: [2, 36], 82: [2, 36], 83: [2, 36], 84: [2, 36], 85: [2, 36] }, { 23: [2, 37], 33: [2, 37], 54: [2, 37], 65: [2, 37], 68: [2, 37], 72: [2, 37], 75: [2, 37], 80: [2, 37], 81: [2, 37], 82: [2, 37], 83: [2, 37], 84: [2, 37], 85: [2, 37] }, { 23: [2, 38], 33: [2, 38], 54: [2, 38], 65: [2, 38], 68: [2, 38], 72: [2, 38], 75: [2, 38], 80: [2, 38], 81: [2, 38], 82: [2, 38], 83: [2, 38], 84: [2, 38], 85: [2, 38] }, { 23: [2, 39], 33: [2, 39], 54: [2, 39], 65: [2, 39], 68: [2, 39], 72: [2, 39], 75: [2, 39], 80: [2, 39], 81: [2, 39], 82: [2, 39], 83: [2, 39], 84: [2, 39], 85: [2, 39] }, { 23: [2, 43], 33: [2, 43], 54: [2, 43], 65: [2, 43], 68: [2, 43], 72: [2, 43], 75: [2, 43], 80: [2, 43], 81: [2, 43], 82: [2, 43], 83: [2, 43], 84: [2, 43], 85: [2, 43], 87: [1, 50] }, { 72: [1, 35], 86: 51 }, { 23: [2, 45], 33: [2, 45], 54: [2, 45], 65: [2, 45], 68: [2, 45], 72: [2, 45], 75: [2, 45], 80: [2, 45], 81: [2, 45], 82: [2, 45], 83: [2, 45], 84: [2, 45], 85: [2, 45], 87: [2, 45] }, { 52: 52, 54: [2, 82], 65: [2, 82], 72: [2, 82], 80: [2, 82], 81: [2, 82], 82: [2, 82], 83: [2, 82], 84: [2, 82], 85: [2, 82] }, { 25: 53, 38: 55, 39: [1, 57], 43: 56, 44: [1, 58], 45: 54, 47: [2, 54] }, { 28: 59, 43: 60, 44: [1, 58], 47: [2, 56] }, { 13: 62, 15: [1, 20], 18: [1, 61] }, { 33: [2, 86], 57: 63, 65: [2, 86], 72: [2, 86], 80: [2, 86], 81: [2, 86], 82: [2, 86], 83: [2, 86], 84: [2, 86], 85: [2, 86] }, { 33: [2, 40], 65: [2, 40], 72: [2, 40], 80: [2, 40], 81: [2, 40], 82: [2, 40], 83: [2, 40], 84: [2, 40], 85: [2, 40] }, { 33: [2, 41], 65: [2, 41], 72: [2, 41], 80: [2, 41], 81: [2, 41], 82: [2, 41], 83: [2, 41], 84: [2, 41], 85: [2, 41] }, { 20: 64, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 26: 65, 47: [1, 66] }, { 30: 67, 33: [2, 58], 65: [2, 58], 72: [2, 58], 75: [2, 58], 80: [2, 58], 81: [2, 58], 82: [2, 58], 83: [2, 58], 84: [2, 58], 85: [2, 58] }, { 33: [2, 64], 35: 68, 65: [2, 64], 72: [2, 64], 75: [2, 64], 80: [2, 64], 81: [2, 64], 82: [2, 64], 83: [2, 64], 84: [2, 64], 85: [2, 64] }, { 21: 69, 23: [2, 50], 65: [2, 50], 72: [2, 50], 80: [2, 50], 81: [2, 50], 82: [2, 50], 83: [2, 50], 84: [2, 50], 85: [2, 50] }, { 33: [2, 90], 61: 70, 65: [2, 90], 72: [2, 90], 80: [2, 90], 81: [2, 90], 82: [2, 90], 83: [2, 90], 84: [2, 90], 85: [2, 90] }, { 20: 74, 33: [2, 80], 50: 71, 63: 72, 64: 75, 65: [1, 43], 69: 73, 70: 76, 71: 77, 72: [1, 78], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 72: [1, 79] }, { 23: [2, 42], 33: [2, 42], 54: [2, 42], 65: [2, 42], 68: [2, 42], 72: [2, 42], 75: [2, 42], 80: [2, 42], 81: [2, 42], 82: [2, 42], 83: [2, 42], 84: [2, 42], 85: [2, 42], 87: [1, 50] }, { 20: 74, 53: 80, 54: [2, 84], 63: 81, 64: 75, 65: [1, 43], 69: 82, 70: 76, 71: 77, 72: [1, 78], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 26: 83, 47: [1, 66] }, { 47: [2, 55] }, { 4: 84, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 39: [2, 46], 44: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 47: [2, 20] }, { 20: 85, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 4: 86, 6: 3, 14: [2, 46], 15: [2, 46], 19: [2, 46], 29: [2, 46], 34: [2, 46], 47: [2, 46], 48: [2, 46], 51: [2, 46], 55: [2, 46], 60: [2, 46] }, { 26: 87, 47: [1, 66] }, { 47: [2, 57] }, { 5: [2, 11], 14: [2, 11], 15: [2, 11], 19: [2, 11], 29: [2, 11], 34: [2, 11], 39: [2, 11], 44: [2, 11], 47: [2, 11], 48: [2, 11], 51: [2, 11], 55: [2, 11], 60: [2, 11] }, { 15: [2, 49], 18: [2, 49] }, { 20: 74, 33: [2, 88], 58: 88, 63: 89, 64: 75, 65: [1, 43], 69: 90, 70: 76, 71: 77, 72: [1, 78], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 65: [2, 94], 66: 91, 68: [2, 94], 72: [2, 94], 80: [2, 94], 81: [2, 94], 82: [2, 94], 83: [2, 94], 84: [2, 94], 85: [2, 94] }, { 5: [2, 25], 14: [2, 25], 15: [2, 25], 19: [2, 25], 29: [2, 25], 34: [2, 25], 39: [2, 25], 44: [2, 25], 47: [2, 25], 48: [2, 25], 51: [2, 25], 55: [2, 25], 60: [2, 25] }, { 20: 92, 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 74, 31: 93, 33: [2, 60], 63: 94, 64: 75, 65: [1, 43], 69: 95, 70: 76, 71: 77, 72: [1, 78], 75: [2, 60], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 74, 33: [2, 66], 36: 96, 63: 97, 64: 75, 65: [1, 43], 69: 98, 70: 76, 71: 77, 72: [1, 78], 75: [2, 66], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 74, 22: 99, 23: [2, 52], 63: 100, 64: 75, 65: [1, 43], 69: 101, 70: 76, 71: 77, 72: [1, 78], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 20: 74, 33: [2, 92], 62: 102, 63: 103, 64: 75, 65: [1, 43], 69: 104, 70: 76, 71: 77, 72: [1, 78], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 33: [1, 105] }, { 33: [2, 79], 65: [2, 79], 72: [2, 79], 80: [2, 79], 81: [2, 79], 82: [2, 79], 83: [2, 79], 84: [2, 79], 85: [2, 79] }, { 33: [2, 81] }, { 23: [2, 27], 33: [2, 27], 54: [2, 27], 65: [2, 27], 68: [2, 27], 72: [2, 27], 75: [2, 27], 80: [2, 27], 81: [2, 27], 82: [2, 27], 83: [2, 27], 84: [2, 27], 85: [2, 27] }, { 23: [2, 28], 33: [2, 28], 54: [2, 28], 65: [2, 28], 68: [2, 28], 72: [2, 28], 75: [2, 28], 80: [2, 28], 81: [2, 28], 82: [2, 28], 83: [2, 28], 84: [2, 28], 85: [2, 28] }, { 23: [2, 30], 33: [2, 30], 54: [2, 30], 68: [2, 30], 71: 106, 72: [1, 107], 75: [2, 30] }, { 23: [2, 98], 33: [2, 98], 54: [2, 98], 68: [2, 98], 72: [2, 98], 75: [2, 98] }, { 23: [2, 45], 33: [2, 45], 54: [2, 45], 65: [2, 45], 68: [2, 45], 72: [2, 45], 73: [1, 108], 75: [2, 45], 80: [2, 45], 81: [2, 45], 82: [2, 45], 83: [2, 45], 84: [2, 45], 85: [2, 45], 87: [2, 45] }, { 23: [2, 44], 33: [2, 44], 54: [2, 44], 65: [2, 44], 68: [2, 44], 72: [2, 44], 75: [2, 44], 80: [2, 44], 81: [2, 44], 82: [2, 44], 83: [2, 44], 84: [2, 44], 85: [2, 44], 87: [2, 44] }, { 54: [1, 109] }, { 54: [2, 83], 65: [2, 83], 72: [2, 83], 80: [2, 83], 81: [2, 83], 82: [2, 83], 83: [2, 83], 84: [2, 83], 85: [2, 83] }, { 54: [2, 85] }, { 5: [2, 13], 14: [2, 13], 15: [2, 13], 19: [2, 13], 29: [2, 13], 34: [2, 13], 39: [2, 13], 44: [2, 13], 47: [2, 13], 48: [2, 13], 51: [2, 13], 55: [2, 13], 60: [2, 13] }, { 38: 55, 39: [1, 57], 43: 56, 44: [1, 58], 45: 111, 46: 110, 47: [2, 76] }, { 33: [2, 70], 40: 112, 65: [2, 70], 72: [2, 70], 75: [2, 70], 80: [2, 70], 81: [2, 70], 82: [2, 70], 83: [2, 70], 84: [2, 70], 85: [2, 70] }, { 47: [2, 18] }, { 5: [2, 14], 14: [2, 14], 15: [2, 14], 19: [2, 14], 29: [2, 14], 34: [2, 14], 39: [2, 14], 44: [2, 14], 47: [2, 14], 48: [2, 14], 51: [2, 14], 55: [2, 14], 60: [2, 14] }, { 33: [1, 113] }, { 33: [2, 87], 65: [2, 87], 72: [2, 87], 80: [2, 87], 81: [2, 87], 82: [2, 87], 83: [2, 87], 84: [2, 87], 85: [2, 87] }, { 33: [2, 89] }, { 20: 74, 63: 115, 64: 75, 65: [1, 43], 67: 114, 68: [2, 96], 69: 116, 70: 76, 71: 77, 72: [1, 78], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 33: [1, 117] }, { 32: 118, 33: [2, 62], 74: 119, 75: [1, 120] }, { 33: [2, 59], 65: [2, 59], 72: [2, 59], 75: [2, 59], 80: [2, 59], 81: [2, 59], 82: [2, 59], 83: [2, 59], 84: [2, 59], 85: [2, 59] }, { 33: [2, 61], 75: [2, 61] }, { 33: [2, 68], 37: 121, 74: 122, 75: [1, 120] }, { 33: [2, 65], 65: [2, 65], 72: [2, 65], 75: [2, 65], 80: [2, 65], 81: [2, 65], 82: [2, 65], 83: [2, 65], 84: [2, 65], 85: [2, 65] }, { 33: [2, 67], 75: [2, 67] }, { 23: [1, 123] }, { 23: [2, 51], 65: [2, 51], 72: [2, 51], 80: [2, 51], 81: [2, 51], 82: [2, 51], 83: [2, 51], 84: [2, 51], 85: [2, 51] }, { 23: [2, 53] }, { 33: [1, 124] }, { 33: [2, 91], 65: [2, 91], 72: [2, 91], 80: [2, 91], 81: [2, 91], 82: [2, 91], 83: [2, 91], 84: [2, 91], 85: [2, 91] }, { 33: [2, 93] }, { 5: [2, 22], 14: [2, 22], 15: [2, 22], 19: [2, 22], 29: [2, 22], 34: [2, 22], 39: [2, 22], 44: [2, 22], 47: [2, 22], 48: [2, 22], 51: [2, 22], 55: [2, 22], 60: [2, 22] }, { 23: [2, 99], 33: [2, 99], 54: [2, 99], 68: [2, 99], 72: [2, 99], 75: [2, 99] }, { 73: [1, 108] }, { 20: 74, 63: 125, 64: 75, 65: [1, 43], 72: [1, 35], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 5: [2, 23], 14: [2, 23], 15: [2, 23], 19: [2, 23], 29: [2, 23], 34: [2, 23], 39: [2, 23], 44: [2, 23], 47: [2, 23], 48: [2, 23], 51: [2, 23], 55: [2, 23], 60: [2, 23] }, { 47: [2, 19] }, { 47: [2, 77] }, { 20: 74, 33: [2, 72], 41: 126, 63: 127, 64: 75, 65: [1, 43], 69: 128, 70: 76, 71: 77, 72: [1, 78], 75: [2, 72], 78: 26, 79: 27, 80: [1, 28], 81: [1, 29], 82: [1, 30], 83: [1, 31], 84: [1, 32], 85: [1, 34], 86: 33 }, { 5: [2, 24], 14: [2, 24], 15: [2, 24], 19: [2, 24], 29: [2, 24], 34: [2, 24], 39: [2, 24], 44: [2, 24], 47: [2, 24], 48: [2, 24], 51: [2, 24], 55: [2, 24], 60: [2, 24] }, { 68: [1, 129] }, { 65: [2, 95], 68: [2, 95], 72: [2, 95], 80: [2, 95], 81: [2, 95], 82: [2, 95], 83: [2, 95], 84: [2, 95], 85: [2, 95] }, { 68: [2, 97] }, { 5: [2, 21], 14: [2, 21], 15: [2, 21], 19: [2, 21], 29: [2, 21], 34: [2, 21], 39: [2, 21], 44: [2, 21], 47: [2, 21], 48: [2, 21], 51: [2, 21], 55: [2, 21], 60: [2, 21] }, { 33: [1, 130] }, { 33: [2, 63] }, { 72: [1, 132], 76: 131 }, { 33: [1, 133] }, { 33: [2, 69] }, { 15: [2, 12], 18: [2, 12] }, { 14: [2, 26], 15: [2, 26], 19: [2, 26], 29: [2, 26], 34: [2, 26], 47: [2, 26], 48: [2, 26], 51: [2, 26], 55: [2, 26], 60: [2, 26] }, { 23: [2, 31], 33: [2, 31], 54: [2, 31], 68: [2, 31], 72: [2, 31], 75: [2, 31] }, { 33: [2, 74], 42: 134, 74: 135, 75: [1, 120] }, { 33: [2, 71], 65: [2, 71], 72: [2, 71], 75: [2, 71], 80: [2, 71], 81: [2, 71], 82: [2, 71], 83: [2, 71], 84: [2, 71], 85: [2, 71] }, { 33: [2, 73], 75: [2, 73] }, { 23: [2, 29], 33: [2, 29], 54: [2, 29], 65: [2, 29], 68: [2, 29], 72: [2, 29], 75: [2, 29], 80: [2, 29], 81: [2, 29], 82: [2, 29], 83: [2, 29], 84: [2, 29], 85: [2, 29] }, { 14: [2, 15], 15: [2, 15], 19: [2, 15], 29: [2, 15], 34: [2, 15], 39: [2, 15], 44: [2, 15], 47: [2, 15], 48: [2, 15], 51: [2, 15], 55: [2, 15], 60: [2, 15] }, { 72: [1, 137], 77: [1, 136] }, { 72: [2, 100], 77: [2, 100] }, { 14: [2, 16], 15: [2, 16], 19: [2, 16], 29: [2, 16], 34: [2, 16], 44: [2, 16], 47: [2, 16], 48: [2, 16], 51: [2, 16], 55: [2, 16], 60: [2, 16] }, { 33: [1, 138] }, { 33: [2, 75] }, { 33: [2, 32] }, { 72: [2, 101], 77: [2, 101] }, { 14: [2, 17], 15: [2, 17], 19: [2, 17], 29: [2, 17], 34: [2, 17], 39: [2, 17], 44: [2, 17], 47: [2, 17], 48: [2, 17], 51: [2, 17], 55: [2, 17], 60: [2, 17] }],
1928
+ defaultActions: { 4: [2, 1], 54: [2, 55], 56: [2, 20], 60: [2, 57], 73: [2, 81], 82: [2, 85], 86: [2, 18], 90: [2, 89], 101: [2, 53], 104: [2, 93], 110: [2, 19], 111: [2, 77], 116: [2, 97], 119: [2, 63], 122: [2, 69], 135: [2, 75], 136: [2, 32] },
1929
  parseError: function parseError(str, hash) {
1930
+ throw new Error(str);
 
 
 
 
 
 
 
 
 
 
 
1931
  },
1932
  parse: function parse(input) {
1933
  var self = this,
1934
  stack = [0],
 
1935
  vstack = [null],
1936
  lstack = [],
1937
  table = this.table,
1938
+ yytext = "",
1939
  yylineno = 0,
1940
  yyleng = 0,
1941
  recovering = 0,
1942
  TERROR = 2,
1943
  EOF = 1;
1944
+ this.lexer.setInput(input);
1945
+ this.lexer.yy = this.yy;
1946
+ this.yy.lexer = this.lexer;
1947
+ this.yy.parser = this;
1948
+ if (typeof this.lexer.yylloc == "undefined") this.lexer.yylloc = {};
1949
+ var yyloc = this.lexer.yylloc;
 
 
 
 
 
 
 
 
 
1950
  lstack.push(yyloc);
1951
+ var ranges = this.lexer.options && this.lexer.options.ranges;
1952
+ if (typeof this.yy.parseError === "function") this.parseError = this.yy.parseError;
 
 
 
 
1953
  function popStack(n) {
1954
  stack.length = stack.length - 2 * n;
1955
  vstack.length = vstack.length - n;
1956
  lstack.length = lstack.length - n;
1957
  }
1958
+ function lex() {
1959
  var token;
1960
+ token = self.lexer.lex() || 1;
1961
+ if (typeof token !== "number") {
1962
  token = self.symbols_[token] || token;
1963
  }
1964
  return token;
1965
+ }
1966
  var symbol,
1967
  preErrorSymbol,
1968
  state,
1979
  if (this.defaultActions[state]) {
1980
  action = this.defaultActions[state];
1981
  } else {
1982
+ if (symbol === null || typeof symbol == "undefined") {
1983
  symbol = lex();
1984
  }
1985
  action = table[state] && table[state][symbol];
1986
  }
1987
+ if (typeof action === "undefined" || !action.length || !action[0]) {
1988
+ var errStr = "";
1989
+ if (!recovering) {
1990
+ expected = [];
1991
+ for (p in table[state]) if (this.terminals_[p] && p > 2) {
1992
+ expected.push("'" + this.terminals_[p] + "'");
1993
  }
1994
+ if (this.lexer.showPosition) {
1995
+ errStr = "Parse error on line " + (yylineno + 1) + ":\n" + this.lexer.showPosition() + "\nExpecting " + expected.join(", ") + ", got '" + (this.terminals_[symbol] || symbol) + "'";
1996
+ } else {
1997
+ errStr = "Parse error on line " + (yylineno + 1) + ": Unexpected " + (symbol == 1 ? "end of input" : "'" + (this.terminals_[symbol] || symbol) + "'");
1998
+ }
1999
+ this.parseError(errStr, { text: this.lexer.match, token: this.terminals_[symbol] || symbol, line: this.lexer.yylineno, loc: yyloc, expected: expected });
2000
  }
 
 
 
 
 
 
 
 
 
 
 
 
2001
  }
2002
  if (action[0] instanceof Array && action.length > 1) {
2003
+ throw new Error("Parse Error: multiple actions possible at state: " + state + ", token: " + symbol);
2004
  }
2005
  switch (action[0]) {
2006
  case 1:
2007
  stack.push(symbol);
2008
+ vstack.push(this.lexer.yytext);
2009
+ lstack.push(this.lexer.yylloc);
2010
  stack.push(action[1]);
2011
  symbol = null;
2012
  if (!preErrorSymbol) {
2013
+ yyleng = this.lexer.yyleng;
2014
+ yytext = this.lexer.yytext;
2015
+ yylineno = this.lexer.yylineno;
2016
+ yyloc = this.lexer.yylloc;
2017
+ if (recovering > 0) recovering--;
 
 
2018
  } else {
2019
  symbol = preErrorSymbol;
2020
  preErrorSymbol = null;
2023
  case 2:
2024
  len = this.productions_[action[1]][1];
2025
  yyval.$ = vstack[vstack.length - len];
2026
+ yyval._$ = { first_line: lstack[lstack.length - (len || 1)].first_line, last_line: lstack[lstack.length - 1].last_line, first_column: lstack[lstack.length - (len || 1)].first_column, last_column: lstack[lstack.length - 1].last_column };
 
 
 
 
 
2027
  if (ranges) {
2028
  yyval._$.range = [lstack[lstack.length - (len || 1)].range[0], lstack[lstack.length - 1].range[1]];
2029
  }
2030
+ r = this.performAction.call(yyval, yytext, yyleng, yylineno, this.yy, action[1], vstack, lstack);
2031
+ if (typeof r !== "undefined") {
2032
  return r;
2033
  }
2034
  if (len) {
2047
  }
2048
  }
2049
  return true;
2050
+ }
2051
+ };
2052
+ /* Jison generated lexer */
2053
  var lexer = (function () {
2054
+ var lexer = { EOF: 1,
 
 
 
2055
  parseError: function parseError(str, hash) {
2056
  if (this.yy.parser) {
2057
  this.yy.parser.parseError(str, hash);
2059
  throw new Error(str);
2060
  }
2061
  },
2062
+ setInput: function setInput(input) {
 
 
 
2063
  this._input = input;
2064
+ this._more = this._less = this.done = false;
2065
  this.yylineno = this.yyleng = 0;
2066
  this.yytext = this.matched = this.match = '';
2067
  this.conditionStack = ['INITIAL'];
2068
+ this.yylloc = { first_line: 1, first_column: 0, last_line: 1, last_column: 0 };
2069
+ if (this.options.ranges) this.yylloc.range = [0, 0];
 
 
 
 
 
 
 
2070
  this.offset = 0;
2071
  return this;
2072
  },
 
 
2073
  input: function input() {
2074
  var ch = this._input[0];
2075
  this.yytext += ch;
2084
  } else {
2085
  this.yylloc.last_column++;
2086
  }
2087
+ if (this.options.ranges) this.yylloc.range[1]++;
 
 
2088
 
2089
  this._input = this._input.slice(1);
2090
  return ch;
2091
  },
 
 
2092
  unput: function unput(ch) {
2093
  var len = ch.length;
2094
  var lines = ch.split(/(?:\r\n?|\n)/g);
2095
 
2096
  this._input = ch + this._input;
2097
+ this.yytext = this.yytext.substr(0, this.yytext.length - len - 1);
2098
  //this.yyleng -= len;
2099
  this.offset -= len;
2100
  var oldLines = this.match.split(/(?:\r\n?|\n)/g);
2101
  this.match = this.match.substr(0, this.match.length - 1);
2102
  this.matched = this.matched.substr(0, this.matched.length - 1);
2103
 
2104
+ if (lines.length - 1) this.yylineno -= lines.length - 1;
 
 
2105
  var r = this.yylloc.range;
2106
 
2107
+ this.yylloc = { first_line: this.yylloc.first_line,
 
2108
  last_line: this.yylineno + 1,
2109
  first_column: this.yylloc.first_column,
2110
  last_column: lines ? (lines.length === oldLines.length ? this.yylloc.first_column : 0) + oldLines[oldLines.length - lines.length].length - lines[0].length : this.yylloc.first_column - len
2113
  if (this.options.ranges) {
2114
  this.yylloc.range = [r[0], r[0] + this.yyleng - len];
2115
  }
 
2116
  return this;
2117
  },
 
 
2118
  more: function more() {
2119
  this._more = true;
2120
  return this;
2121
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2122
  less: function less(n) {
2123
  this.unput(this.match.slice(n));
2124
  },
 
 
2125
  pastInput: function pastInput() {
2126
  var past = this.matched.substr(0, this.matched.length - this.match.length);
2127
  return (past.length > 20 ? '...' : '') + past.substr(-20).replace(/\n/g, "");
2128
  },
 
 
2129
  upcomingInput: function upcomingInput() {
2130
  var next = this.match;
2131
  if (next.length < 20) {
2133
  }
2134
  return (next.substr(0, 20) + (next.length > 20 ? '...' : '')).replace(/\n/g, "");
2135
  },
 
 
2136
  showPosition: function showPosition() {
2137
  var pre = this.pastInput();
2138
  var c = new Array(pre.length + 1).join("-");
2139
  return pre + this.upcomingInput() + "\n" + c + "^";
2140
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2141
  next: function next() {
2142
  if (this.done) {
2143
  return this.EOF;
2144
  }
2145
+ if (!this._input) this.done = true;
 
 
2146
 
2147
+ var token, match, tempMatch, index, col, lines;
2148
  if (!this._more) {
2149
  this.yytext = '';
2150
  this.match = '';
2155
  if (tempMatch && (!match || tempMatch[0].length > match[0].length)) {
2156
  match = tempMatch;
2157
  index = i;
2158
+ if (!this.options.flex) break;
 
 
 
 
 
 
 
 
 
 
 
 
 
2159
  }
2160
  }
2161
  if (match) {
2162
+ lines = match[0].match(/(?:\r\n?|\n).*/g);
2163
+ if (lines) this.yylineno += lines.length;
2164
+ this.yylloc = { first_line: this.yylloc.last_line,
2165
+ last_line: this.yylineno + 1,
2166
+ first_column: this.yylloc.last_column,
2167
+ last_column: lines ? lines[lines.length - 1].length - lines[lines.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + match[0].length };
2168
+ this.yytext += match[0];
2169
+ this.match += match[0];
2170
+ this.matches = match;
2171
+ this.yyleng = this.yytext.length;
2172
+ if (this.options.ranges) {
2173
+ this.yylloc.range = [this.offset, this.offset += this.yyleng];
2174
  }
2175
+ this._more = false;
2176
+ this._input = this._input.slice(match[0].length);
2177
+ this.matched += match[0];
2178
+ token = this.performAction.call(this, this.yy, this, rules[index], this.conditionStack[this.conditionStack.length - 1]);
2179
+ if (this.done && this._input) this.done = false;
2180
+ if (token) return token;else return;
2181
  }
2182
  if (this._input === "") {
2183
  return this.EOF;
2184
  } else {
2185
+ return this.parseError('Lexical error on line ' + (this.yylineno + 1) + '. Unrecognized text.\n' + this.showPosition(), { text: "", token: null, line: this.yylineno });
 
 
 
 
2186
  }
2187
  },
 
 
2188
  lex: function lex() {
2189
  var r = this.next();
2190
+ if (typeof r !== 'undefined') {
2191
  return r;
2192
  } else {
2193
  return this.lex();
2194
  }
2195
  },
 
 
2196
  begin: function begin(condition) {
2197
  this.conditionStack.push(condition);
2198
  },
 
 
2199
  popState: function popState() {
2200
+ return this.conditionStack.pop();
 
 
 
 
 
2201
  },
 
 
2202
  _currentRules: function _currentRules() {
2203
+ return this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules;
 
 
 
 
2204
  },
2205
+ topState: function topState() {
2206
+ return this.conditionStack[this.conditionStack.length - 2];
 
 
 
 
 
 
 
2207
  },
2208
+ pushState: function begin(condition) {
 
 
2209
  this.begin(condition);
2210
+ } };
2211
+ lexer.options = {};
2212
+ lexer.performAction = function anonymous(yy, yy_, $avoiding_name_collisions, YY_START) {
2213
 
2214
+ function strip(start, end) {
2215
+ return yy_.yytext = yy_.yytext.substring(start, yy_.yyleng - end + start);
2216
+ }
 
 
 
2217
 
2218
+ var YYSTATE = YY_START;
2219
+ switch ($avoiding_name_collisions) {
2220
+ case 0:
2221
+ if (yy_.yytext.slice(-2) === "\\\\") {
2222
+ strip(0, 1);
2223
+ this.begin("mu");
2224
+ } else if (yy_.yytext.slice(-1) === "\\") {
2225
+ strip(0, 1);
2226
+ this.begin("emu");
2227
+ } else {
2228
+ this.begin("mu");
2229
+ }
2230
+ if (yy_.yytext) return 15;
2231
 
2232
+ break;
2233
+ case 1:
2234
+ return 15;
2235
+ break;
2236
+ case 2:
2237
+ this.popState();
2238
+ return 15;
 
 
 
 
 
 
2239
 
2240
+ break;
2241
+ case 3:
2242
+ this.begin('raw');return 15;
2243
+ break;
2244
+ case 4:
2245
+ this.popState();
2246
+ // Should be using `this.topState()` below, but it currently
2247
+ // returns the second top instead of the first top. Opened an
2248
+ // issue about it at https://github.com/zaach/jison/issues/291
2249
+ if (this.conditionStack[this.conditionStack.length - 1] === 'raw') {
2250
  return 15;
2251
+ } else {
2252
+ strip(5, 9);
2253
+ return 'END_RAW_BLOCK';
2254
+ }
2255
 
2256
+ break;
2257
+ case 5:
2258
+ return 15;
2259
+ break;
2260
+ case 6:
2261
+ this.popState();
2262
+ return 14;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2263
 
2264
+ break;
2265
+ case 7:
2266
+ return 65;
2267
+ break;
2268
+ case 8:
2269
+ return 68;
2270
+ break;
2271
+ case 9:
2272
+ return 19;
2273
+ break;
2274
+ case 10:
2275
+ this.popState();
2276
+ this.begin('raw');
2277
+ return 23;
2278
 
2279
+ break;
2280
+ case 11:
2281
+ return 55;
2282
+ break;
2283
+ case 12:
2284
+ return 60;
2285
+ break;
2286
+ case 13:
2287
+ return 29;
2288
+ break;
2289
+ case 14:
2290
+ return 47;
2291
+ break;
2292
+ case 15:
2293
+ this.popState();return 44;
2294
+ break;
2295
+ case 16:
2296
+ this.popState();return 44;
2297
+ break;
2298
+ case 17:
2299
+ return 34;
2300
+ break;
2301
+ case 18:
2302
+ return 39;
2303
+ break;
2304
+ case 19:
2305
+ return 51;
2306
+ break;
2307
+ case 20:
2308
+ return 48;
2309
+ break;
2310
+ case 21:
2311
+ this.unput(yy_.yytext);
2312
+ this.popState();
2313
+ this.begin('com');
2314
 
2315
+ break;
2316
+ case 22:
2317
+ this.popState();
2318
+ return 14;
2319
 
2320
+ break;
2321
+ case 23:
2322
+ return 48;
2323
+ break;
2324
+ case 24:
2325
+ return 73;
2326
+ break;
2327
+ case 25:
2328
+ return 72;
2329
+ break;
2330
+ case 26:
2331
+ return 72;
2332
+ break;
2333
+ case 27:
2334
+ return 87;
2335
+ break;
2336
+ case 28:
2337
+ // ignore whitespace
2338
+ break;
2339
+ case 29:
2340
+ this.popState();return 54;
2341
+ break;
2342
+ case 30:
2343
+ this.popState();return 33;
2344
+ break;
2345
+ case 31:
2346
+ yy_.yytext = strip(1, 2).replace(/\\"/g, '"');return 80;
2347
+ break;
2348
+ case 32:
2349
+ yy_.yytext = strip(1, 2).replace(/\\'/g, "'");return 80;
2350
+ break;
2351
+ case 33:
2352
+ return 85;
2353
+ break;
2354
+ case 34:
2355
+ return 82;
2356
+ break;
2357
+ case 35:
2358
+ return 82;
2359
+ break;
2360
+ case 36:
2361
+ return 83;
2362
+ break;
2363
+ case 37:
2364
+ return 84;
2365
+ break;
2366
+ case 38:
2367
+ return 81;
2368
+ break;
2369
+ case 39:
2370
+ return 75;
2371
+ break;
2372
+ case 40:
2373
+ return 77;
2374
+ break;
2375
+ case 41:
2376
+ return 72;
2377
+ break;
2378
+ case 42:
2379
+ yy_.yytext = yy_.yytext.replace(/\\([\\\]])/g, '$1');return 72;
2380
+ break;
2381
+ case 43:
2382
+ return 'INVALID';
2383
+ break;
2384
+ case 44:
2385
+ return 5;
2386
+ break;
2387
+ }
 
 
 
2388
  };
2389
+ lexer.rules = [/^(?:[^\x00]*?(?=(\{\{)))/, /^(?:[^\x00]+)/, /^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/, /^(?:\{\{\{\{(?=[^\/]))/, /^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/, /^(?:[^\x00]+?(?=(\{\{\{\{)))/, /^(?:[\s\S]*?--(~)?\}\})/, /^(?:\()/, /^(?:\))/, /^(?:\{\{\{\{)/, /^(?:\}\}\}\})/, /^(?:\{\{(~)?>)/, /^(?:\{\{(~)?#>)/, /^(?:\{\{(~)?#\*?)/, /^(?:\{\{(~)?\/)/, /^(?:\{\{(~)?\^\s*(~)?\}\})/, /^(?:\{\{(~)?\s*else\s*(~)?\}\})/, /^(?:\{\{(~)?\^)/, /^(?:\{\{(~)?\s*else\b)/, /^(?:\{\{(~)?\{)/, /^(?:\{\{(~)?&)/, /^(?:\{\{(~)?!--)/, /^(?:\{\{(~)?![\s\S]*?\}\})/, /^(?:\{\{(~)?\*?)/, /^(?:=)/, /^(?:\.\.)/, /^(?:\.(?=([=~}\s\/.)|])))/, /^(?:[\/.])/, /^(?:\s+)/, /^(?:\}(~)?\}\})/, /^(?:(~)?\}\})/, /^(?:"(\\["]|[^"])*")/, /^(?:'(\\[']|[^'])*')/, /^(?:@)/, /^(?:true(?=([~}\s)])))/, /^(?:false(?=([~}\s)])))/, /^(?:undefined(?=([~}\s)])))/, /^(?:null(?=([~}\s)])))/, /^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/, /^(?:as\s+\|)/, /^(?:\|)/, /^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/, /^(?:\[(\\\]|[^\]])*\])/, /^(?:.)/, /^(?:$)/];
2390
+ lexer.conditions = { "mu": { "rules": [7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "inclusive": false }, "emu": { "rules": [2], "inclusive": false }, "com": { "rules": [6], "inclusive": false }, "raw": { "rules": [3, 4, 5], "inclusive": false }, "INITIAL": { "rules": [0, 1, 44], "inclusive": true } };
2391
  return lexer;
2392
  })();
2393
  parser.lexer = lexer;
2394
  function Parser() {
2395
  this.yy = {};
2396
+ }Parser.prototype = parser;parser.Parser = Parser;
 
2397
  return new Parser();
2398
  })();exports["default"] = handlebars;
2399
  module.exports = exports["default"];
2400
 
2401
  /***/ }),
2402
  /* 38 */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2403
  /***/ (function(module, exports, __webpack_require__) {
2404
 
2405
  'use strict';
2408
 
2409
  exports.__esModule = true;
2410
 
2411
+ var _visitor = __webpack_require__(39);
2412
 
2413
  var _visitor2 = _interopRequireDefault(_visitor);
2414
 
2623
  module.exports = exports['default'];
2624
 
2625
  /***/ }),
2626
+ /* 39 */
2627
  /***/ (function(module, exports, __webpack_require__) {
2628
 
2629
  'use strict';
2766
  module.exports = exports['default'];
2767
 
2768
  /***/ }),
2769
+ /* 40 */
2770
  /***/ (function(module, exports, __webpack_require__) {
2771
 
2772
  'use strict';
2997
  }
2998
 
2999
  /***/ }),
3000
+ /* 41 */
3001
  /***/ (function(module, exports, __webpack_require__) {
3002
 
3003
  /* eslint-disable new-cap */
3573
  }
3574
 
3575
  /***/ }),
3576
+ /* 42 */
3577
  /***/ (function(module, exports, __webpack_require__) {
3578
 
3579
  'use strict';
3590
 
3591
  var _utils = __webpack_require__(5);
3592
 
3593
+ var _codeGen = __webpack_require__(43);
3594
 
3595
  var _codeGen2 = _interopRequireDefault(_codeGen);
3596
 
3604
  // PUBLIC API: You can override these methods in a subclass to provide
3605
  // alternative compiled forms for name lookup and buffering semantics
3606
  nameLookup: function nameLookup(parent, name /* , type*/) {
3607
+ var isEnumerable = [this.aliasable('container.propertyIsEnumerable'), '.call(', parent, ',"constructor")'];
3608
+
3609
  if (name === 'constructor') {
3610
+ return ['(', isEnumerable, '?', _actualLookup(), ' : undefined)'];
3611
  }
3612
+ return _actualLookup();
3613
+
3614
+ function _actualLookup() {
3615
+ if (JavaScriptCompiler.isValidJavaScriptVariableName(name)) {
3616
+ return [parent, '.', name];
3617
+ } else {
3618
+ return [parent, '[', JSON.stringify(name), ']'];
3619
+ }
3620
  }
3621
  },
3622
  depthedLookup: function depthedLookup(name) {
3815
  for (var alias in this.aliases) {
3816
  // eslint-disable-line guard-for-in
3817
  var node = this.aliases[alias];
 
3818
  if (this.aliases.hasOwnProperty(alias) && node.children && node.referenceCount > 1) {
3819
  varDeclarations += ', alias' + ++aliasCount + '=' + alias;
3820
  node.children[0] = 'alias' + aliasCount;
4727
  module.exports = exports['default'];
4728
 
4729
  /***/ }),
4730
+ /* 43 */
4731
  /***/ (function(module, exports, __webpack_require__) {
4732
 
4733
  /* global define */
js/handlebars/handlebars.min.js CHANGED
@@ -1,7 +1,7 @@
1
  /**!
2
 
3
  @license
4
- handlebars v4.3.0
5
 
6
  Copyright (C) 2011-2017 by Yehuda Katz
7
 
@@ -24,6 +24,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
  THE SOFTWARE.
25
 
26
  */
27
- !function(a,b){"object"==typeof exports&&"object"==typeof module?module.exports=b():"function"==typeof define&&define.amd?define([],b):"object"==typeof exports?exports.Handlebars=b():a.Handlebars=b()}(this,function(){return function(a){function b(d){if(c[d])return c[d].exports;var e=c[d]={exports:{},id:d,loaded:!1};return a[d].call(e.exports,e,e.exports,b),e.loaded=!0,e.exports}var c={};return b.m=a,b.c=c,b.p="",b(0)}([function(a,b,c){"use strict";function d(){var a=r();return a.compile=function(b,c){return k.compile(b,c,a)},a.precompile=function(b,c){return k.precompile(b,c,a)},a.AST=i["default"],a.Compiler=k.Compiler,a.JavaScriptCompiler=m["default"],a.Parser=j.parser,a.parse=j.parse,a}var e=c(1)["default"];b.__esModule=!0;var f=c(2),g=e(f),h=c(35),i=e(h),j=c(36),k=c(43),l=c(44),m=e(l),n=c(41),o=e(n),p=c(34),q=e(p),r=g["default"].create,s=d();s.create=d,q["default"](s),s.Visitor=o["default"],s["default"]=s,b["default"]=s,a.exports=b["default"]},function(a,b){"use strict";b["default"]=function(a){return a&&a.__esModule?a:{"default":a}},b.__esModule=!0},function(a,b,c){"use strict";function d(){var a=new h.HandlebarsEnvironment;return n.extend(a,h),a.SafeString=j["default"],a.Exception=l["default"],a.Utils=n,a.escapeExpression=n.escapeExpression,a.VM=p,a.template=function(b){return p.template(b,a)},a}var e=c(3)["default"],f=c(1)["default"];b.__esModule=!0;var g=c(4),h=e(g),i=c(21),j=f(i),k=c(6),l=f(k),m=c(5),n=e(m),o=c(22),p=e(o),q=c(34),r=f(q),s=d();s.create=d,r["default"](s),s["default"]=s,b["default"]=s,a.exports=b["default"]},function(a,b){"use strict";b["default"]=function(a){if(a&&a.__esModule)return a;var b={};if(null!=a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(b[c]=a[c]);return b["default"]=a,b},b.__esModule=!0},function(a,b,c){"use strict";function d(a,b,c){this.helpers=a||{},this.partials=b||{},this.decorators=c||{},i.registerDefaultHelpers(this),j.registerDefaultDecorators(this)}var e=c(1)["default"];b.__esModule=!0,b.HandlebarsEnvironment=d;var f=c(5),g=c(6),h=e(g),i=c(10),j=c(18),k=c(20),l=e(k),m="4.3.0";b.VERSION=m;var n=8;b.COMPILER_REVISION=n;var o={1:"<= 1.0.rc.2",2:"== 1.0.0-rc.3",3:"== 1.0.0-rc.4",4:"== 1.x.x",5:"== 2.0.0-alpha.x",6:">= 2.0.0-beta.1",7:">= 4.0.0 <4.3.0",8:">= 4.3.0"};b.REVISION_CHANGES=o;var p="[object Object]";d.prototype={constructor:d,logger:l["default"],log:l["default"].log,registerHelper:function(a,b){if(f.toString.call(a)===p){if(b)throw new h["default"]("Arg not supported with multiple helpers");f.extend(this.helpers,a)}else this.helpers[a]=b},unregisterHelper:function(a){delete this.helpers[a]},registerPartial:function(a,b){if(f.toString.call(a)===p)f.extend(this.partials,a);else{if("undefined"==typeof b)throw new h["default"]('Attempting to register a partial called "'+a+'" as undefined');this.partials[a]=b}},unregisterPartial:function(a){delete this.partials[a]},registerDecorator:function(a,b){if(f.toString.call(a)===p){if(b)throw new h["default"]("Arg not supported with multiple decorators");f.extend(this.decorators,a)}else this.decorators[a]=b},unregisterDecorator:function(a){delete this.decorators[a]}};var q=l["default"].log;b.log=q,b.createFrame=f.createFrame,b.logger=l["default"]},function(a,b){"use strict";function c(a){return k[a]}function d(a){for(var b=1;b<arguments.length;b++)for(var c in arguments[b])Object.prototype.hasOwnProperty.call(arguments[b],c)&&(a[c]=arguments[b][c]);return a}function e(a,b){for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return c;return-1}function f(a){if("string"!=typeof a){if(a&&a.toHTML)return a.toHTML();if(null==a)return"";if(!a)return a+"";a=""+a}return m.test(a)?a.replace(l,c):a}function g(a){return!a&&0!==a||!(!p(a)||0!==a.length)}function h(a){var b=d({},a);return b._parent=a,b}function i(a,b){return a.path=b,a}function j(a,b){return(a?a+".":"")+b}b.__esModule=!0,b.extend=d,b.indexOf=e,b.escapeExpression=f,b.isEmpty=g,b.createFrame=h,b.blockParams=i,b.appendContextPath=j;var k={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;","`":"&#x60;","=":"&#x3D;"},l=/[&<>"'`=]/g,m=/[&<>"'`=]/,n=Object.prototype.toString;b.toString=n;var o=function(a){return"function"==typeof a};o(/x/)&&(b.isFunction=o=function(a){return"function"==typeof a&&"[object Function]"===n.call(a)}),b.isFunction=o;var p=Array.isArray||function(a){return!(!a||"object"!=typeof a)&&"[object Array]"===n.call(a)};b.isArray=p},function(a,b,c){"use strict";function d(a,b){var c=b&&b.loc,g=void 0,h=void 0;c&&(g=c.start.line,h=c.start.column,a+=" - "+g+":"+h);for(var i=Error.prototype.constructor.call(this,a),j=0;j<f.length;j++)this[f[j]]=i[f[j]];Error.captureStackTrace&&Error.captureStackTrace(this,d);try{c&&(this.lineNumber=g,e?Object.defineProperty(this,"column",{value:h,enumerable:!0}):this.column=h)}catch(k){}}var e=c(7)["default"];b.__esModule=!0;var f=["description","fileName","lineNumber","message","name","number","stack"];d.prototype=new Error,b["default"]=d,a.exports=b["default"]},function(a,b,c){a.exports={"default":c(8),__esModule:!0}},function(a,b,c){var d=c(9);a.exports=function(a,b,c){return d.setDesc(a,b,c)}},function(a,b){var c=Object;a.exports={create:c.create,getProto:c.getPrototypeOf,isEnum:{}.propertyIsEnumerable,getDesc:c.getOwnPropertyDescriptor,setDesc:c.defineProperty,setDescs:c.defineProperties,getKeys:c.keys,getNames:c.getOwnPropertyNames,getSymbols:c.getOwnPropertySymbols,each:[].forEach}},function(a,b,c){"use strict";function d(a){h["default"](a),j["default"](a),l["default"](a),n["default"](a),p["default"](a),r["default"](a),t["default"](a)}function e(a,b,c){a.helpers[b]&&(a.hooks[b]=a.helpers[b],c||delete a.helpers[b])}var f=c(1)["default"];b.__esModule=!0,b.registerDefaultHelpers=d,b.moveHelperToHooks=e;var g=c(11),h=f(g),i=c(12),j=f(i),k=c(13),l=f(k),m=c(14),n=f(m),o=c(15),p=f(o),q=c(16),r=f(q),s=c(17),t=f(s)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerHelper("blockHelperMissing",function(b,c){var e=c.inverse,f=c.fn;if(b===!0)return f(this);if(b===!1||null==b)return e(this);if(d.isArray(b))return b.length>0?(c.ids&&(c.ids=[c.name]),a.helpers.each(b,c)):e(this);if(c.data&&c.ids){var g=d.createFrame(c.data);g.contextPath=d.appendContextPath(c.data.contextPath,c.name),c={data:g}}return f(b,c)})},a.exports=b["default"]},function(a,b,c){"use strict";var d=c(1)["default"];b.__esModule=!0;var e=c(5),f=c(6),g=d(f);b["default"]=function(a){a.registerHelper("each",function(a,b){function c(b,c,f){j&&(j.key=b,j.index=c,j.first=0===c,j.last=!!f,k&&(j.contextPath=k+b)),i+=d(a[b],{data:j,blockParams:e.blockParams([a[b],b],[k+b,null])})}if(!b)throw new g["default"]("Must pass iterator to #each");var d=b.fn,f=b.inverse,h=0,i="",j=void 0,k=void 0;if(b.data&&b.ids&&(k=e.appendContextPath(b.data.contextPath,b.ids[0])+"."),e.isFunction(a)&&(a=a.call(this)),b.data&&(j=e.createFrame(b.data)),a&&"object"==typeof a)if(e.isArray(a))for(var l=a.length;h<l;h++)h in a&&c(h,h,h===a.length-1);else{var m=void 0;for(var n in a)a.hasOwnProperty(n)&&(void 0!==m&&c(m,h-1),m=n,h++);void 0!==m&&c(m,h-1,!0)}return 0===h&&(i=f(this)),i})},a.exports=b["default"]},function(a,b,c){"use strict";var d=c(1)["default"];b.__esModule=!0;var e=c(6),f=d(e);b["default"]=function(a){a.registerHelper("helperMissing",function(){if(1!==arguments.length)throw new f["default"]('Missing helper: "'+arguments[arguments.length-1].name+'"')})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerHelper("if",function(a,b){return d.isFunction(a)&&(a=a.call(this)),!b.hash.includeZero&&!a||d.isEmpty(a)?b.inverse(this):b.fn(this)}),a.registerHelper("unless",function(b,c){return a.helpers["if"].call(this,b,{fn:c.inverse,inverse:c.fn,hash:c.hash})})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("log",function(){for(var b=[void 0],c=arguments[arguments.length-1],d=0;d<arguments.length-1;d++)b.push(arguments[d]);var e=1;null!=c.hash.level?e=c.hash.level:c.data&&null!=c.data.level&&(e=c.data.level),b[0]=e,a.log.apply(a,b)})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("lookup",function(a,b){if(!a)return a;if("constructor"!==b||a.propertyIsEnumerable(b))return a[b]})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerHelper("with",function(a,b){d.isFunction(a)&&(a=a.call(this));var c=b.fn;if(d.isEmpty(a))return b.inverse(this);var e=b.data;return b.data&&b.ids&&(e=d.createFrame(b.data),e.contextPath=d.appendContextPath(b.data.contextPath,b.ids[0])),c(a,{data:e,blockParams:d.blockParams([a],[e&&e.contextPath])})})},a.exports=b["default"]},function(a,b,c){"use strict";function d(a){g["default"](a)}var e=c(1)["default"];b.__esModule=!0,b.registerDefaultDecorators=d;var f=c(19),g=e(f)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerDecorator("inline",function(a,b,c,e){var f=a;return b.partials||(b.partials={},f=function(e,f){var g=c.partials;c.partials=d.extend({},g,b.partials);var h=a(e,f);return c.partials=g,h}),b.partials[e.args[0]]=e.fn,f})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5),e={methodMap:["debug","info","warn","error"],level:"info",lookupLevel:function(a){if("string"==typeof a){var b=d.indexOf(e.methodMap,a.toLowerCase());a=b>=0?b:parseInt(a,10)}return a},log:function(a){if(a=e.lookupLevel(a),"undefined"!=typeof console&&e.lookupLevel(e.level)<=a){var b=e.methodMap[a];console[b]||(b="log");for(var c=arguments.length,d=Array(c>1?c-1:0),f=1;f<c;f++)d[f-1]=arguments[f];console[b].apply(console,d)}}};b["default"]=e,a.exports=b["default"]},function(a,b){"use strict";function c(a){this.string=a}b.__esModule=!0,c.prototype.toString=c.prototype.toHTML=function(){return""+this.string},b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(a){var b=a&&a[0]||1,c=s.COMPILER_REVISION;if(b!==c){if(b<c){var d=s.REVISION_CHANGES[c],e=s.REVISION_CHANGES[b];throw new r["default"]("Template was precompiled with an older version of Handlebars than the current runtime. Please update your precompiler to a newer version ("+d+") or downgrade your runtime to an older version ("+e+").")}throw new r["default"]("Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version ("+a[1]+").")}}function e(a,b){function c(c,d,e){e.hash&&(d=p.extend({},d,e.hash),e.ids&&(e.ids[0]=!0)),c=b.VM.resolvePartial.call(this,c,d,e);var f=p.extend({},e,{hooks:this.hooks}),g=b.VM.invokePartial.call(this,c,d,f);if(null==g&&b.compile&&(e.partials[e.name]=b.compile(c,a.compilerOptions,b),g=e.partials[e.name](d,f)),null!=g){if(e.indent){for(var h=g.split("\n"),i=0,j=h.length;i<j&&(h[i]||i+1!==j);i++)h[i]=e.indent+h[i];g=h.join("\n")}return g}throw new r["default"]("The partial "+e.name+" could not be compiled when running in runtime-only mode")}function d(b){function c(b){return""+a.main(e,b,e.helpers,e.partials,g,i,h)}var f=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],g=f.data;d._setup(f),!f.partial&&a.useData&&(g=j(b,g));var h=void 0,i=a.useBlockParams?[]:void 0;return a.useDepths&&(h=f.depths?b!=f.depths[0]?[b].concat(f.depths):f.depths:[b]),(c=k(a.main,c,e,f.depths||[],g,i))(b,f)}if(!b)throw new r["default"]("No environment passed to template");if(!a||!a.main)throw new r["default"]("Unknown template object: "+typeof a);a.main.decorator=a.main_d,b.VM.checkRevision(a.compiler);var e={strict:function(a,b){if(!(b in a))throw new r["default"]('"'+b+'" not defined in '+a);return a[b]},lookup:function(a,b){for(var c=a.length,d=0;d<c;d++)if(a[d]&&null!=a[d][b])return a[d][b]},lambda:function(a,b){return"function"==typeof a?a.call(b):a},escapeExpression:p.escapeExpression,invokePartial:c,fn:function(b){var c=a[b];return c.decorator=a[b+"_d"],c},programs:[],program:function(a,b,c,d,e){var g=this.programs[a],h=this.fn(a);return b||e||d||c?g=f(this,a,h,b,c,d,e):g||(g=this.programs[a]=f(this,a,h)),g},data:function(a,b){for(;a&&b--;)a=a._parent;return a},nullContext:l({}),noop:b.VM.noop,compilerInfo:a.compiler};return d.isTop=!0,d._setup=function(c){if(c.partial)e.helpers=c.helpers,e.partials=c.partials,e.decorators=c.decorators,e.hooks=c.hooks;else{e.helpers=p.extend({},b.helpers,c.helpers),a.usePartial&&(e.partials=p.extend({},b.partials,c.partials)),(a.usePartial||a.useDecorators)&&(e.decorators=p.extend({},b.decorators,c.decorators)),e.hooks={};var d=c.allowCallsToHelperMissing;t.moveHelperToHooks(e,"helperMissing",d),t.moveHelperToHooks(e,"blockHelperMissing",d)}},d._child=function(b,c,d,g){if(a.useBlockParams&&!d)throw new r["default"]("must pass block params");if(a.useDepths&&!g)throw new r["default"]("must pass parent depths");return f(e,b,a[b],c,0,d,g)},d}function f(a,b,c,d,e,f,g){function h(b){var e=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],h=g;return!g||b==g[0]||b===a.nullContext&&null===g[0]||(h=[b].concat(g)),c(a,b,a.helpers,a.partials,e.data||d,f&&[e.blockParams].concat(f),h)}return h=k(c,h,a,g,d,f),h.program=b,h.depth=g?g.length:0,h.blockParams=e||0,h}function g(a,b,c){return a?a.call||c.name||(c.name=a,a=c.partials[a]):a="@partial-block"===c.name?c.data["partial-block"]:c.partials[c.name],a}function h(a,b,c){var d=c.data&&c.data["partial-block"];c.partial=!0,c.ids&&(c.data.contextPath=c.ids[0]||c.data.contextPath);var e=void 0;if(c.fn&&c.fn!==i&&!function(){c.data=s.createFrame(c.data);var a=c.fn;e=c.data["partial-block"]=function(b){var c=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];return c.data=s.createFrame(c.data),c.data["partial-block"]=d,a(b,c)},a.partials&&(c.partials=p.extend({},c.partials,a.partials))}(),void 0===a&&e&&(a=e),void 0===a)throw new r["default"]("The partial "+c.name+" could not be found");if(a instanceof Function)return a(b,c)}function i(){return""}function j(a,b){return b&&"root"in b||(b=b?s.createFrame(b):{},b.root=a),b}function k(a,b,c,d,e,f){if(a.decorator){var g={};b=a.decorator(b,g,c,d&&d[0],e,f,d),p.extend(b,g)}return b}var l=c(23)["default"],m=c(3)["default"],n=c(1)["default"];b.__esModule=!0,b.checkRevision=d,b.template=e,b.wrapProgram=f,b.resolvePartial=g,b.invokePartial=h,b.noop=i;var o=c(5),p=m(o),q=c(6),r=n(q),s=c(4),t=c(10)},function(a,b,c){a.exports={"default":c(24),__esModule:!0}},function(a,b,c){c(25),a.exports=c(30).Object.seal},function(a,b,c){var d=c(26);c(27)("seal",function(a){return function(b){return a&&d(b)?a(b):b}})},function(a,b){a.exports=function(a){return"object"==typeof a?null!==a:"function"==typeof a}},function(a,b,c){var d=c(28),e=c(30),f=c(33);a.exports=function(a,b){var c=(e.Object||{})[a]||Object[a],g={};g[a]=b(c),d(d.S+d.F*f(function(){c(1)}),"Object",g)}},function(a,b,c){var d=c(29),e=c(30),f=c(31),g="prototype",h=function(a,b,c){var i,j,k,l=a&h.F,m=a&h.G,n=a&h.S,o=a&h.P,p=a&h.B,q=a&h.W,r=m?e:e[b]||(e[b]={}),s=m?d:n?d[b]:(d[b]||{})[g];m&&(c=b);for(i in c)j=!l&&s&&i in s,j&&i in r||(k=j?s[i]:c[i],r[i]=m&&"function"!=typeof s[i]?c[i]:p&&j?f(k,d):q&&s[i]==k?function(a){var b=function(b){return this instanceof a?new a(b):a(b)};return b[g]=a[g],b}(k):o&&"function"==typeof k?f(Function.call,k):k,o&&((r[g]||(r[g]={}))[i]=k))};h.F=1,h.G=2,h.S=4,h.P=8,h.B=16,h.W=32,a.exports=h},function(a,b){var c=a.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=c)},function(a,b){var c=a.exports={version:"1.2.6"};"number"==typeof __e&&(__e=c)},function(a,b,c){var d=c(32);a.exports=function(a,b,c){if(d(a),void 0===b)return a;switch(c){case 1:return function(c){return a.call(b,c)};case 2:return function(c,d){return a.call(b,c,d)};case 3:return function(c,d,e){return a.call(b,c,d,e)}}return function(){return a.apply(b,arguments)}}},function(a,b){a.exports=function(a){if("function"!=typeof a)throw TypeError(a+" is not a function!");return a}},function(a,b){a.exports=function(a){try{return!!a()}catch(b){return!0}}},function(a,b){(function(c){"use strict";b.__esModule=!0,b["default"]=function(a){var b="undefined"!=typeof c?c:window,d=b.Handlebars;a.noConflict=function(){return b.Handlebars===a&&(b.Handlebars=d),a}},a.exports=b["default"]}).call(b,function(){return this}())},function(a,b){"use strict";b.__esModule=!0;var c={helpers:{helperExpression:function(a){return"SubExpression"===a.type||("MustacheStatement"===a.type||"BlockStatement"===a.type)&&!!(a.params&&a.params.length||a.hash)},scopedId:function(a){return/^\.|this\b/.test(a.original)},simpleId:function(a){return 1===a.parts.length&&!c.helpers.scopedId(a)&&!a.depth}}};b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b){if("Program"===a.type)return a;h["default"].yy=n,n.locInfo=function(a){return new n.SourceLocation(b&&b.srcName,a)};var c=new j["default"](b);return c.accept(h["default"].parse(a))}var e=c(1)["default"],f=c(3)["default"];b.__esModule=!0,b.parse=d;var g=c(37),h=e(g),i=c(40),j=e(i),k=c(42),l=f(k),m=c(5);b.parser=h["default"];var n={};m.extend(n,l)},function(a,b,c){"use strict";var d=c(38)["default"];b.__esModule=!0;var e=function(){function a(){this.yy={}}var b=function(a,b,c,d){for(c=c||{},d=a.length;d--;c[a[d]]=b);return c},c=[2,46],e=[1,20],f=[5,14,15,19,29,34,39,44,47,48,51,55,60],g=[1,35],h=[1,28],i=[1,29],j=[1,30],k=[1,31],l=[1,32],m=[1,34],n=[14,15,19,29,34,39,44,47,48,51,55,60],o=[14,15,19,29,34,44,47,48,51,55,60],p=[1,44],q=[14,15,19,29,34,47,48,51,55,60],r=[33,65,72,80,81,82,83,84,85],s=[23,33,54,65,68,72,75,80,81,82,83,84,85],t=[1,51],u=[23,33,54,65,68,72,75,80,81,82,83,84,85,87],v=[2,45],w=[54,65,72,80,81,82,83,84,85],x=[1,58],y=[1,59],z=[15,18],A=[1,67],B=[33,65,72,75,80,81,82,83,84,85],C=[23,65,72,80,81,82,83,84,85],D=[1,79],E=[65,68,72,80,81,82,83,84,85],F=[33,75],G=[23,33,54,68,72,75],H=[1,109],I=[1,121],J=[72,77],K={trace:function(){},yy:{},symbols_:{error:2,root:3,program:4,EOF:5,program_repetition0:6,statement:7,mustache:8,block:9,rawBlock:10,partial:11,partialBlock:12,content:13,COMMENT:14,CONTENT:15,openRawBlock:16,rawBlock_repetition_plus0:17,END_RAW_BLOCK:18,OPEN_RAW_BLOCK:19,helperName:20,openRawBlock_repetition0:21,openRawBlock_option0:22,CLOSE_RAW_BLOCK:23,openBlock:24,block_option0:25,closeBlock:26,openInverse:27,block_option1:28,OPEN_BLOCK:29,openBlock_repetition0:30,openBlock_option0:31,openBlock_option1:32,CLOSE:33,OPEN_INVERSE:34,openInverse_repetition0:35,openInverse_option0:36,openInverse_option1:37,openInverseChain:38,OPEN_INVERSE_CHAIN:39,openInverseChain_repetition0:40,openInverseChain_option0:41,openInverseChain_option1:42,inverseAndProgram:43,INVERSE:44,inverseChain:45,inverseChain_option0:46,OPEN_ENDBLOCK:47,OPEN:48,mustache_repetition0:49,mustache_option0:50,OPEN_UNESCAPED:51,mustache_repetition1:52,mustache_option1:53,CLOSE_UNESCAPED:54,OPEN_PARTIAL:55,partialName:56,partial_repetition0:57,partial_option0:58,openPartialBlock:59,OPEN_PARTIAL_BLOCK:60,openPartialBlock_repetition0:61,openPartialBlock_option0:62,param:63,sexpr:64,OPEN_SEXPR:65,sexpr_repetition0:66,sexpr_option0:67,CLOSE_SEXPR:68,hash:69,hash_repetition_plus0:70,hashSegment:71,ID:72,EQUALS:73,blockParams:74,OPEN_BLOCK_PARAMS:75,blockParams_repetition_plus0:76,CLOSE_BLOCK_PARAMS:77,path:78,dataName:79,STRING:80,NUMBER:81,BOOLEAN:82,UNDEFINED:83,NULL:84,DATA:85,pathSegments:86,SEP:87,$accept:0,$end:1},terminals_:{2:"error",5:"EOF",14:"COMMENT",15:"CONTENT",18:"END_RAW_BLOCK",19:"OPEN_RAW_BLOCK",23:"CLOSE_RAW_BLOCK",29:"OPEN_BLOCK",33:"CLOSE",34:"OPEN_INVERSE",39:"OPEN_INVERSE_CHAIN",44:"INVERSE",47:"OPEN_ENDBLOCK",48:"OPEN",51:"OPEN_UNESCAPED",54:"CLOSE_UNESCAPED",55:"OPEN_PARTIAL",60:"OPEN_PARTIAL_BLOCK",65:"OPEN_SEXPR",68:"CLOSE_SEXPR",72:"ID",73:"EQUALS",75:"OPEN_BLOCK_PARAMS",77:"CLOSE_BLOCK_PARAMS",80:"STRING",81:"NUMBER",82:"BOOLEAN",83:"UNDEFINED",84:"NULL",85:"DATA",87:"SEP"},productions_:[0,[3,2],[4,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[13,1],[10,3],[16,5],[9,4],[9,4],[24,6],[27,6],[38,6],[43,2],[45,3],[45,1],[26,3],[8,5],[8,5],[11,5],[12,3],[59,5],[63,1],[63,1],[64,5],[69,1],[71,3],[74,3],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[56,1],[56,1],[79,2],[78,1],[86,3],[86,1],[6,0],[6,2],[17,1],[17,2],[21,0],[21,2],[22,0],[22,1],[25,0],[25,1],[28,0],[28,1],[30,0],[30,2],[31,0],[31,1],[32,0],[32,1],[35,0],[35,2],[36,0],[36,1],[37,0],[37,1],[40,0],[40,2],[41,0],[41,1],[42,0],[42,1],[46,0],[46,1],[49,0],[49,2],[50,0],[50,1],[52,0],[52,2],[53,0],[53,1],[57,0],[57,2],[58,0],[58,1],[61,0],[61,2],[62,0],[62,1],[66,0],[66,2],[67,0],[67,1],[70,1],[70,2],[76,1],[76,2]],performAction:function(a,b,c,d,e,f,g){var h=f.length-1;switch(e){case 1:return f[h-1];case 2:this.$=d.prepareProgram(f[h]);break;case 3:case 4:case 5:case 6:case 7:case 8:case 20:case 27:case 28:case 33:case 34:case 40:case 41:this.$=f[h];break;case 9:this.$={type:"CommentStatement",value:d.stripComment(f[h]),strip:d.stripFlags(f[h],f[h]),loc:d.locInfo(this._$)};break;case 10:this.$={type:"ContentStatement",original:f[h],value:f[h],loc:d.locInfo(this._$)};break;case 11:this.$=d.prepareRawBlock(f[h-2],f[h-1],f[h],this._$);break;case 12:this.$={path:f[h-3],params:f[h-2],hash:f[h-1]};break;case 13:this.$=d.prepareBlock(f[h-3],f[h-2],f[h-1],f[h],!1,this._$);break;case 14:this.$=d.prepareBlock(f[h-3],f[h-2],f[h-1],f[h],!0,this._$);break;case 15:this.$={open:f[h-5],path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 16:case 17:this.$={path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 18:this.$={strip:d.stripFlags(f[h-1],f[h-1]),program:f[h]};break;case 19:var i=d.prepareBlock(f[h-2],f[h-1],f[h],f[h],!1,this._$),j=d.prepareProgram([i],f[h-1].loc);j.chained=!0,this.$={strip:f[h-2].strip,program:j,chain:!0};break;case 21:this.$={path:f[h-1],strip:d.stripFlags(f[h-2],f[h])};break;case 22:case 23:this.$=d.prepareMustache(f[h-3],f[h-2],f[h-1],f[h-4],d.stripFlags(f[h-4],f[h]),this._$);break;case 24:this.$={type:"PartialStatement",name:f[h-3],params:f[h-2],hash:f[h-1],indent:"",strip:d.stripFlags(f[h-4],f[h]),loc:d.locInfo(this._$)};break;case 25:this.$=d.preparePartialBlock(f[h-2],f[h-1],f[h],this._$);break;case 26:this.$={path:f[h-3],params:f[h-2],hash:f[h-1],strip:d.stripFlags(f[h-4],f[h])};break;case 29:this.$={type:"SubExpression",path:f[h-3],params:f[h-2],hash:f[h-1],loc:d.locInfo(this._$)};break;case 30:this.$={type:"Hash",pairs:f[h],loc:d.locInfo(this._$)};break;case 31:this.$={type:"HashPair",key:d.id(f[h-2]),value:f[h],loc:d.locInfo(this._$)};break;case 32:this.$=d.id(f[h-1]);break;case 35:this.$={type:"StringLiteral",value:f[h],original:f[h],loc:d.locInfo(this._$)};break;case 36:this.$={type:"NumberLiteral",value:Number(f[h]),original:Number(f[h]),loc:d.locInfo(this._$)};break;case 37:this.$={type:"BooleanLiteral",value:"true"===f[h],original:"true"===f[h],loc:d.locInfo(this._$)};break;case 38:this.$={type:"UndefinedLiteral",original:void 0,value:void 0,loc:d.locInfo(this._$)};break;case 39:this.$={type:"NullLiteral",original:null,value:null,loc:d.locInfo(this._$)};break;case 42:this.$=d.preparePath(!0,f[h],this._$);break;case 43:this.$=d.preparePath(!1,f[h],this._$);break;case 44:f[h-2].push({part:d.id(f[h]),original:f[h],separator:f[h-1]}),this.$=f[h-2];break;case 45:this.$=[{part:d.id(f[h]),original:f[h]}];break;case 46:case 50:case 58:case 64:case 70:case 78:case 82:case 86:case 90:case 94:this.$=[];break;case 47:case 49:case 51:case 59:case 65:case 71:case 79:case 83:case 87:case 91:case 95:case 99:case 101:f[h-1].push(f[h]);break;case 48:case 98:case 100:this.$=[f[h]]}},table:[b([5,14,15,19,29,34,48,51,55,60],c,{3:1,4:2,6:3}),{1:[3]},{5:[1,4]},b([5,39,44,47],[2,2],{7:5,8:6,9:7,10:8,11:9,12:10,13:11,24:15,27:16,16:17,59:19,14:[1,12],15:e,19:[1,23],29:[1,21],34:[1,22],48:[1,13],51:[1,14],55:[1,18],60:[1,24]}),{1:[2,1]},b(f,[2,47]),b(f,[2,3]),b(f,[2,4]),b(f,[2,5]),b(f,[2,6]),b(f,[2,7]),b(f,[2,8]),b(f,[2,9]),{20:25,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{20:36,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},b(n,c,{6:3,4:37}),b(o,c,{6:3,4:38}),{13:40,15:e,17:39},{20:42,56:41,64:43,65:p,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},b(q,c,{6:3,4:45}),b([5,14,15,18,19,29,34,39,44,47,48,51,55,60],[2,10]),{20:46,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{20:47,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{20:48,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{20:42,56:49,64:43,65:p,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},b(r,[2,78],{49:50}),b(s,[2,33]),b(s,[2,34]),b(s,[2,35]),b(s,[2,36]),b(s,[2,37]),b(s,[2,38]),b(s,[2,39]),b(s,[2,43],{87:t}),{72:g,86:52},b(u,v),b(w,[2,82],{52:53}),{25:54,38:56,39:x,43:57,44:y,45:55,47:[2,54]},{28:60,43:61,44:y,47:[2,56]},{13:63,15:e,18:[1,62]},b(z,[2,48]),b(r,[2,86],{57:64}),b(r,[2,40]),b(r,[2,41]),{20:65,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{26:66,47:A},b(B,[2,58],{30:68}),b(B,[2,64],{35:69}),b(C,[2,50],{21:70}),b(r,[2,90],{61:71}),{20:75,33:[2,80],50:72,63:73,64:76,65:p,69:74,70:77,71:78,72:D,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{72:[1,80]},b(s,[2,42],{87:t}),{20:75,53:81,54:[2,84],63:82,64:76,65:p,69:83,70:77,71:78,72:D,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{26:84,47:A},{47:[2,55]},b(n,c,{6:3,4:85}),{47:[2,20]},{20:86,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},b(q,c,{6:3,4:87}),{26:88,47:A},{47:[2,57]},b(f,[2,11]),b(z,[2,49]),{20:75,33:[2,88],58:89,63:90,64:76,65:p,69:91,70:77,71:78,72:D,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},b(E,[2,94],{66:92}),b(f,[2,25]),{20:93,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},b(F,[2,60],{78:26,79:27,86:33,20:75,64:76,70:77,71:78,31:94,63:95,69:96,65:p,72:D,80:h,81:i,82:j,83:k,84:l,85:m}),b(F,[2,66],{78:26,79:27,86:33,20:75,64:76,70:77,71:78,36:97,63:98,69:99,65:p,72:D,80:h,81:i,82:j,83:k,84:l,85:m}),{20:75,22:100,23:[2,52],63:101,64:76,65:p,69:102,70:77,71:78,72:D,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{20:75,33:[2,92],62:103,63:104,64:76,65:p,69:105,70:77,71:78,72:D,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{33:[1,106]},b(r,[2,79]),{33:[2,81]},b(s,[2,27]),b(s,[2,28]),b([23,33,54,68,75],[2,30],{71:107,72:[1,108]}),b(G,[2,98]),b(u,v,{73:H}),b(u,[2,44]),{54:[1,110]},b(w,[2,83]),{54:[2,85]},b(f,[2,13]),{38:56,39:x,43:57,44:y,45:112,46:111,47:[2,76]},b(B,[2,70],{40:113}),{47:[2,18]},b(f,[2,14]),{33:[1,114]},b(r,[2,87]),{33:[2,89]},{20:75,63:116,64:76,65:p,67:115,68:[2,96],69:117,70:77,71:78,72:D,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},{33:[1,118]},{32:119,33:[2,62],74:120,75:I},b(B,[2,59]),b(F,[2,61]),{33:[2,68],37:122,74:123,75:I},b(B,[2,65]),b(F,[2,67]),{23:[1,124]},b(C,[2,51]),{23:[2,53]},{33:[1,125]},b(r,[2,91]),{33:[2,93]},b(f,[2,22]),b(G,[2,99]),{73:H},{20:75,63:126,64:76,65:p,72:g,78:26,79:27,80:h,81:i,82:j,83:k,84:l,85:m,86:33},b(f,[2,23]),{47:[2,19]},{47:[2,77]},b(F,[2,72],{78:26,79:27,86:33,20:75,64:76,70:77,71:78,41:127,63:128,69:129,65:p,72:D,80:h,81:i,82:j,83:k,84:l,85:m}),b(f,[2,24]),{68:[1,130]},b(E,[2,95]),{68:[2,97]},b(f,[2,21]),{33:[1,131]},{33:[2,63]},{72:[1,133],76:132},{33:[1,134]},{33:[2,69]},{15:[2,12]},b(q,[2,26]),b(G,[2,31]),{33:[2,74],42:135,74:136,75:I},b(B,[2,71]),b(F,[2,73]),b(s,[2,29]),b(n,[2,15]),{72:[1,138],77:[1,137]},b(J,[2,100]),b(o,[2,16]),{33:[1,139]},{33:[2,75]},{33:[2,32]},b(J,[2,101]),b(n,[2,17])],defaultActions:{4:[2,1],55:[2,55],57:[2,20],61:[2,57],74:[2,81],83:[2,85],87:[2,18],91:[2,89],102:[2,53],105:[2,93],111:[2,19],112:[2,77],117:[2,97],120:[2,63],123:[2,69],124:[2,12],136:[2,75],137:[2,32]},parseError:function(a,b){if(!b.recoverable){var c=function(a,b){this.message=a,this.hash=b};throw c.prototype=new Error,new c(a,b)}this.trace(a)},parse:function(a){var b=this,c=[0],e=[null],f=[],g=this.table,h="",i=0,j=0,k=0,l=2,m=1,n=f.slice.call(arguments,1),o=d(this.lexer),p={yy:{}};for(var q in this.yy)Object.prototype.hasOwnProperty.call(this.yy,q)&&(p.yy[q]=this.yy[q]);o.setInput(a,p.yy),p.yy.lexer=o,p.yy.parser=this,"undefined"==typeof o.yylloc&&(o.yylloc={});var r=o.yylloc;f.push(r);var s=o.options&&o.options.ranges;"function"==typeof p.yy.parseError?this.parseError=p.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var t,u,v,w,x,y,z,A,B,C=function(){var a;return a=o.lex()||m,"number"!=typeof a&&(a=b.symbols_[a]||a),a},D={};;){if(v=c[c.length-1],this.defaultActions[v]?w=this.defaultActions[v]:(null!==t&&"undefined"!=typeof t||(t=C()),w=g[v]&&g[v][t]),"undefined"==typeof w||!w.length||!w[0]){var E="";B=[];for(y in g[v])this.terminals_[y]&&y>l&&B.push("'"+this.terminals_[y]+"'");E=o.showPosition?"Parse error on line "+(i+1)+":\n"+o.showPosition()+"\nExpecting "+B.join(", ")+", got '"+(this.terminals_[t]||t)+"'":"Parse error on line "+(i+1)+": Unexpected "+(t==m?"end of input":"'"+(this.terminals_[t]||t)+"'"),this.parseError(E,{text:o.match,token:this.terminals_[t]||t,line:o.yylineno,loc:r,expected:B})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+v+", token: "+t);switch(w[0]){case 1:c.push(t),e.push(o.yytext),f.push(o.yylloc),c.push(w[1]),t=null,u?(t=u,u=null):(j=o.yyleng,h=o.yytext,i=o.yylineno,r=o.yylloc,k>0&&k--);break;case 2:if(z=this.productions_[w[1]][1],D.$=e[e.length-z],D._$={first_line:f[f.length-(z||1)].first_line,last_line:f[f.length-1].last_line,first_column:f[f.length-(z||1)].first_column,last_column:f[f.length-1].last_column},s&&(D._$.range=[f[f.length-(z||1)].range[0],f[f.length-1].range[1]]),x=this.performAction.apply(D,[h,j,i,p.yy,w[1],e,f].concat(n)),"undefined"!=typeof x)return x;z&&(c=c.slice(0,-1*z*2),e=e.slice(0,-1*z),f=f.slice(0,-1*z)),c.push(this.productions_[w[1]][0]),e.push(D.$),f.push(D._$),A=g[c[c.length-2]][c[c.length-1]],c.push(A);break;case 3:return!0}}return!0}},L=function(){var a={EOF:1,parseError:function(a,b){if(!this.yy.parser)throw new Error(a);this.yy.parser.parseError(a,b)},setInput:function(a,b){return this.yy=b||this.yy||{},this._input=a,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var a=this._input[0];this.yytext+=a,this.yyleng++,this.offset++,this.match+=a,this.matched+=a;var b=a.match(/(?:\r\n?|\n).*/g);return b?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),a},unput:function(a){var b=a.length,c=a.split(/(?:\r\n?|\n)/g);this._input=a+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-b),this.offset-=b;var d=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),c.length-1&&(this.yylineno-=c.length-1);var e=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:c?(c.length===d.length?this.yylloc.first_column:0)+d[d.length-c.length].length-c[0].length:this.yylloc.first_column-b},this.options.ranges&&(this.yylloc.range=[e[0],e[0]+this.yyleng-b]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(a){this.unput(this.match.slice(a))},pastInput:function(){var a=this.matched.substr(0,this.matched.length-this.match.length);return(a.length>20?"...":"")+a.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var a=this.match;return a.length<20&&(a+=this._input.substr(0,20-a.length)),(a.substr(0,20)+(a.length>20?"...":"")).replace(/\n/g,"");
28
- },showPosition:function(){var a=this.pastInput(),b=new Array(a.length+1).join("-");return a+this.upcomingInput()+"\n"+b+"^"},test_match:function(a,b){var c,d,e;if(this.options.backtrack_lexer&&(e={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(e.yylloc.range=this.yylloc.range.slice(0))),d=a[0].match(/(?:\r\n?|\n).*/g),d&&(this.yylineno+=d.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:d?d[d.length-1].length-d[d.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+a[0].length},this.yytext+=a[0],this.match+=a[0],this.matches=a,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(a[0].length),this.matched+=a[0],c=this.performAction.call(this,this.yy,this,b,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),c)return c;if(this._backtrack){for(var f in e)this[f]=e[f];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var a,b,c,d;this._more||(this.yytext="",this.match="");for(var e=this._currentRules(),f=0;f<e.length;f++)if(c=this._input.match(this.rules[e[f]]),c&&(!b||c[0].length>b[0].length)){if(b=c,d=f,this.options.backtrack_lexer){if(a=this.test_match(c,e[f]),a!==!1)return a;if(this._backtrack){b=!1;continue}return!1}if(!this.options.flex)break}return b?(a=this.test_match(b,e[d]),a!==!1&&a):""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var a=this.next();return a?a:this.lex()},begin:function(a){this.conditionStack.push(a)},popState:function(){var a=this.conditionStack.length-1;return a>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(a){return a=this.conditionStack.length-1-Math.abs(a||0),a>=0?this.conditionStack[a]:"INITIAL"},pushState:function(a){this.begin(a)},stateStackSize:function(){return this.conditionStack.length},options:{},performAction:function(a,b,c,d){function e(a,c){return b.yytext=b.yytext.substring(a,b.yyleng-c+a)}switch(c){case 0:if("\\\\"===b.yytext.slice(-2)?(e(0,1),this.begin("mu")):"\\"===b.yytext.slice(-1)?(e(0,1),this.begin("emu")):this.begin("mu"),b.yytext)return 15;break;case 1:return 15;case 2:return this.popState(),15;case 3:return this.begin("raw"),15;case 4:return this.popState(),"raw"===this.conditionStack[this.conditionStack.length-1]?15:(e(5,9),18);case 5:return 15;case 6:return this.popState(),14;case 7:return 65;case 8:return 68;case 9:return 19;case 10:return this.popState(),this.begin("raw"),23;case 11:return 55;case 12:return 60;case 13:return 29;case 14:return 47;case 15:return this.popState(),44;case 16:return this.popState(),44;case 17:return 34;case 18:return 39;case 19:return 51;case 20:return 48;case 21:this.unput(b.yytext),this.popState(),this.begin("com");break;case 22:return this.popState(),14;case 23:return 48;case 24:return 73;case 25:return 72;case 26:return 72;case 27:return 87;case 28:break;case 29:return this.popState(),54;case 30:return this.popState(),33;case 31:return b.yytext=e(1,2).replace(/\\"/g,'"'),80;case 32:return b.yytext=e(1,2).replace(/\\'/g,"'"),80;case 33:return 85;case 34:return 82;case 35:return 82;case 36:return 83;case 37:return 84;case 38:return 81;case 39:return 75;case 40:return 77;case 41:return 72;case 42:return b.yytext=b.yytext.replace(/\\([\\\]])/g,"$1"),72;case 43:return"INVALID";case 44:return 5}},rules:[/^(?:[^\x00]*?(?=(\{\{)))/,/^(?:[^\x00]+)/,/^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/,/^(?:\{\{\{\{(?=[^\/]))/,/^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/,/^(?:[^\x00]*?(?=(\{\{\{\{)))/,/^(?:[\s\S]*?--(~)?\}\})/,/^(?:\()/,/^(?:\))/,/^(?:\{\{\{\{)/,/^(?:\}\}\}\})/,/^(?:\{\{(~)?>)/,/^(?:\{\{(~)?#>)/,/^(?:\{\{(~)?#\*?)/,/^(?:\{\{(~)?\/)/,/^(?:\{\{(~)?\^\s*(~)?\}\})/,/^(?:\{\{(~)?\s*else\s*(~)?\}\})/,/^(?:\{\{(~)?\^)/,/^(?:\{\{(~)?\s*else\b)/,/^(?:\{\{(~)?\{)/,/^(?:\{\{(~)?&)/,/^(?:\{\{(~)?!--)/,/^(?:\{\{(~)?![\s\S]*?\}\})/,/^(?:\{\{(~)?\*?)/,/^(?:=)/,/^(?:\.\.)/,/^(?:\.(?=([=~}\s\/.)|])))/,/^(?:[\/.])/,/^(?:\s+)/,/^(?:\}(~)?\}\})/,/^(?:(~)?\}\})/,/^(?:"(\\["]|[^"])*")/,/^(?:'(\\[']|[^'])*')/,/^(?:@)/,/^(?:true(?=([~}\s)])))/,/^(?:false(?=([~}\s)])))/,/^(?:undefined(?=([~}\s)])))/,/^(?:null(?=([~}\s)])))/,/^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/,/^(?:as\s+\|)/,/^(?:\|)/,/^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/,/^(?:\[(\\\]|[^\]])*\])/,/^(?:.)/,/^(?:$)/],conditions:{mu:{rules:[7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],inclusive:!1},emu:{rules:[2],inclusive:!1},com:{rules:[6],inclusive:!1},raw:{rules:[3,4,5],inclusive:!1},INITIAL:{rules:[0,1,44],inclusive:!0}}};return a}();return K.lexer=L,a.prototype=K,K.Parser=a,new a}();b["default"]=e,a.exports=b["default"]},function(a,b,c){a.exports={"default":c(39),__esModule:!0}},function(a,b,c){var d=c(9);a.exports=function(a,b){return d.create(a,b)}},function(a,b,c){"use strict";function d(){var a=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];this.options=a}function e(a,b,c){void 0===b&&(b=a.length);var d=a[b-1],e=a[b-2];return d?"ContentStatement"===d.type?(e||!c?/\r?\n\s*?$/:/(^|\r?\n)\s*?$/).test(d.original):void 0:c}function f(a,b,c){void 0===b&&(b=-1);var d=a[b+1],e=a[b+2];return d?"ContentStatement"===d.type?(e||!c?/^\s*?\r?\n/:/^\s*?(\r?\n|$)/).test(d.original):void 0:c}function g(a,b,c){var d=a[null==b?0:b+1];if(d&&"ContentStatement"===d.type&&(c||!d.rightStripped)){var e=d.value;d.value=d.value.replace(c?/^\s+/:/^[ \t]*\r?\n?/,""),d.rightStripped=d.value!==e}}function h(a,b,c){var d=a[null==b?a.length-1:b-1];if(d&&"ContentStatement"===d.type&&(c||!d.leftStripped)){var e=d.value;return d.value=d.value.replace(c?/\s+$/:/[ \t]+$/,""),d.leftStripped=d.value!==e,d.leftStripped}}var i=c(1)["default"];b.__esModule=!0;var j=c(41),k=i(j);d.prototype=new k["default"],d.prototype.Program=function(a){var b=!this.options.ignoreStandalone,c=!this.isRootSeen;this.isRootSeen=!0;for(var d=a.body,i=0,j=d.length;i<j;i++){var k=d[i],l=this.accept(k);if(l){var m=e(d,i,c),n=f(d,i,c),o=l.openStandalone&&m,p=l.closeStandalone&&n,q=l.inlineStandalone&&m&&n;l.close&&g(d,i,!0),l.open&&h(d,i,!0),b&&q&&(g(d,i),h(d,i)&&"PartialStatement"===k.type&&(k.indent=/([ \t]+$)/.exec(d[i-1].original)[1])),b&&o&&(g((k.program||k.inverse).body),h(d,i)),b&&p&&(g(d,i),h((k.inverse||k.program).body))}}return a},d.prototype.BlockStatement=d.prototype.DecoratorBlock=d.prototype.PartialBlockStatement=function(a){this.accept(a.program),this.accept(a.inverse);var b=a.program||a.inverse,c=a.program&&a.inverse,d=c,i=c;if(c&&c.chained)for(d=c.body[0].program;i.chained;)i=i.body[i.body.length-1].program;var j={open:a.openStrip.open,close:a.closeStrip.close,openStandalone:f(b.body),closeStandalone:e((d||b).body)};if(a.openStrip.close&&g(b.body,null,!0),c){var k=a.inverseStrip;k.open&&h(b.body,null,!0),k.close&&g(d.body,null,!0),a.closeStrip.open&&h(i.body,null,!0),!this.options.ignoreStandalone&&e(b.body)&&f(d.body)&&(h(b.body),g(d.body))}else a.closeStrip.open&&h(b.body,null,!0);return j},d.prototype.Decorator=d.prototype.MustacheStatement=function(a){return a.strip},d.prototype.PartialStatement=d.prototype.CommentStatement=function(a){var b=a.strip||{};return{inlineStandalone:!0,open:b.open,close:b.close}},b["default"]=d,a.exports=b["default"]},function(a,b,c){"use strict";function d(){this.parents=[]}function e(a){this.acceptRequired(a,"path"),this.acceptArray(a.params),this.acceptKey(a,"hash")}function f(a){e.call(this,a),this.acceptKey(a,"program"),this.acceptKey(a,"inverse")}function g(a){this.acceptRequired(a,"name"),this.acceptArray(a.params),this.acceptKey(a,"hash")}var h=c(1)["default"];b.__esModule=!0;var i=c(6),j=h(i);d.prototype={constructor:d,mutating:!1,acceptKey:function(a,b){var c=this.accept(a[b]);if(this.mutating){if(c&&!d.prototype[c.type])throw new j["default"]('Unexpected node type "'+c.type+'" found when accepting '+b+" on "+a.type);a[b]=c}},acceptRequired:function(a,b){if(this.acceptKey(a,b),!a[b])throw new j["default"](a.type+" requires "+b)},acceptArray:function(a){for(var b=0,c=a.length;b<c;b++)this.acceptKey(a,b),a[b]||(a.splice(b,1),b--,c--)},accept:function(a){if(a){if(!this[a.type])throw new j["default"]("Unknown type: "+a.type,a);this.current&&this.parents.unshift(this.current),this.current=a;var b=this[a.type](a);return this.current=this.parents.shift(),!this.mutating||b?b:b!==!1?a:void 0}},Program:function(a){this.acceptArray(a.body)},MustacheStatement:e,Decorator:e,BlockStatement:f,DecoratorBlock:f,PartialStatement:g,PartialBlockStatement:function(a){g.call(this,a),this.acceptKey(a,"program")},ContentStatement:function(){},CommentStatement:function(){},SubExpression:e,PathExpression:function(){},StringLiteral:function(){},NumberLiteral:function(){},BooleanLiteral:function(){},UndefinedLiteral:function(){},NullLiteral:function(){},Hash:function(a){this.acceptArray(a.pairs)},HashPair:function(a){this.acceptRequired(a,"value")}},b["default"]=d,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b){if(b=b.path?b.path.original:b,a.path.original!==b){var c={loc:a.path.loc};throw new q["default"](a.path.original+" doesn't match "+b,c)}}function e(a,b){this.source=a,this.start={line:b.first_line,column:b.first_column},this.end={line:b.last_line,column:b.last_column}}function f(a){return/^\[.*\]$/.test(a)?a.substring(1,a.length-1):a}function g(a,b){return{open:"~"===a.charAt(2),close:"~"===b.charAt(b.length-3)}}function h(a){return a.replace(/^\{\{~?!-?-?/,"").replace(/-?-?~?\}\}$/,"")}function i(a,b,c){c=this.locInfo(c);for(var d=a?"@":"",e=[],f=0,g=0,h=b.length;g<h;g++){var i=b[g].part,j=b[g].original!==i;if(d+=(b[g].separator||"")+i,j||".."!==i&&"."!==i&&"this"!==i)e.push(i);else{if(e.length>0)throw new q["default"]("Invalid path: "+d,{loc:c});".."===i&&f++}}return{type:"PathExpression",data:a,depth:f,parts:e,original:d,loc:c}}function j(a,b,c,d,e,f){var g=d.charAt(3)||d.charAt(2),h="{"!==g&&"&"!==g,i=/\*/.test(d);return{type:i?"Decorator":"MustacheStatement",path:a,params:b,hash:c,escaped:h,strip:e,loc:this.locInfo(f)}}function k(a,b,c,e){d(a,c),e=this.locInfo(e);var f={type:"Program",body:b,strip:{},loc:e};return{type:"BlockStatement",path:a.path,params:a.params,hash:a.hash,program:f,openStrip:{},inverseStrip:{},closeStrip:{},loc:e}}function l(a,b,c,e,f,g){e&&e.path&&d(a,e);var h=/\*/.test(a.open);b.blockParams=a.blockParams;var i=void 0,j=void 0;if(c){if(h)throw new q["default"]("Unexpected inverse block on decorator",c);c.chain&&(c.program.body[0].closeStrip=e.strip),j=c.strip,i=c.program}return f&&(f=i,i=b,b=f),{type:h?"DecoratorBlock":"BlockStatement",path:a.path,params:a.params,hash:a.hash,program:b,inverse:i,openStrip:a.strip,inverseStrip:j,closeStrip:e&&e.strip,loc:this.locInfo(g)}}function m(a,b){if(!b&&a.length){var c=a[0].loc,d=a[a.length-1].loc;c&&d&&(b={source:c.source,start:{line:c.start.line,column:c.start.column},end:{line:d.end.line,column:d.end.column}})}return{type:"Program",body:a,strip:{},loc:b}}function n(a,b,c,e){return d(a,c),{type:"PartialBlockStatement",name:a.path,params:a.params,hash:a.hash,program:b,openStrip:a.strip,closeStrip:c&&c.strip,loc:this.locInfo(e)}}var o=c(1)["default"];b.__esModule=!0,b.SourceLocation=e,b.id=f,b.stripFlags=g,b.stripComment=h,b.preparePath=i,b.prepareMustache=j,b.prepareRawBlock=k,b.prepareBlock=l,b.prepareProgram=m,b.preparePartialBlock=n;var p=c(6),q=o(p)},function(a,b,c){"use strict";function d(){}function e(a,b,c){if(null==a||"string"!=typeof a&&"Program"!==a.type)throw new k["default"]("You must pass a string or Handlebars AST to Handlebars.precompile. You passed "+a);b=b||{},"data"in b||(b.data=!0),b.compat&&(b.useDepths=!0);var d=c.parse(a,b),e=(new c.Compiler).compile(d,b);return(new c.JavaScriptCompiler).compile(e,b)}function f(a,b,c){function d(){var d=c.parse(a,b),e=(new c.Compiler).compile(d,b),f=(new c.JavaScriptCompiler).compile(e,b,void 0,!0);return c.template(f)}function e(a,b){return f||(f=d()),f.call(this,a,b)}if(void 0===b&&(b={}),null==a||"string"!=typeof a&&"Program"!==a.type)throw new k["default"]("You must pass a string or Handlebars AST to Handlebars.compile. You passed "+a);b=l.extend({},b),"data"in b||(b.data=!0),b.compat&&(b.useDepths=!0);var f=void 0;return e._setup=function(a){return f||(f=d()),f._setup(a)},e._child=function(a,b,c,e){return f||(f=d()),f._child(a,b,c,e)},e}function g(a,b){if(a===b)return!0;if(l.isArray(a)&&l.isArray(b)&&a.length===b.length){for(var c=0;c<a.length;c++)if(!g(a[c],b[c]))return!1;return!0}}function h(a){if(!a.path.parts){var b=a.path;a.path={type:"PathExpression",data:!1,depth:0,parts:[b.original+""],original:b.original+"",loc:b.loc}}}var i=c(1)["default"];b.__esModule=!0,b.Compiler=d,b.precompile=e,b.compile=f;var j=c(6),k=i(j),l=c(5),m=c(35),n=i(m),o=[].slice;d.prototype={compiler:d,equals:function(a){var b=this.opcodes.length;if(a.opcodes.length!==b)return!1;for(var c=0;c<b;c++){var d=this.opcodes[c],e=a.opcodes[c];if(d.opcode!==e.opcode||!g(d.args,e.args))return!1}b=this.children.length;for(var c=0;c<b;c++)if(!this.children[c].equals(a.children[c]))return!1;return!0},guid:0,compile:function(a,b){this.sourceNode=[],this.opcodes=[],this.children=[],this.options=b,this.stringParams=b.stringParams,this.trackIds=b.trackIds,b.blockParams=b.blockParams||[];var c=b.knownHelpers;if(b.knownHelpers={helperMissing:!0,blockHelperMissing:!0,each:!0,"if":!0,unless:!0,"with":!0,log:!0,lookup:!0},c)for(var d in c)this.options.knownHelpers[d]=c[d];return this.accept(a)},compileProgram:function(a){var b=new this.compiler,c=b.compile(a,this.options),d=this.guid++;return this.usePartial=this.usePartial||c.usePartial,this.children[d]=c,this.useDepths=this.useDepths||c.useDepths,d},accept:function(a){if(!this[a.type])throw new k["default"]("Unknown type: "+a.type,a);this.sourceNode.unshift(a);var b=this[a.type](a);return this.sourceNode.shift(),b},Program:function(a){this.options.blockParams.unshift(a.blockParams);for(var b=a.body,c=b.length,d=0;d<c;d++)this.accept(b[d]);return this.options.blockParams.shift(),this.isSimple=1===c,this.blockParams=a.blockParams?a.blockParams.length:0,this},BlockStatement:function(a){h(a);var b=a.program,c=a.inverse;b=b&&this.compileProgram(b),c=c&&this.compileProgram(c);var d=this.classifySexpr(a);"helper"===d?this.helperSexpr(a,b,c):"simple"===d?(this.simpleSexpr(a),this.opcode("pushProgram",b),this.opcode("pushProgram",c),this.opcode("emptyHash"),this.opcode("blockValue",a.path.original)):(this.ambiguousSexpr(a,b,c),this.opcode("pushProgram",b),this.opcode("pushProgram",c),this.opcode("emptyHash"),this.opcode("ambiguousBlockValue")),this.opcode("append")},DecoratorBlock:function(a){var b=a.program&&this.compileProgram(a.program),c=this.setupFullMustacheParams(a,b,void 0),d=a.path;this.useDecorators=!0,this.opcode("registerDecorator",c.length,d.original)},PartialStatement:function(a){this.usePartial=!0;var b=a.program;b&&(b=this.compileProgram(a.program));var c=a.params;if(c.length>1)throw new k["default"]("Unsupported number of partial arguments: "+c.length,a);c.length||(this.options.explicitPartialContext?this.opcode("pushLiteral","undefined"):c.push({type:"PathExpression",parts:[],depth:0}));var d=a.name.original,e="SubExpression"===a.name.type;e&&this.accept(a.name),this.setupFullMustacheParams(a,b,void 0,!0);var f=a.indent||"";this.options.preventIndent&&f&&(this.opcode("appendContent",f),f=""),this.opcode("invokePartial",e,d,f),this.opcode("append")},PartialBlockStatement:function(a){this.PartialStatement(a)},MustacheStatement:function(a){this.SubExpression(a),a.escaped&&!this.options.noEscape?this.opcode("appendEscaped"):this.opcode("append")},Decorator:function(a){this.DecoratorBlock(a)},ContentStatement:function(a){a.value&&this.opcode("appendContent",a.value)},CommentStatement:function(){},SubExpression:function(a){h(a);var b=this.classifySexpr(a);"simple"===b?this.simpleSexpr(a):"helper"===b?this.helperSexpr(a):this.ambiguousSexpr(a)},ambiguousSexpr:function(a,b,c){var d=a.path,e=d.parts[0],f=null!=b||null!=c;this.opcode("getContext",d.depth),this.opcode("pushProgram",b),this.opcode("pushProgram",c),d.strict=!0,this.accept(d),this.opcode("invokeAmbiguous",e,f)},simpleSexpr:function(a){var b=a.path;b.strict=!0,this.accept(b),this.opcode("resolvePossibleLambda")},helperSexpr:function(a,b,c){var d=this.setupFullMustacheParams(a,b,c),e=a.path,f=e.parts[0];if(this.options.knownHelpers[f])this.opcode("invokeKnownHelper",d.length,f);else{if(this.options.knownHelpersOnly)throw new k["default"]("You specified knownHelpersOnly, but used the unknown helper "+f,a);e.strict=!0,e.falsy=!0,this.accept(e),this.opcode("invokeHelper",d.length,e.original,n["default"].helpers.simpleId(e))}},PathExpression:function(a){this.addDepth(a.depth),this.opcode("getContext",a.depth);var b=a.parts[0],c=n["default"].helpers.scopedId(a),d=!a.depth&&!c&&this.blockParamIndex(b);d?this.opcode("lookupBlockParam",d,a.parts):b?a.data?(this.options.data=!0,this.opcode("lookupData",a.depth,a.parts,a.strict)):this.opcode("lookupOnContext",a.parts,a.falsy,a.strict,c):this.opcode("pushContext")},StringLiteral:function(a){this.opcode("pushString",a.value)},NumberLiteral:function(a){this.opcode("pushLiteral",a.value)},BooleanLiteral:function(a){this.opcode("pushLiteral",a.value)},UndefinedLiteral:function(){this.opcode("pushLiteral","undefined")},NullLiteral:function(){this.opcode("pushLiteral","null")},Hash:function(a){var b=a.pairs,c=0,d=b.length;for(this.opcode("pushHash");c<d;c++)this.pushParam(b[c].value);for(;c--;)this.opcode("assignToHash",b[c].key);this.opcode("popHash")},opcode:function(a){this.opcodes.push({opcode:a,args:o.call(arguments,1),loc:this.sourceNode[0].loc})},addDepth:function(a){a&&(this.useDepths=!0)},classifySexpr:function(a){var b=n["default"].helpers.simpleId(a.path),c=b&&!!this.blockParamIndex(a.path.parts[0]),d=!c&&n["default"].helpers.helperExpression(a),e=!c&&(d||b);if(e&&!d){var f=a.path.parts[0],g=this.options;g.knownHelpers[f]?d=!0:g.knownHelpersOnly&&(e=!1)}return d?"helper":e?"ambiguous":"simple"},pushParams:function(a){for(var b=0,c=a.length;b<c;b++)this.pushParam(a[b])},pushParam:function(a){var b=null!=a.value?a.value:a.original||"";if(this.stringParams)b.replace&&(b=b.replace(/^(\.?\.\/)*/g,"").replace(/\//g,".")),a.depth&&this.addDepth(a.depth),this.opcode("getContext",a.depth||0),this.opcode("pushStringParam",b,a.type),"SubExpression"===a.type&&this.accept(a);else{if(this.trackIds){var c=void 0;if(!a.parts||n["default"].helpers.scopedId(a)||a.depth||(c=this.blockParamIndex(a.parts[0])),c){var d=a.parts.slice(1).join(".");this.opcode("pushId","BlockParam",c,d)}else b=a.original||b,b.replace&&(b=b.replace(/^this(?:\.|$)/,"").replace(/^\.\//,"").replace(/^\.$/,"")),this.opcode("pushId",a.type,b)}this.accept(a)}},setupFullMustacheParams:function(a,b,c,d){var e=a.params;return this.pushParams(e),this.opcode("pushProgram",b),this.opcode("pushProgram",c),a.hash?this.accept(a.hash):this.opcode("emptyHash",d),e},blockParamIndex:function(a){for(var b=0,c=this.options.blockParams.length;b<c;b++){var d=this.options.blockParams[b],e=d&&l.indexOf(d,a);if(d&&e>=0)return[b,e]}}}},function(a,b,c){"use strict";function d(a){this.value=a}function e(){}function f(a,b,c,d){var e=b.popStack(),f=0,g=c.length;for(a&&g--;f<g;f++)e=b.nameLookup(e,c[f],d);return a?[b.aliasable("container.strict"),"(",e,", ",b.quotedString(c[f]),")"]:e}var g=c(1)["default"];b.__esModule=!0;var h=c(4),i=c(6),j=g(i),k=c(5),l=c(45),m=g(l);e.prototype={nameLookup:function(a,b){return"constructor"===b?["(",a,".propertyIsEnumerable('constructor') ? ",a,".constructor : undefined",")"]:e.isValidJavaScriptVariableName(b)?[a,".",b]:[a,"[",JSON.stringify(b),"]"]},depthedLookup:function(a){return[this.aliasable("container.lookup"),'(depths, "',a,'")']},compilerInfo:function(){var a=h.COMPILER_REVISION,b=h.REVISION_CHANGES[a];return[a,b]},appendToBuffer:function(a,b,c){return k.isArray(a)||(a=[a]),a=this.source.wrap(a,b),this.environment.isSimple?["return ",a,";"]:c?["buffer += ",a,";"]:(a.appendToBuffer=!0,a)},initializeBuffer:function(){return this.quotedString("")},compile:function(a,b,c,d){this.environment=a,this.options=b,this.stringParams=this.options.stringParams,this.trackIds=this.options.trackIds,this.precompile=!d,this.name=this.environment.name,this.isChild=!!c,this.context=c||{decorators:[],programs:[],environments:[]},this.preamble(),this.stackSlot=0,this.stackVars=[],this.aliases={},this.registers={list:[]},this.hashes=[],this.compileStack=[],this.inlineStack=[],this.blockParams=[],this.compileChildren(a,b),this.useDepths=this.useDepths||a.useDepths||a.useDecorators||this.options.compat,this.useBlockParams=this.useBlockParams||a.useBlockParams;var e=a.opcodes,f=void 0,g=void 0,h=void 0,i=void 0;for(h=0,i=e.length;h<i;h++)f=e[h],this.source.currentLocation=f.loc,g=g||f.loc,this[f.opcode].apply(this,f.args);if(this.source.currentLocation=g,this.pushSource(""),this.stackSlot||this.inlineStack.length||this.compileStack.length)throw new j["default"]("Compile completed with content left on stack");this.decorators.isEmpty()?this.decorators=void 0:(this.useDecorators=!0,this.decorators.prepend("var decorators = container.decorators;\n"),this.decorators.push("return fn;"),d?this.decorators=Function.apply(this,["fn","props","container","depth0","data","blockParams","depths",this.decorators.merge()]):(this.decorators.prepend("function(fn, props, container, depth0, data, blockParams, depths) {\n"),this.decorators.push("}\n"),this.decorators=this.decorators.merge()));var k=this.createFunctionContext(d);if(this.isChild)return k;var l={compiler:this.compilerInfo(),main:k};this.decorators&&(l.main_d=this.decorators,l.useDecorators=!0);var m=this.context,n=m.programs,o=m.decorators;for(h=0,i=n.length;h<i;h++)n[h]&&(l[h]=n[h],o[h]&&(l[h+"_d"]=o[h],l.useDecorators=!0));return this.environment.usePartial&&(l.usePartial=!0),this.options.data&&(l.useData=!0),this.useDepths&&(l.useDepths=!0),this.useBlockParams&&(l.useBlockParams=!0),this.options.compat&&(l.compat=!0),d?l.compilerOptions=this.options:(l.compiler=JSON.stringify(l.compiler),this.source.currentLocation={start:{line:1,column:0}},l=this.objectLiteral(l),b.srcName?(l=l.toStringWithSourceMap({file:b.destName}),l.map=l.map&&l.map.toString()):l=l.toString()),l},preamble:function(){this.lastContext=0,this.source=new m["default"](this.options.srcName),this.decorators=new m["default"](this.options.srcName)},createFunctionContext:function(a){var b="",c=this.stackVars.concat(this.registers.list);c.length>0&&(b+=", "+c.join(", "));var d=0;for(var e in this.aliases){var f=this.aliases[e];this.aliases.hasOwnProperty(e)&&f.children&&f.referenceCount>1&&(b+=", alias"+ ++d+"="+e,f.children[0]="alias"+d)}var g=["container","depth0","helpers","partials","data"];(this.useBlockParams||this.useDepths)&&g.push("blockParams"),this.useDepths&&g.push("depths");var h=this.mergeSource(b);return a?(g.push(h),Function.apply(this,g)):this.source.wrap(["function(",g.join(","),") {\n ",h,"}"])},mergeSource:function(a){var b=this.environment.isSimple,c=!this.forceBuffer,d=void 0,e=void 0,f=void 0,g=void 0;return this.source.each(function(a){a.appendToBuffer?(f?a.prepend(" + "):f=a,g=a):(f&&(e?f.prepend("buffer += "):d=!0,g.add(";"),f=g=void 0),e=!0,b||(c=!1))}),c?f?(f.prepend("return "),g.add(";")):e||this.source.push('return "";'):(a+=", buffer = "+(d?"":this.initializeBuffer()),f?(f.prepend("return buffer + "),g.add(";")):this.source.push("return buffer;")),a&&this.source.prepend("var "+a.substring(2)+(d?"":";\n")),this.source.merge()},blockValue:function(a){var b=this.aliasable("container.hooks.blockHelperMissing"),c=[this.contextName(0)];this.setupHelperArgs(a,0,c);var d=this.popStack();c.splice(1,0,d),this.push(this.source.functionCall(b,"call",c))},ambiguousBlockValue:function(){var a=this.aliasable("container.hooks.blockHelperMissing"),b=[this.contextName(0)];this.setupHelperArgs("",0,b,!0),this.flushInline();var c=this.topStack();b.splice(1,0,c),this.pushSource(["if (!",this.lastHelper,") { ",c," = ",this.source.functionCall(a,"call",b),"}"])},appendContent:function(a){this.pendingContent?a=this.pendingContent+a:this.pendingLocation=this.source.currentLocation,this.pendingContent=a},append:function(){if(this.isInline())this.replaceStack(function(a){return[" != null ? ",a,' : ""']}),this.pushSource(this.appendToBuffer(this.popStack()));else{var a=this.popStack();this.pushSource(["if (",a," != null) { ",this.appendToBuffer(a,void 0,!0)," }"]),this.environment.isSimple&&this.pushSource(["else { ",this.appendToBuffer("''",void 0,!0)," }"])}},appendEscaped:function(){this.pushSource(this.appendToBuffer([this.aliasable("container.escapeExpression"),"(",this.popStack(),")"]))},getContext:function(a){this.lastContext=a},pushContext:function(){this.pushStackLiteral(this.contextName(this.lastContext))},lookupOnContext:function(a,b,c,d){var e=0;d||!this.options.compat||this.lastContext?this.pushContext():this.push(this.depthedLookup(a[e++])),this.resolvePath("context",a,e,b,c)},lookupBlockParam:function(a,b){this.useBlockParams=!0,this.push(["blockParams[",a[0],"][",a[1],"]"]),this.resolvePath("context",b,1)},lookupData:function(a,b,c){a?this.pushStackLiteral("container.data(data, "+a+")"):this.pushStackLiteral("data"),this.resolvePath("data",b,0,!0,c)},resolvePath:function(a,b,c,d,e){var g=this;if(this.options.strict||this.options.assumeObjects)return void this.push(f(this.options.strict&&e,this,b,a));for(var h=b.length;c<h;c++)this.replaceStack(function(e){var f=g.nameLookup(e,b[c],a);return d?[" && ",f]:[" != null ? ",f," : ",e]})},resolvePossibleLambda:function(){this.push([this.aliasable("container.lambda"),"(",this.popStack(),", ",this.contextName(0),")"])},pushStringParam:function(a,b){this.pushContext(),this.pushString(b),"SubExpression"!==b&&("string"==typeof a?this.pushString(a):this.pushStackLiteral(a))},emptyHash:function(a){this.trackIds&&this.push("{}"),this.stringParams&&(this.push("{}"),this.push("{}")),this.pushStackLiteral(a?"undefined":"{}")},pushHash:function(){this.hash&&this.hashes.push(this.hash),this.hash={values:[],types:[],contexts:[],ids:[]}},popHash:function(){var a=this.hash;this.hash=this.hashes.pop(),this.trackIds&&this.push(this.objectLiteral(a.ids)),this.stringParams&&(this.push(this.objectLiteral(a.contexts)),this.push(this.objectLiteral(a.types))),this.push(this.objectLiteral(a.values))},pushString:function(a){this.pushStackLiteral(this.quotedString(a))},pushLiteral:function(a){this.pushStackLiteral(a)},pushProgram:function(a){null!=a?this.pushStackLiteral(this.programExpression(a)):this.pushStackLiteral(null)},registerDecorator:function(a,b){var c=this.nameLookup("decorators",b,"decorator"),d=this.setupHelperArgs(b,a);this.decorators.push(["fn = ",this.decorators.functionCall(c,"",["fn","props","container",d])," || fn;"])},invokeHelper:function(a,b,c){var d=this.popStack(),e=this.setupHelper(a,b),f=[];c&&f.push(e.name),f.push(d),this.options.strict||f.push(this.aliasable("container.hooks.helperMissing"));var g=["(",this.itemsSeparatedBy(f,"||"),")"],h=this.source.functionCall(g,"call",e.callParams);this.push(h)},itemsSeparatedBy:function(a,b){var c=[];c.push(a[0]);for(var d=1;d<a.length;d++)c.push(b,a[d]);return c},invokeKnownHelper:function(a,b){var c=this.setupHelper(a,b);this.push(this.source.functionCall(c.name,"call",c.callParams))},invokeAmbiguous:function(a,b){this.useRegister("helper");var c=this.popStack();this.emptyHash();var d=this.setupHelper(0,a,b),e=this.lastHelper=this.nameLookup("helpers",a,"helper"),f=["(","(helper = ",e," || ",c,")"];this.options.strict||(f[0]="(helper = ",f.push(" != null ? helper : ",this.aliasable("container.hooks.helperMissing"))),this.push(["(",f,d.paramsInit?["),(",d.paramsInit]:[],"),","(typeof helper === ",this.aliasable('"function"')," ? ",this.source.functionCall("helper","call",d.callParams)," : helper))"])},invokePartial:function(a,b,c){var d=[],e=this.setupParams(b,1,d);a&&(b=this.popStack(),delete e.name),c&&(e.indent=JSON.stringify(c)),e.helpers="helpers",e.partials="partials",e.decorators="container.decorators",a?d.unshift(b):d.unshift(this.nameLookup("partials",b,"partial")),this.options.compat&&(e.depths="depths"),e=this.objectLiteral(e),d.push(e),this.push(this.source.functionCall("container.invokePartial","",d))},assignToHash:function(a){var b=this.popStack(),c=void 0,d=void 0,e=void 0;this.trackIds&&(e=this.popStack()),this.stringParams&&(d=this.popStack(),c=this.popStack());var f=this.hash;c&&(f.contexts[a]=c),d&&(f.types[a]=d),e&&(f.ids[a]=e),f.values[a]=b},pushId:function(a,b,c){"BlockParam"===a?this.pushStackLiteral("blockParams["+b[0]+"].path["+b[1]+"]"+(c?" + "+JSON.stringify("."+c):"")):"PathExpression"===a?this.pushString(b):"SubExpression"===a?this.pushStackLiteral("true"):this.pushStackLiteral("null")},compiler:e,compileChildren:function(a,b){for(var c=a.children,d=void 0,e=void 0,f=0,g=c.length;f<g;f++){d=c[f],e=new this.compiler;var h=this.matchExistingProgram(d);if(null==h){this.context.programs.push("");var i=this.context.programs.length;d.index=i,d.name="program"+i,this.context.programs[i]=e.compile(d,b,this.context,!this.precompile),this.context.decorators[i]=e.decorators,this.context.environments[i]=d,this.useDepths=this.useDepths||e.useDepths,this.useBlockParams=this.useBlockParams||e.useBlockParams,d.useDepths=this.useDepths,d.useBlockParams=this.useBlockParams}else d.index=h.index,d.name="program"+h.index,this.useDepths=this.useDepths||h.useDepths,this.useBlockParams=this.useBlockParams||h.useBlockParams}},matchExistingProgram:function(a){for(var b=0,c=this.context.environments.length;b<c;b++){var d=this.context.environments[b];if(d&&d.equals(a))return d}},programExpression:function(a){var b=this.environment.children[a],c=[b.index,"data",b.blockParams];return(this.useBlockParams||this.useDepths)&&c.push("blockParams"),this.useDepths&&c.push("depths"),"container.program("+c.join(", ")+")"},useRegister:function(a){this.registers[a]||(this.registers[a]=!0,this.registers.list.push(a))},push:function(a){return a instanceof d||(a=this.source.wrap(a)),this.inlineStack.push(a),a},pushStackLiteral:function(a){this.push(new d(a))},pushSource:function(a){this.pendingContent&&(this.source.push(this.appendToBuffer(this.source.quotedString(this.pendingContent),this.pendingLocation)),this.pendingContent=void 0),a&&this.source.push(a)},replaceStack:function(a){var b=["("],c=void 0,e=void 0,f=void 0;if(!this.isInline())throw new j["default"]("replaceStack on non-inline");var g=this.popStack(!0);if(g instanceof d)c=[g.value],b=["(",c],f=!0;else{e=!0;var h=this.incrStack();b=["((",this.push(h)," = ",g,")"],c=this.topStack()}var i=a.call(this,c);f||this.popStack(),e&&this.stackSlot--,this.push(b.concat(i,")"))},incrStack:function(){return this.stackSlot++,this.stackSlot>this.stackVars.length&&this.stackVars.push("stack"+this.stackSlot),this.topStackName()},topStackName:function(){return"stack"+this.stackSlot},flushInline:function(){var a=this.inlineStack;this.inlineStack=[];for(var b=0,c=a.length;b<c;b++){var e=a[b];if(e instanceof d)this.compileStack.push(e);else{var f=this.incrStack();this.pushSource([f," = ",e,";"]),this.compileStack.push(f);
29
- }}},isInline:function(){return this.inlineStack.length},popStack:function(a){var b=this.isInline(),c=(b?this.inlineStack:this.compileStack).pop();if(!a&&c instanceof d)return c.value;if(!b){if(!this.stackSlot)throw new j["default"]("Invalid stack pop");this.stackSlot--}return c},topStack:function(){var a=this.isInline()?this.inlineStack:this.compileStack,b=a[a.length-1];return b instanceof d?b.value:b},contextName:function(a){return this.useDepths&&a?"depths["+a+"]":"depth"+a},quotedString:function(a){return this.source.quotedString(a)},objectLiteral:function(a){return this.source.objectLiteral(a)},aliasable:function(a){var b=this.aliases[a];return b?(b.referenceCount++,b):(b=this.aliases[a]=this.source.wrap(a),b.aliasable=!0,b.referenceCount=1,b)},setupHelper:function(a,b,c){var d=[],e=this.setupHelperArgs(b,a,d,c),f=this.nameLookup("helpers",b,"helper"),g=this.aliasable(this.contextName(0)+" != null ? "+this.contextName(0)+" : (container.nullContext || {})");return{params:d,paramsInit:e,name:f,callParams:[g].concat(d)}},setupParams:function(a,b,c){var d={},e=[],f=[],g=[],h=!c,i=void 0;h&&(c=[]),d.name=this.quotedString(a),d.hash=this.popStack(),this.trackIds&&(d.hashIds=this.popStack()),this.stringParams&&(d.hashTypes=this.popStack(),d.hashContexts=this.popStack());var j=this.popStack(),k=this.popStack();(k||j)&&(d.fn=k||"container.noop",d.inverse=j||"container.noop");for(var l=b;l--;)i=this.popStack(),c[l]=i,this.trackIds&&(g[l]=this.popStack()),this.stringParams&&(f[l]=this.popStack(),e[l]=this.popStack());return h&&(d.args=this.source.generateArray(c)),this.trackIds&&(d.ids=this.source.generateArray(g)),this.stringParams&&(d.types=this.source.generateArray(f),d.contexts=this.source.generateArray(e)),this.options.data&&(d.data="data"),this.useBlockParams&&(d.blockParams="blockParams"),d},setupHelperArgs:function(a,b,c,d){var e=this.setupParams(a,b,c);return e=this.objectLiteral(e),d?(this.useRegister("options"),c.push("options"),["options=",e]):c?(c.push(e),""):e}},function(){for(var a="break else new var case finally return void catch for switch while continue function this with default if throw delete in try do instanceof typeof abstract enum int short boolean export interface static byte extends long super char final native synchronized class float package throws const goto private transient debugger implements protected volatile double import public let yield await null true false".split(" "),b=e.RESERVED_WORDS={},c=0,d=a.length;c<d;c++)b[a[c]]=!0}(),e.isValidJavaScriptVariableName=function(a){return!e.RESERVED_WORDS[a]&&/^[a-zA-Z_$][0-9a-zA-Z_$]*$/.test(a)},b["default"]=e,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b,c){if(f.isArray(a)){for(var d=[],e=0,g=a.length;e<g;e++)d.push(b.wrap(a[e],c));return d}return"boolean"==typeof a||"number"==typeof a?a+"":a}function e(a){this.srcFile=a,this.source=[]}b.__esModule=!0;var f=c(5),g=void 0;try{}catch(h){}g||(g=function(a,b,c,d){this.src="",d&&this.add(d)},g.prototype={add:function(a){f.isArray(a)&&(a=a.join("")),this.src+=a},prepend:function(a){f.isArray(a)&&(a=a.join("")),this.src=a+this.src},toStringWithSourceMap:function(){return{code:this.toString()}},toString:function(){return this.src}}),e.prototype={isEmpty:function(){return!this.source.length},prepend:function(a,b){this.source.unshift(this.wrap(a,b))},push:function(a,b){this.source.push(this.wrap(a,b))},merge:function(){var a=this.empty();return this.each(function(b){a.add([" ",b,"\n"])}),a},each:function(a){for(var b=0,c=this.source.length;b<c;b++)a(this.source[b])},empty:function(){var a=this.currentLocation||{start:{}};return new g(a.start.line,a.start.column,this.srcFile)},wrap:function(a){var b=arguments.length<=1||void 0===arguments[1]?this.currentLocation||{start:{}}:arguments[1];return a instanceof g?a:(a=d(a,this,b),new g(b.start.line,b.start.column,this.srcFile,a))},functionCall:function(a,b,c){return c=this.generateList(c),this.wrap([a,b?"."+b+"(":"(",c,")"])},quotedString:function(a){return'"'+(a+"").replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")+'"'},objectLiteral:function(a){var b=[];for(var c in a)if(a.hasOwnProperty(c)){var e=d(a[c],this);"undefined"!==e&&b.push([this.quotedString(c),":",e])}var f=this.generateList(b);return f.prepend("{"),f.add("}"),f},generateList:function(a){for(var b=this.empty(),c=0,e=a.length;c<e;c++)c&&b.add(","),b.add(d(a[c],this));return b},generateArray:function(a){var b=this.generateList(a);return b.prepend("["),b.add("]"),b}},b["default"]=e,a.exports=b["default"]}])});
1
  /**!
2
 
3
  @license
4
+ handlebars v4.4.5
5
 
6
  Copyright (C) 2011-2017 by Yehuda Katz
7
 
24
  THE SOFTWARE.
25
 
26
  */
27
+ !function(a,b){"object"==typeof exports&&"object"==typeof module?module.exports=b():"function"==typeof define&&define.amd?define([],b):"object"==typeof exports?exports.Handlebars=b():a.Handlebars=b()}(this,function(){return function(a){function b(d){if(c[d])return c[d].exports;var e=c[d]={exports:{},id:d,loaded:!1};return a[d].call(e.exports,e,e.exports,b),e.loaded=!0,e.exports}var c={};return b.m=a,b.c=c,b.p="",b(0)}([function(a,b,c){"use strict";function d(){var a=r();return a.compile=function(b,c){return k.compile(b,c,a)},a.precompile=function(b,c){return k.precompile(b,c,a)},a.AST=i["default"],a.Compiler=k.Compiler,a.JavaScriptCompiler=m["default"],a.Parser=j.parser,a.parse=j.parse,a}var e=c(1)["default"];b.__esModule=!0;var f=c(2),g=e(f),h=c(35),i=e(h),j=c(36),k=c(41),l=c(42),m=e(l),n=c(39),o=e(n),p=c(34),q=e(p),r=g["default"].create,s=d();s.create=d,q["default"](s),s.Visitor=o["default"],s["default"]=s,b["default"]=s,a.exports=b["default"]},function(a,b){"use strict";b["default"]=function(a){return a&&a.__esModule?a:{"default":a}},b.__esModule=!0},function(a,b,c){"use strict";function d(){var a=new h.HandlebarsEnvironment;return n.extend(a,h),a.SafeString=j["default"],a.Exception=l["default"],a.Utils=n,a.escapeExpression=n.escapeExpression,a.VM=p,a.template=function(b){return p.template(b,a)},a}var e=c(3)["default"],f=c(1)["default"];b.__esModule=!0;var g=c(4),h=e(g),i=c(21),j=f(i),k=c(6),l=f(k),m=c(5),n=e(m),o=c(22),p=e(o),q=c(34),r=f(q),s=d();s.create=d,r["default"](s),s["default"]=s,b["default"]=s,a.exports=b["default"]},function(a,b){"use strict";b["default"]=function(a){if(a&&a.__esModule)return a;var b={};if(null!=a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(b[c]=a[c]);return b["default"]=a,b},b.__esModule=!0},function(a,b,c){"use strict";function d(a,b,c){this.helpers=a||{},this.partials=b||{},this.decorators=c||{},i.registerDefaultHelpers(this),j.registerDefaultDecorators(this)}var e=c(1)["default"];b.__esModule=!0,b.HandlebarsEnvironment=d;var f=c(5),g=c(6),h=e(g),i=c(10),j=c(18),k=c(20),l=e(k),m="4.4.5";b.VERSION=m;var n=8;b.COMPILER_REVISION=n;var o=7;b.LAST_COMPATIBLE_COMPILER_REVISION=o;var p={1:"<= 1.0.rc.2",2:"== 1.0.0-rc.3",3:"== 1.0.0-rc.4",4:"== 1.x.x",5:"== 2.0.0-alpha.x",6:">= 2.0.0-beta.1",7:">= 4.0.0 <4.3.0",8:">= 4.3.0"};b.REVISION_CHANGES=p;var q="[object Object]";d.prototype={constructor:d,logger:l["default"],log:l["default"].log,registerHelper:function(a,b){if(f.toString.call(a)===q){if(b)throw new h["default"]("Arg not supported with multiple helpers");f.extend(this.helpers,a)}else this.helpers[a]=b},unregisterHelper:function(a){delete this.helpers[a]},registerPartial:function(a,b){if(f.toString.call(a)===q)f.extend(this.partials,a);else{if("undefined"==typeof b)throw new h["default"]('Attempting to register a partial called "'+a+'" as undefined');this.partials[a]=b}},unregisterPartial:function(a){delete this.partials[a]},registerDecorator:function(a,b){if(f.toString.call(a)===q){if(b)throw new h["default"]("Arg not supported with multiple decorators");f.extend(this.decorators,a)}else this.decorators[a]=b},unregisterDecorator:function(a){delete this.decorators[a]}};var r=l["default"].log;b.log=r,b.createFrame=f.createFrame,b.logger=l["default"]},function(a,b){"use strict";function c(a){return k[a]}function d(a){for(var b=1;b<arguments.length;b++)for(var c in arguments[b])Object.prototype.hasOwnProperty.call(arguments[b],c)&&(a[c]=arguments[b][c]);return a}function e(a,b){for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return c;return-1}function f(a){if("string"!=typeof a){if(a&&a.toHTML)return a.toHTML();if(null==a)return"";if(!a)return a+"";a=""+a}return m.test(a)?a.replace(l,c):a}function g(a){return!a&&0!==a||!(!p(a)||0!==a.length)}function h(a){var b=d({},a);return b._parent=a,b}function i(a,b){return a.path=b,a}function j(a,b){return(a?a+".":"")+b}b.__esModule=!0,b.extend=d,b.indexOf=e,b.escapeExpression=f,b.isEmpty=g,b.createFrame=h,b.blockParams=i,b.appendContextPath=j;var k={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;","`":"&#x60;","=":"&#x3D;"},l=/[&<>"'`=]/g,m=/[&<>"'`=]/,n=Object.prototype.toString;b.toString=n;var o=function(a){return"function"==typeof a};o(/x/)&&(b.isFunction=o=function(a){return"function"==typeof a&&"[object Function]"===n.call(a)}),b.isFunction=o;var p=Array.isArray||function(a){return!(!a||"object"!=typeof a)&&"[object Array]"===n.call(a)};b.isArray=p},function(a,b,c){"use strict";function d(a,b){var c=b&&b.loc,g=void 0,h=void 0;c&&(g=c.start.line,h=c.start.column,a+=" - "+g+":"+h);for(var i=Error.prototype.constructor.call(this,a),j=0;j<f.length;j++)this[f[j]]=i[f[j]];Error.captureStackTrace&&Error.captureStackTrace(this,d);try{c&&(this.lineNumber=g,e?Object.defineProperty(this,"column",{value:h,enumerable:!0}):this.column=h)}catch(k){}}var e=c(7)["default"];b.__esModule=!0;var f=["description","fileName","lineNumber","message","name","number","stack"];d.prototype=new Error,b["default"]=d,a.exports=b["default"]},function(a,b,c){a.exports={"default":c(8),__esModule:!0}},function(a,b,c){var d=c(9);a.exports=function(a,b,c){return d.setDesc(a,b,c)}},function(a,b){var c=Object;a.exports={create:c.create,getProto:c.getPrototypeOf,isEnum:{}.propertyIsEnumerable,getDesc:c.getOwnPropertyDescriptor,setDesc:c.defineProperty,setDescs:c.defineProperties,getKeys:c.keys,getNames:c.getOwnPropertyNames,getSymbols:c.getOwnPropertySymbols,each:[].forEach}},function(a,b,c){"use strict";function d(a){h["default"](a),j["default"](a),l["default"](a),n["default"](a),p["default"](a),r["default"](a),t["default"](a)}function e(a,b,c){a.helpers[b]&&(a.hooks[b]=a.helpers[b],c||delete a.helpers[b])}var f=c(1)["default"];b.__esModule=!0,b.registerDefaultHelpers=d,b.moveHelperToHooks=e;var g=c(11),h=f(g),i=c(12),j=f(i),k=c(13),l=f(k),m=c(14),n=f(m),o=c(15),p=f(o),q=c(16),r=f(q),s=c(17),t=f(s)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerHelper("blockHelperMissing",function(b,c){var e=c.inverse,f=c.fn;if(b===!0)return f(this);if(b===!1||null==b)return e(this);if(d.isArray(b))return b.length>0?(c.ids&&(c.ids=[c.name]),a.helpers.each(b,c)):e(this);if(c.data&&c.ids){var g=d.createFrame(c.data);g.contextPath=d.appendContextPath(c.data.contextPath,c.name),c={data:g}}return f(b,c)})},a.exports=b["default"]},function(a,b,c){(function(d){"use strict";var e=c(1)["default"];b.__esModule=!0;var f=c(5),g=c(6),h=e(g);b["default"]=function(a){a.registerHelper("each",function(a,b){function c(b,c,d){k&&(k.key=b,k.index=c,k.first=0===c,k.last=!!d,l&&(k.contextPath=l+b)),j+=e(a[b],{data:k,blockParams:f.blockParams([a[b],b],[l+b,null])})}if(!b)throw new h["default"]("Must pass iterator to #each");var e=b.fn,g=b.inverse,i=0,j="",k=void 0,l=void 0;if(b.data&&b.ids&&(l=f.appendContextPath(b.data.contextPath,b.ids[0])+"."),f.isFunction(a)&&(a=a.call(this)),b.data&&(k=f.createFrame(b.data)),a&&"object"==typeof a)if(f.isArray(a))for(var m=a.length;i<m;i++)i in a&&c(i,i,i===a.length-1);else if(d.Symbol&&a[d.Symbol.iterator]){for(var n=[],o=a[d.Symbol.iterator](),p=o.next();!p.done;p=o.next())n.push(p.value);a=n;for(var m=a.length;i<m;i++)c(i,i,i===a.length-1)}else{var q=void 0;for(var r in a)a.hasOwnProperty(r)&&(void 0!==q&&c(q,i-1),q=r,i++);void 0!==q&&c(q,i-1,!0)}return 0===i&&(j=g(this)),j})},a.exports=b["default"]}).call(b,function(){return this}())},function(a,b,c){"use strict";var d=c(1)["default"];b.__esModule=!0;var e=c(6),f=d(e);b["default"]=function(a){a.registerHelper("helperMissing",function(){if(1!==arguments.length)throw new f["default"]('Missing helper: "'+arguments[arguments.length-1].name+'"')})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerHelper("if",function(a,b){return d.isFunction(a)&&(a=a.call(this)),!b.hash.includeZero&&!a||d.isEmpty(a)?b.inverse(this):b.fn(this)}),a.registerHelper("unless",function(b,c){return a.helpers["if"].call(this,b,{fn:c.inverse,inverse:c.fn,hash:c.hash})})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("log",function(){for(var b=[void 0],c=arguments[arguments.length-1],d=0;d<arguments.length-1;d++)b.push(arguments[d]);var e=1;null!=c.hash.level?e=c.hash.level:c.data&&null!=c.data.level&&(e=c.data.level),b[0]=e,a.log.apply(a,b)})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("lookup",function(a,b){if(!a)return a;if("constructor"!==b||a.propertyIsEnumerable(b))return a[b]})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerHelper("with",function(a,b){d.isFunction(a)&&(a=a.call(this));var c=b.fn;if(d.isEmpty(a))return b.inverse(this);var e=b.data;return b.data&&b.ids&&(e=d.createFrame(b.data),e.contextPath=d.appendContextPath(b.data.contextPath,b.ids[0])),c(a,{data:e,blockParams:d.blockParams([a],[e&&e.contextPath])})})},a.exports=b["default"]},function(a,b,c){"use strict";function d(a){g["default"](a)}var e=c(1)["default"];b.__esModule=!0,b.registerDefaultDecorators=d;var f=c(19),g=e(f)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerDecorator("inline",function(a,b,c,e){var f=a;return b.partials||(b.partials={},f=function(e,f){var g=c.partials;c.partials=d.extend({},g,b.partials);var h=a(e,f);return c.partials=g,h}),b.partials[e.args[0]]=e.fn,f})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5),e={methodMap:["debug","info","warn","error"],level:"info",lookupLevel:function(a){if("string"==typeof a){var b=d.indexOf(e.methodMap,a.toLowerCase());a=b>=0?b:parseInt(a,10)}return a},log:function(a){if(a=e.lookupLevel(a),"undefined"!=typeof console&&e.lookupLevel(e.level)<=a){var b=e.methodMap[a];console[b]||(b="log");for(var c=arguments.length,d=Array(c>1?c-1:0),f=1;f<c;f++)d[f-1]=arguments[f];console[b].apply(console,d)}}};b["default"]=e,a.exports=b["default"]},function(a,b){"use strict";function c(a){this.string=a}b.__esModule=!0,c.prototype.toString=c.prototype.toHTML=function(){return""+this.string},b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(a){var b=a&&a[0]||1,c=s.COMPILER_REVISION;if(!(b>=s.LAST_COMPATIBLE_COMPILER_REVISION&&b<=s.COMPILER_REVISION)){if(b<s.LAST_COMPATIBLE_COMPILER_REVISION){var d=s.REVISION_CHANGES[c],e=s.REVISION_CHANGES[b];throw new r["default"]("Template was precompiled with an older version of Handlebars than the current runtime. Please update your precompiler to a newer version ("+d+") or downgrade your runtime to an older version ("+e+").")}throw new r["default"]("Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version ("+a[1]+").")}}function e(a,b){function c(c,d,e){e.hash&&(d=p.extend({},d,e.hash),e.ids&&(e.ids[0]=!0)),c=b.VM.resolvePartial.call(this,c,d,e);var f=p.extend({},e,{hooks:this.hooks}),g=b.VM.invokePartial.call(this,c,d,f);if(null==g&&b.compile&&(e.partials[e.name]=b.compile(c,a.compilerOptions,b),g=e.partials[e.name](d,f)),null!=g){if(e.indent){for(var h=g.split("\n"),i=0,j=h.length;i<j&&(h[i]||i+1!==j);i++)h[i]=e.indent+h[i];g=h.join("\n")}return g}throw new r["default"]("The partial "+e.name+" could not be compiled when running in runtime-only mode")}function d(b){function c(b){return""+a.main(g,b,g.helpers,g.partials,f,i,h)}var e=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],f=e.data;d._setup(e),!e.partial&&a.useData&&(f=j(b,f));var h=void 0,i=a.useBlockParams?[]:void 0;return a.useDepths&&(h=e.depths?b!=e.depths[0]?[b].concat(e.depths):e.depths:[b]),(c=k(a.main,c,g,e.depths||[],f,i))(b,e)}if(!b)throw new r["default"]("No environment passed to template");if(!a||!a.main)throw new r["default"]("Unknown template object: "+typeof a);a.main.decorator=a.main_d,b.VM.checkRevision(a.compiler);var e=a.compiler&&7===a.compiler[0],g={strict:function(a,b){if(!(b in a))throw new r["default"]('"'+b+'" not defined in '+a);return a[b]},lookup:function(a,b){for(var c=a.length,d=0;d<c;d++)if(a[d]&&null!=a[d][b])return a[d][b]},lambda:function(a,b){return"function"==typeof a?a.call(b):a},escapeExpression:p.escapeExpression,invokePartial:c,fn:function(b){var c=a[b];return c.decorator=a[b+"_d"],c},programs:[],program:function(a,b,c,d,e){var g=this.programs[a],h=this.fn(a);return b||e||d||c?g=f(this,a,h,b,c,d,e):g||(g=this.programs[a]=f(this,a,h)),g},data:function(a,b){for(;a&&b--;)a=a._parent;return a},nullContext:l({}),noop:b.VM.noop,compilerInfo:a.compiler};return d.isTop=!0,d._setup=function(c){if(c.partial)g.helpers=c.helpers,g.partials=c.partials,g.decorators=c.decorators,g.hooks=c.hooks;else{g.helpers=p.extend({},b.helpers,c.helpers),a.usePartial&&(g.partials=p.extend({},b.partials,c.partials)),(a.usePartial||a.useDecorators)&&(g.decorators=p.extend({},b.decorators,c.decorators)),g.hooks={};var d=c.allowCallsToHelperMissing||e;t.moveHelperToHooks(g,"helperMissing",d),t.moveHelperToHooks(g,"blockHelperMissing",d)}},d._child=function(b,c,d,e){if(a.useBlockParams&&!d)throw new r["default"]("must pass block params");if(a.useDepths&&!e)throw new r["default"]("must pass parent depths");return f(g,b,a[b],c,0,d,e)},d}function f(a,b,c,d,e,f,g){function h(b){var e=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],h=g;return!g||b==g[0]||b===a.nullContext&&null===g[0]||(h=[b].concat(g)),c(a,b,a.helpers,a.partials,e.data||d,f&&[e.blockParams].concat(f),h)}return h=k(c,h,a,g,d,f),h.program=b,h.depth=g?g.length:0,h.blockParams=e||0,h}function g(a,b,c){return a?a.call||c.name||(c.name=a,a=c.partials[a]):a="@partial-block"===c.name?c.data["partial-block"]:c.partials[c.name],a}function h(a,b,c){var d=c.data&&c.data["partial-block"];c.partial=!0,c.ids&&(c.data.contextPath=c.ids[0]||c.data.contextPath);var e=void 0;if(c.fn&&c.fn!==i&&!function(){c.data=s.createFrame(c.data);var a=c.fn;e=c.data["partial-block"]=function(b){var c=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];return c.data=s.createFrame(c.data),c.data["partial-block"]=d,a(b,c)},a.partials&&(c.partials=p.extend({},c.partials,a.partials))}(),void 0===a&&e&&(a=e),void 0===a)throw new r["default"]("The partial "+c.name+" could not be found");if(a instanceof Function)return a(b,c)}function i(){return""}function j(a,b){return b&&"root"in b||(b=b?s.createFrame(b):{},b.root=a),b}function k(a,b,c,d,e,f){if(a.decorator){var g={};b=a.decorator(b,g,c,d&&d[0],e,f,d),p.extend(b,g)}return b}var l=c(23)["default"],m=c(3)["default"],n=c(1)["default"];b.__esModule=!0,b.checkRevision=d,b.template=e,b.wrapProgram=f,b.resolvePartial=g,b.invokePartial=h,b.noop=i;var o=c(5),p=m(o),q=c(6),r=n(q),s=c(4),t=c(10)},function(a,b,c){a.exports={"default":c(24),__esModule:!0}},function(a,b,c){c(25),a.exports=c(30).Object.seal},function(a,b,c){var d=c(26);c(27)("seal",function(a){return function(b){return a&&d(b)?a(b):b}})},function(a,b){a.exports=function(a){return"object"==typeof a?null!==a:"function"==typeof a}},function(a,b,c){var d=c(28),e=c(30),f=c(33);a.exports=function(a,b){var c=(e.Object||{})[a]||Object[a],g={};g[a]=b(c),d(d.S+d.F*f(function(){c(1)}),"Object",g)}},function(a,b,c){var d=c(29),e=c(30),f=c(31),g="prototype",h=function(a,b,c){var i,j,k,l=a&h.F,m=a&h.G,n=a&h.S,o=a&h.P,p=a&h.B,q=a&h.W,r=m?e:e[b]||(e[b]={}),s=m?d:n?d[b]:(d[b]||{})[g];m&&(c=b);for(i in c)j=!l&&s&&i in s,j&&i in r||(k=j?s[i]:c[i],r[i]=m&&"function"!=typeof s[i]?c[i]:p&&j?f(k,d):q&&s[i]==k?function(a){var b=function(b){return this instanceof a?new a(b):a(b)};return b[g]=a[g],b}(k):o&&"function"==typeof k?f(Function.call,k):k,o&&((r[g]||(r[g]={}))[i]=k))};h.F=1,h.G=2,h.S=4,h.P=8,h.B=16,h.W=32,a.exports=h},function(a,b){var c=a.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=c)},function(a,b){var c=a.exports={version:"1.2.6"};"number"==typeof __e&&(__e=c)},function(a,b,c){var d=c(32);a.exports=function(a,b,c){if(d(a),void 0===b)return a;switch(c){case 1:return function(c){return a.call(b,c)};case 2:return function(c,d){return a.call(b,c,d)};case 3:return function(c,d,e){return a.call(b,c,d,e)}}return function(){return a.apply(b,arguments)}}},function(a,b){a.exports=function(a){if("function"!=typeof a)throw TypeError(a+" is not a function!");return a}},function(a,b){a.exports=function(a){try{return!!a()}catch(b){return!0}}},function(a,b){(function(c){"use strict";b.__esModule=!0,b["default"]=function(a){var b="undefined"!=typeof c?c:window,d=b.Handlebars;a.noConflict=function(){return b.Handlebars===a&&(b.Handlebars=d),a}},a.exports=b["default"]}).call(b,function(){return this}())},function(a,b){"use strict";b.__esModule=!0;var c={helpers:{helperExpression:function(a){return"SubExpression"===a.type||("MustacheStatement"===a.type||"BlockStatement"===a.type)&&!!(a.params&&a.params.length||a.hash)},scopedId:function(a){return/^\.|this\b/.test(a.original)},simpleId:function(a){return 1===a.parts.length&&!c.helpers.scopedId(a)&&!a.depth}}};b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b){if("Program"===a.type)return a;h["default"].yy=n,n.locInfo=function(a){return new n.SourceLocation(b&&b.srcName,a)};var c=new j["default"](b);return c.accept(h["default"].parse(a))}var e=c(1)["default"],f=c(3)["default"];b.__esModule=!0,b.parse=d;var g=c(37),h=e(g),i=c(38),j=e(i),k=c(40),l=f(k),m=c(5);b.parser=h["default"];var n={};m.extend(n,l)},function(a,b){"use strict";b.__esModule=!0;var c=function(){function a(){this.yy={}}var b={trace:function(){},yy:{},symbols_:{error:2,root:3,program:4,EOF:5,program_repetition0:6,statement:7,mustache:8,block:9,rawBlock:10,partial:11,partialBlock:12,content:13,COMMENT:14,CONTENT:15,openRawBlock:16,rawBlock_repetition0:17,END_RAW_BLOCK:18,OPEN_RAW_BLOCK:19,helperName:20,openRawBlock_repetition0:21,openRawBlock_option0:22,CLOSE_RAW_BLOCK:23,openBlock:24,block_option0:25,closeBlock:26,openInverse:27,block_option1:28,OPEN_BLOCK:29,openBlock_repetition0:30,openBlock_option0:31,openBlock_option1:32,CLOSE:33,OPEN_INVERSE:34,openInverse_repetition0:35,openInverse_option0:36,openInverse_option1:37,openInverseChain:38,OPEN_INVERSE_CHAIN:39,openInverseChain_repetition0:40,openInverseChain_option0:41,openInverseChain_option1:42,inverseAndProgram:43,INVERSE:44,inverseChain:45,inverseChain_option0:46,OPEN_ENDBLOCK:47,OPEN:48,mustache_repetition0:49,mustache_option0:50,OPEN_UNESCAPED:51,mustache_repetition1:52,mustache_option1:53,CLOSE_UNESCAPED:54,OPEN_PARTIAL:55,partialName:56,partial_repetition0:57,partial_option0:58,openPartialBlock:59,OPEN_PARTIAL_BLOCK:60,openPartialBlock_repetition0:61,openPartialBlock_option0:62,param:63,sexpr:64,OPEN_SEXPR:65,sexpr_repetition0:66,sexpr_option0:67,CLOSE_SEXPR:68,hash:69,hash_repetition_plus0:70,hashSegment:71,ID:72,EQUALS:73,blockParams:74,OPEN_BLOCK_PARAMS:75,blockParams_repetition_plus0:76,CLOSE_BLOCK_PARAMS:77,path:78,dataName:79,STRING:80,NUMBER:81,BOOLEAN:82,UNDEFINED:83,NULL:84,DATA:85,pathSegments:86,SEP:87,$accept:0,$end:1},terminals_:{2:"error",5:"EOF",14:"COMMENT",15:"CONTENT",18:"END_RAW_BLOCK",19:"OPEN_RAW_BLOCK",23:"CLOSE_RAW_BLOCK",29:"OPEN_BLOCK",33:"CLOSE",34:"OPEN_INVERSE",39:"OPEN_INVERSE_CHAIN",44:"INVERSE",47:"OPEN_ENDBLOCK",48:"OPEN",51:"OPEN_UNESCAPED",54:"CLOSE_UNESCAPED",55:"OPEN_PARTIAL",60:"OPEN_PARTIAL_BLOCK",65:"OPEN_SEXPR",68:"CLOSE_SEXPR",72:"ID",73:"EQUALS",75:"OPEN_BLOCK_PARAMS",77:"CLOSE_BLOCK_PARAMS",80:"STRING",81:"NUMBER",82:"BOOLEAN",83:"UNDEFINED",84:"NULL",85:"DATA",87:"SEP"},productions_:[0,[3,2],[4,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[13,1],[10,3],[16,5],[9,4],[9,4],[24,6],[27,6],[38,6],[43,2],[45,3],[45,1],[26,3],[8,5],[8,5],[11,5],[12,3],[59,5],[63,1],[63,1],[64,5],[69,1],[71,3],[74,3],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[56,1],[56,1],[79,2],[78,1],[86,3],[86,1],[6,0],[6,2],[17,0],[17,2],[21,0],[21,2],[22,0],[22,1],[25,0],[25,1],[28,0],[28,1],[30,0],[30,2],[31,0],[31,1],[32,0],[32,1],[35,0],[35,2],[36,0],[36,1],[37,0],[37,1],[40,0],[40,2],[41,0],[41,1],[42,0],[42,1],[46,0],[46,1],[49,0],[49,2],[50,0],[50,1],[52,0],[52,2],[53,0],[53,1],[57,0],[57,2],[58,0],[58,1],[61,0],[61,2],[62,0],[62,1],[66,0],[66,2],[67,0],[67,1],[70,1],[70,2],[76,1],[76,2]],performAction:function(a,b,c,d,e,f,g){var h=f.length-1;switch(e){case 1:return f[h-1];case 2:this.$=d.prepareProgram(f[h]);break;case 3:this.$=f[h];break;case 4:this.$=f[h];break;case 5:this.$=f[h];break;case 6:this.$=f[h];break;case 7:this.$=f[h];break;case 8:this.$=f[h];break;case 9:this.$={type:"CommentStatement",value:d.stripComment(f[h]),strip:d.stripFlags(f[h],f[h]),loc:d.locInfo(this._$)};break;case 10:this.$={type:"ContentStatement",original:f[h],value:f[h],loc:d.locInfo(this._$)};break;case 11:this.$=d.prepareRawBlock(f[h-2],f[h-1],f[h],this._$);break;case 12:this.$={path:f[h-3],params:f[h-2],hash:f[h-1]};break;case 13:this.$=d.prepareBlock(f[h-3],f[h-2],f[h-1],f[h],!1,this._$);break;case 14:this.$=d.prepareBlock(f[h-3],f[h-2],f[h-1],f[h],!0,this._$);break;case 15:this.$={open:f[h-5],path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 16:this.$={path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 17:this.$={path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 18:this.$={strip:d.stripFlags(f[h-1],f[h-1]),program:f[h]};break;case 19:var i=d.prepareBlock(f[h-2],f[h-1],f[h],f[h],!1,this._$),j=d.prepareProgram([i],f[h-1].loc);j.chained=!0,this.$={strip:f[h-2].strip,program:j,chain:!0};break;case 20:this.$=f[h];break;case 21:this.$={path:f[h-1],strip:d.stripFlags(f[h-2],f[h])};break;case 22:this.$=d.prepareMustache(f[h-3],f[h-2],f[h-1],f[h-4],d.stripFlags(f[h-4],f[h]),this._$);break;case 23:this.$=d.prepareMustache(f[h-3],f[h-2],f[h-1],f[h-4],d.stripFlags(f[h-4],f[h]),this._$);break;case 24:this.$={type:"PartialStatement",name:f[h-3],params:f[h-2],hash:f[h-1],indent:"",strip:d.stripFlags(f[h-4],f[h]),loc:d.locInfo(this._$)};break;case 25:this.$=d.preparePartialBlock(f[h-2],f[h-1],f[h],this._$);break;case 26:this.$={path:f[h-3],params:f[h-2],hash:f[h-1],strip:d.stripFlags(f[h-4],f[h])};break;case 27:this.$=f[h];break;case 28:this.$=f[h];break;case 29:this.$={type:"SubExpression",path:f[h-3],params:f[h-2],hash:f[h-1],loc:d.locInfo(this._$)};break;case 30:this.$={type:"Hash",pairs:f[h],loc:d.locInfo(this._$)};break;case 31:this.$={type:"HashPair",key:d.id(f[h-2]),value:f[h],loc:d.locInfo(this._$)};break;case 32:this.$=d.id(f[h-1]);break;case 33:this.$=f[h];break;case 34:this.$=f[h];break;case 35:this.$={type:"StringLiteral",value:f[h],original:f[h],loc:d.locInfo(this._$)};break;case 36:this.$={type:"NumberLiteral",value:Number(f[h]),original:Number(f[h]),loc:d.locInfo(this._$)};break;case 37:this.$={type:"BooleanLiteral",value:"true"===f[h],original:"true"===f[h],loc:d.locInfo(this._$)};break;case 38:this.$={type:"UndefinedLiteral",original:void 0,value:void 0,loc:d.locInfo(this._$)};break;case 39:this.$={type:"NullLiteral",original:null,value:null,loc:d.locInfo(this._$)};break;case 40:this.$=f[h];break;case 41:this.$=f[h];break;case 42:this.$=d.preparePath(!0,f[h],this._$);break;case 43:this.$=d.preparePath(!1,f[h],this._$);break;case 44:f[h-2].push({part:d.id(f[h]),original:f[h],separator:f[h-1]}),this.$=f[h-2];break;case 45:this.$=[{part:d.id(f[h]),original:f[h]}];break;case 46:this.$=[];break;case 47:f[h-1].push(f[h]);break;case 48:this.$=[];break;case 49:f[h-1].push(f[h]);break;case 50:this.$=[];break;case 51:f[h-1].push(f[h]);break;case 58:this.$=[];break;case 59:f[h-1].push(f[h]);break;case 64:this.$=[];break;case 65:f[h-1].push(f[h]);break;case 70:this.$=[];break;case 71:f[h-1].push(f[h]);break;case 78:this.$=[];break;case 79:f[h-1].push(f[h]);break;case 82:this.$=[];break;case 83:f[h-1].push(f[h]);break;case 86:this.$=[];break;case 87:f[h-1].push(f[h]);break;case 90:this.$=[];break;case 91:f[h-1].push(f[h]);break;case 94:this.$=[];break;case 95:f[h-1].push(f[h]);break;case 98:this.$=[f[h]];break;case 99:f[h-1].push(f[h]);break;case 100:this.$=[f[h]];break;case 101:f[h-1].push(f[h])}},table:[{3:1,4:2,5:[2,46],6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{1:[3]},{5:[1,4]},{5:[2,2],7:5,8:6,9:7,10:8,11:9,12:10,13:11,14:[1,12],15:[1,20],16:17,19:[1,23],24:15,27:16,29:[1,21],34:[1,22],39:[2,2],44:[2,2],47:[2,2],48:[1,13],51:[1,14],55:[1,18],59:19,60:[1,24]},{1:[2,1]},{5:[2,47],14:[2,47],15:[2,47],19:[2,47],29:[2,47],34:[2,47],39:[2,47],44:[2,47],47:[2,47],48:[2,47],51:[2,47],55:[2,47],60:[2,47]},{5:[2,3],14:[2,3],15:[2,3],19:[2,3],29:[2,3],34:[2,3],39:[2,3],44:[2,3],47:[2,3],48:[2,3],51:[2,3],55:[2,3],60:[2,3]},{5:[2,4],14:[2,4],15:[2,4],19:[2,4],29:[2,4],34:[2,4],39:[2,4],44:[2,4],47:[2,4],48:[2,4],51:[2,4],55:[2,4],60:[2,4]},{5:[2,5],14:[2,5],15:[2,5],19:[2,5],29:[2,5],34:[2,5],39:[2,5],44:[2,5],47:[2,5],48:[2,5],51:[2,5],55:[2,5],60:[2,5]},{5:[2,6],14:[2,6],15:[2,6],19:[2,6],29:[2,6],34:[2,6],39:[2,6],44:[2,6],47:[2,6],48:[2,6],51:[2,6],55:[2,6],60:[2,6]},{5:[2,7],14:[2,7],15:[2,7],19:[2,7],29:[2,7],34:[2,7],39:[2,7],44:[2,7],47:[2,7],48:[2,7],51:[2,7],55:[2,7],60:[2,7]},{5:[2,8],14:[2,8],15:[2,8],19:[2,8],29:[2,8],34:[2,8],39:[2,8],44:[2,8],47:[2,8],48:[2,8],51:[2,8],55:[2,8],60:[2,8]},{5:[2,9],14:[2,9],15:[2,9],19:[2,9],29:[2,9],34:[2,9],39:[2,9],44:[2,9],47:[2,9],48:[2,9],51:[2,9],55:[2,9],60:[2,9]},{20:25,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:36,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:37,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],39:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{4:38,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{15:[2,48],17:39,18:[2,48]},{20:41,56:40,64:42,65:[1,43],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:44,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{5:[2,10],14:[2,10],15:[2,10],18:[2,10],19:[2,10],29:[2,10],34:[2,10],39:[2,10],44:[2,10],47:[2,10],48:[2,10],51:[2,10],55:[2,10],60:[2,10]},{20:45,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:46,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:47,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:41,56:48,64:42,65:[1,43],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[2,78],49:49,65:[2,78],72:[2,78],80:[2,78],81:[2,78],82:[2,78],83:[2,78],84:[2,78],85:[2,78]},{23:[2,33],33:[2,33],54:[2,33],65:[2,33],68:[2,33],72:[2,33],75:[2,33],80:[2,33],81:[2,33],82:[2,33],83:[2,33],84:[2,33],85:[2,33]},{23:[2,34],33:[2,34],54:[2,34],65:[2,34],68:[2,34],72:[2,34],75:[2,34],80:[2,34],81:[2,34],82:[2,34],83:[2,34],84:[2,34],85:[2,34]},{23:[2,35],33:[2,35],54:[2,35],65:[2,35],68:[2,35],72:[2,35],75:[2,35],80:[2,35],81:[2,35],82:[2,35],83:[2,35],84:[2,35],85:[2,35]},{23:[2,36],33:[2,36],54:[2,36],65:[2,36],68:[2,36],72:[2,36],75:[2,36],80:[2,36],81:[2,36],82:[2,36],83:[2,36],84:[2,36],85:[2,36]},{23:[2,37],33:[2,37],54:[2,37],65:[2,37],68:[2,37],72:[2,37],75:[2,37],80:[2,37],81:[2,37],82:[2,37],83:[2,37],84:[2,37],85:[2,37]},{23:[2,38],33:[2,38],54:[2,38],65:[2,38],68:[2,38],72:[2,38],75:[2,38],80:[2,38],81:[2,38],82:[2,38],83:[2,38],84:[2,38],85:[2,38]},{23:[2,39],33:[2,39],54:[2,39],65:[2,39],68:[2,39],72:[2,39],75:[2,39],80:[2,39],81:[2,39],82:[2,39],83:[2,39],84:[2,39],85:[2,39]},{23:[2,43],33:[2,43],54:[2,43],65:[2,43],68:[2,43],72:[2,43],75:[2,43],80:[2,43],81:[2,43],82:[2,43],83:[2,43],84:[2,43],85:[2,43],87:[1,50]},{72:[1,35],86:51},{23:[2,45],33:[2,45],54:[2,45],65:[2,45],68:[2,45],72:[2,45],75:[2,45],80:[2,45],81:[2,45],82:[2,45],83:[2,45],84:[2,45],85:[2,45],87:[2,45]},{52:52,54:[2,82],65:[2,82],72:[2,82],80:[2,82],81:[2,82],82:[2,82],83:[2,82],84:[2,82],85:[2,82]},{25:53,38:55,39:[1,57],43:56,44:[1,58],45:54,47:[2,54]},{28:59,43:60,44:[1,58],47:[2,56]},{13:62,15:[1,20],18:[1,61]},{33:[2,86],57:63,65:[2,86],72:[2,86],80:[2,86],81:[2,86],82:[2,86],83:[2,86],84:[2,86],85:[2,86]},{33:[2,40],65:[2,40],72:[2,40],80:[2,40],81:[2,40],82:[2,40],83:[2,40],84:[2,40],85:[2,40]},{33:[2,41],65:[2,41],72:[2,41],80:[2,41],81:[2,41],82:[2,41],83:[2,41],84:[2,41],85:[2,41]},{20:64,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{26:65,47:[1,66]},{30:67,33:[2,58],65:[2,58],72:[2,58],75:[2,58],80:[2,58],81:[2,58],82:[2,58],83:[2,58],84:[2,58],85:[2,58]},{33:[2,64],35:68,65:[2,64],72:[2,64],75:[2,64],80:[2,64],81:[2,64],82:[2,64],83:[2,64],84:[2,64],85:[2,64]},{21:69,23:[2,50],65:[2,50],72:[2,50],80:[2,50],81:[2,50],82:[2,50],83:[2,50],84:[2,50],85:[2,50]},{33:[2,90],61:70,65:[2,90],72:[2,90],80:[2,90],81:[2,90],82:[2,90],83:[2,90],84:[2,90],85:[2,90]},{20:74,33:[2,80],50:71,63:72,64:75,65:[1,43],69:73,70:76,71:77,72:[1,78],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{72:[1,79]},{23:[2,42],33:[2,42],54:[2,42],65:[2,42],68:[2,42],72:[2,42],75:[2,42],80:[2,42],81:[2,42],82:[2,42],83:[2,42],84:[2,42],85:[2,42],87:[1,50]},{20:74,53:80,54:[2,84],63:81,64:75,65:[1,43],69:82,70:76,71:77,72:[1,78],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{26:83,47:[1,66]},{47:[2,55]},{4:84,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],39:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{47:[2,20]},{20:85,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:86,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{26:87,47:[1,66]},{47:[2,57]},{5:[2,11],14:[2,11],15:[2,11],19:[2,11],29:[2,11],34:[2,11],39:[2,11],44:[2,11],47:[2,11],48:[2,11],51:[2,11],55:[2,11],60:[2,11]},{15:[2,49],18:[2,49]},{20:74,33:[2,88],58:88,63:89,64:75,65:[1,43],69:90,70:76,71:77,72:[1,78],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{65:[2,94],66:91,68:[2,94],72:[2,94],80:[2,94],81:[2,94],82:[2,94],83:[2,94],84:[2,94],85:[2,94]},{5:[2,25],14:[2,25],15:[2,25],19:[2,25],29:[2,25],34:[2,25],39:[2,25],44:[2,25],47:[2,25],48:[2,25],51:[2,25],55:[2,25],60:[2,25]},{20:92,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:74,31:93,33:[2,60],63:94,64:75,65:[1,43],69:95,70:76,71:77,72:[1,78],75:[2,60],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:74,33:[2,66],36:96,63:97,64:75,65:[1,43],69:98,70:76,71:77,72:[1,78],75:[2,66],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:74,22:99,23:[2,52],63:100,64:75,65:[1,43],69:101,70:76,71:77,72:[1,78],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:74,33:[2,92],62:102,63:103,64:75,65:[1,43],69:104,70:76,71:77,72:[1,78],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[1,105]},{33:[2,79],65:[2,79],72:[2,79],80:[2,79],81:[2,79],82:[2,79],83:[2,79],84:[2,79],85:[2,79]},{33:[2,81]},{23:[2,27],33:[2,27],54:[2,27],65:[2,27],68:[2,27],72:[2,27],75:[2,27],80:[2,27],81:[2,27],82:[2,27],83:[2,27],84:[2,27],85:[2,27]},{23:[2,28],33:[2,28],54:[2,28],65:[2,28],68:[2,28],72:[2,28],75:[2,28],80:[2,28],81:[2,28],82:[2,28],83:[2,28],84:[2,28],85:[2,28]},{23:[2,30],33:[2,30],54:[2,30],68:[2,30],71:106,72:[1,107],75:[2,30]},{23:[2,98],33:[2,98],54:[2,98],68:[2,98],72:[2,98],75:[2,98]},{23:[2,45],33:[2,45],54:[2,45],65:[2,45],68:[2,45],72:[2,45],73:[1,108],75:[2,45],80:[2,45],81:[2,45],82:[2,45],83:[2,45],84:[2,45],85:[2,45],87:[2,45]},{23:[2,44],33:[2,44],54:[2,44],65:[2,44],68:[2,44],72:[2,44],75:[2,44],80:[2,44],81:[2,44],82:[2,44],
28
+ 83:[2,44],84:[2,44],85:[2,44],87:[2,44]},{54:[1,109]},{54:[2,83],65:[2,83],72:[2,83],80:[2,83],81:[2,83],82:[2,83],83:[2,83],84:[2,83],85:[2,83]},{54:[2,85]},{5:[2,13],14:[2,13],15:[2,13],19:[2,13],29:[2,13],34:[2,13],39:[2,13],44:[2,13],47:[2,13],48:[2,13],51:[2,13],55:[2,13],60:[2,13]},{38:55,39:[1,57],43:56,44:[1,58],45:111,46:110,47:[2,76]},{33:[2,70],40:112,65:[2,70],72:[2,70],75:[2,70],80:[2,70],81:[2,70],82:[2,70],83:[2,70],84:[2,70],85:[2,70]},{47:[2,18]},{5:[2,14],14:[2,14],15:[2,14],19:[2,14],29:[2,14],34:[2,14],39:[2,14],44:[2,14],47:[2,14],48:[2,14],51:[2,14],55:[2,14],60:[2,14]},{33:[1,113]},{33:[2,87],65:[2,87],72:[2,87],80:[2,87],81:[2,87],82:[2,87],83:[2,87],84:[2,87],85:[2,87]},{33:[2,89]},{20:74,63:115,64:75,65:[1,43],67:114,68:[2,96],69:116,70:76,71:77,72:[1,78],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[1,117]},{32:118,33:[2,62],74:119,75:[1,120]},{33:[2,59],65:[2,59],72:[2,59],75:[2,59],80:[2,59],81:[2,59],82:[2,59],83:[2,59],84:[2,59],85:[2,59]},{33:[2,61],75:[2,61]},{33:[2,68],37:121,74:122,75:[1,120]},{33:[2,65],65:[2,65],72:[2,65],75:[2,65],80:[2,65],81:[2,65],82:[2,65],83:[2,65],84:[2,65],85:[2,65]},{33:[2,67],75:[2,67]},{23:[1,123]},{23:[2,51],65:[2,51],72:[2,51],80:[2,51],81:[2,51],82:[2,51],83:[2,51],84:[2,51],85:[2,51]},{23:[2,53]},{33:[1,124]},{33:[2,91],65:[2,91],72:[2,91],80:[2,91],81:[2,91],82:[2,91],83:[2,91],84:[2,91],85:[2,91]},{33:[2,93]},{5:[2,22],14:[2,22],15:[2,22],19:[2,22],29:[2,22],34:[2,22],39:[2,22],44:[2,22],47:[2,22],48:[2,22],51:[2,22],55:[2,22],60:[2,22]},{23:[2,99],33:[2,99],54:[2,99],68:[2,99],72:[2,99],75:[2,99]},{73:[1,108]},{20:74,63:125,64:75,65:[1,43],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{5:[2,23],14:[2,23],15:[2,23],19:[2,23],29:[2,23],34:[2,23],39:[2,23],44:[2,23],47:[2,23],48:[2,23],51:[2,23],55:[2,23],60:[2,23]},{47:[2,19]},{47:[2,77]},{20:74,33:[2,72],41:126,63:127,64:75,65:[1,43],69:128,70:76,71:77,72:[1,78],75:[2,72],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{5:[2,24],14:[2,24],15:[2,24],19:[2,24],29:[2,24],34:[2,24],39:[2,24],44:[2,24],47:[2,24],48:[2,24],51:[2,24],55:[2,24],60:[2,24]},{68:[1,129]},{65:[2,95],68:[2,95],72:[2,95],80:[2,95],81:[2,95],82:[2,95],83:[2,95],84:[2,95],85:[2,95]},{68:[2,97]},{5:[2,21],14:[2,21],15:[2,21],19:[2,21],29:[2,21],34:[2,21],39:[2,21],44:[2,21],47:[2,21],48:[2,21],51:[2,21],55:[2,21],60:[2,21]},{33:[1,130]},{33:[2,63]},{72:[1,132],76:131},{33:[1,133]},{33:[2,69]},{15:[2,12],18:[2,12]},{14:[2,26],15:[2,26],19:[2,26],29:[2,26],34:[2,26],47:[2,26],48:[2,26],51:[2,26],55:[2,26],60:[2,26]},{23:[2,31],33:[2,31],54:[2,31],68:[2,31],72:[2,31],75:[2,31]},{33:[2,74],42:134,74:135,75:[1,120]},{33:[2,71],65:[2,71],72:[2,71],75:[2,71],80:[2,71],81:[2,71],82:[2,71],83:[2,71],84:[2,71],85:[2,71]},{33:[2,73],75:[2,73]},{23:[2,29],33:[2,29],54:[2,29],65:[2,29],68:[2,29],72:[2,29],75:[2,29],80:[2,29],81:[2,29],82:[2,29],83:[2,29],84:[2,29],85:[2,29]},{14:[2,15],15:[2,15],19:[2,15],29:[2,15],34:[2,15],39:[2,15],44:[2,15],47:[2,15],48:[2,15],51:[2,15],55:[2,15],60:[2,15]},{72:[1,137],77:[1,136]},{72:[2,100],77:[2,100]},{14:[2,16],15:[2,16],19:[2,16],29:[2,16],34:[2,16],44:[2,16],47:[2,16],48:[2,16],51:[2,16],55:[2,16],60:[2,16]},{33:[1,138]},{33:[2,75]},{33:[2,32]},{72:[2,101],77:[2,101]},{14:[2,17],15:[2,17],19:[2,17],29:[2,17],34:[2,17],39:[2,17],44:[2,17],47:[2,17],48:[2,17],51:[2,17],55:[2,17],60:[2,17]}],defaultActions:{4:[2,1],54:[2,55],56:[2,20],60:[2,57],73:[2,81],82:[2,85],86:[2,18],90:[2,89],101:[2,53],104:[2,93],110:[2,19],111:[2,77],116:[2,97],119:[2,63],122:[2,69],135:[2,75],136:[2,32]},parseError:function(a,b){throw new Error(a)},parse:function(a){function b(){var a;return a=c.lexer.lex()||1,"number"!=typeof a&&(a=c.symbols_[a]||a),a}var c=this,d=[0],e=[null],f=[],g=this.table,h="",i=0,j=0,k=0;this.lexer.setInput(a),this.lexer.yy=this.yy,this.yy.lexer=this.lexer,this.yy.parser=this,"undefined"==typeof this.lexer.yylloc&&(this.lexer.yylloc={});var l=this.lexer.yylloc;f.push(l);var m=this.lexer.options&&this.lexer.options.ranges;"function"==typeof this.yy.parseError&&(this.parseError=this.yy.parseError);for(var n,o,p,q,r,s,t,u,v,w={};;){if(p=d[d.length-1],this.defaultActions[p]?q=this.defaultActions[p]:(null!==n&&"undefined"!=typeof n||(n=b()),q=g[p]&&g[p][n]),"undefined"==typeof q||!q.length||!q[0]){var x="";if(!k){v=[];for(s in g[p])this.terminals_[s]&&s>2&&v.push("'"+this.terminals_[s]+"'");x=this.lexer.showPosition?"Parse error on line "+(i+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+v.join(", ")+", got '"+(this.terminals_[n]||n)+"'":"Parse error on line "+(i+1)+": Unexpected "+(1==n?"end of input":"'"+(this.terminals_[n]||n)+"'"),this.parseError(x,{text:this.lexer.match,token:this.terminals_[n]||n,line:this.lexer.yylineno,loc:l,expected:v})}}if(q[0]instanceof Array&&q.length>1)throw new Error("Parse Error: multiple actions possible at state: "+p+", token: "+n);switch(q[0]){case 1:d.push(n),e.push(this.lexer.yytext),f.push(this.lexer.yylloc),d.push(q[1]),n=null,o?(n=o,o=null):(j=this.lexer.yyleng,h=this.lexer.yytext,i=this.lexer.yylineno,l=this.lexer.yylloc,k>0&&k--);break;case 2:if(t=this.productions_[q[1]][1],w.$=e[e.length-t],w._$={first_line:f[f.length-(t||1)].first_line,last_line:f[f.length-1].last_line,first_column:f[f.length-(t||1)].first_column,last_column:f[f.length-1].last_column},m&&(w._$.range=[f[f.length-(t||1)].range[0],f[f.length-1].range[1]]),r=this.performAction.call(w,h,j,i,this.yy,q[1],e,f),"undefined"!=typeof r)return r;t&&(d=d.slice(0,-1*t*2),e=e.slice(0,-1*t),f=f.slice(0,-1*t)),d.push(this.productions_[q[1]][0]),e.push(w.$),f.push(w._$),u=g[d[d.length-2]][d[d.length-1]],d.push(u);break;case 3:return!0}}return!0}},c=function(){var a={EOF:1,parseError:function(a,b){if(!this.yy.parser)throw new Error(a);this.yy.parser.parseError(a,b)},setInput:function(a){return this._input=a,this._more=this._less=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var a=this._input[0];this.yytext+=a,this.yyleng++,this.offset++,this.match+=a,this.matched+=a;var b=a.match(/(?:\r\n?|\n).*/g);return b?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),a},unput:function(a){var b=a.length,c=a.split(/(?:\r\n?|\n)/g);this._input=a+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-b-1),this.offset-=b;var d=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),c.length-1&&(this.yylineno-=c.length-1);var e=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:c?(c.length===d.length?this.yylloc.first_column:0)+d[d.length-c.length].length-c[0].length:this.yylloc.first_column-b},this.options.ranges&&(this.yylloc.range=[e[0],e[0]+this.yyleng-b]),this},more:function(){return this._more=!0,this},less:function(a){this.unput(this.match.slice(a))},pastInput:function(){var a=this.matched.substr(0,this.matched.length-this.match.length);return(a.length>20?"...":"")+a.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var a=this.match;return a.length<20&&(a+=this._input.substr(0,20-a.length)),(a.substr(0,20)+(a.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var a=this.pastInput(),b=new Array(a.length+1).join("-");return a+this.upcomingInput()+"\n"+b+"^"},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var a,b,c,d,e;this._more||(this.yytext="",this.match="");for(var f=this._currentRules(),g=0;g<f.length&&(c=this._input.match(this.rules[f[g]]),!c||b&&!(c[0].length>b[0].length)||(b=c,d=g,this.options.flex));g++);return b?(e=b[0].match(/(?:\r\n?|\n).*/g),e&&(this.yylineno+=e.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:e?e[e.length-1].length-e[e.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+b[0].length},this.yytext+=b[0],this.match+=b[0],this.matches=b,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._input=this._input.slice(b[0].length),this.matched+=b[0],a=this.performAction.call(this,this.yy,this,f[d],this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),a?a:void 0):""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var a=this.next();return"undefined"!=typeof a?a:this.lex()},begin:function(a){this.conditionStack.push(a)},popState:function(){return this.conditionStack.pop()},_currentRules:function(){return this.conditions[this.conditionStack[this.conditionStack.length-1]].rules},topState:function(){return this.conditionStack[this.conditionStack.length-2]},pushState:function(a){this.begin(a)}};return a.options={},a.performAction=function(a,b,c,d){function e(a,c){return b.yytext=b.yytext.substring(a,b.yyleng-c+a)}switch(c){case 0:if("\\\\"===b.yytext.slice(-2)?(e(0,1),this.begin("mu")):"\\"===b.yytext.slice(-1)?(e(0,1),this.begin("emu")):this.begin("mu"),b.yytext)return 15;break;case 1:return 15;case 2:return this.popState(),15;case 3:return this.begin("raw"),15;case 4:return this.popState(),"raw"===this.conditionStack[this.conditionStack.length-1]?15:(e(5,9),"END_RAW_BLOCK");case 5:return 15;case 6:return this.popState(),14;case 7:return 65;case 8:return 68;case 9:return 19;case 10:return this.popState(),this.begin("raw"),23;case 11:return 55;case 12:return 60;case 13:return 29;case 14:return 47;case 15:return this.popState(),44;case 16:return this.popState(),44;case 17:return 34;case 18:return 39;case 19:return 51;case 20:return 48;case 21:this.unput(b.yytext),this.popState(),this.begin("com");break;case 22:return this.popState(),14;case 23:return 48;case 24:return 73;case 25:return 72;case 26:return 72;case 27:return 87;case 28:break;case 29:return this.popState(),54;case 30:return this.popState(),33;case 31:return b.yytext=e(1,2).replace(/\\"/g,'"'),80;case 32:return b.yytext=e(1,2).replace(/\\'/g,"'"),80;case 33:return 85;case 34:return 82;case 35:return 82;case 36:return 83;case 37:return 84;case 38:return 81;case 39:return 75;case 40:return 77;case 41:return 72;case 42:return b.yytext=b.yytext.replace(/\\([\\\]])/g,"$1"),72;case 43:return"INVALID";case 44:return 5}},a.rules=[/^(?:[^\x00]*?(?=(\{\{)))/,/^(?:[^\x00]+)/,/^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/,/^(?:\{\{\{\{(?=[^\/]))/,/^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/,/^(?:[^\x00]+?(?=(\{\{\{\{)))/,/^(?:[\s\S]*?--(~)?\}\})/,/^(?:\()/,/^(?:\))/,/^(?:\{\{\{\{)/,/^(?:\}\}\}\})/,/^(?:\{\{(~)?>)/,/^(?:\{\{(~)?#>)/,/^(?:\{\{(~)?#\*?)/,/^(?:\{\{(~)?\/)/,/^(?:\{\{(~)?\^\s*(~)?\}\})/,/^(?:\{\{(~)?\s*else\s*(~)?\}\})/,/^(?:\{\{(~)?\^)/,/^(?:\{\{(~)?\s*else\b)/,/^(?:\{\{(~)?\{)/,/^(?:\{\{(~)?&)/,/^(?:\{\{(~)?!--)/,/^(?:\{\{(~)?![\s\S]*?\}\})/,/^(?:\{\{(~)?\*?)/,/^(?:=)/,/^(?:\.\.)/,/^(?:\.(?=([=~}\s\/.)|])))/,/^(?:[\/.])/,/^(?:\s+)/,/^(?:\}(~)?\}\})/,/^(?:(~)?\}\})/,/^(?:"(\\["]|[^"])*")/,/^(?:'(\\[']|[^'])*')/,/^(?:@)/,/^(?:true(?=([~}\s)])))/,/^(?:false(?=([~}\s)])))/,/^(?:undefined(?=([~}\s)])))/,/^(?:null(?=([~}\s)])))/,/^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/,/^(?:as\s+\|)/,/^(?:\|)/,/^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/,/^(?:\[(\\\]|[^\]])*\])/,/^(?:.)/,/^(?:$)/],a.conditions={mu:{rules:[7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],inclusive:!1},emu:{rules:[2],inclusive:!1},com:{rules:[6],inclusive:!1},raw:{rules:[3,4,5],inclusive:!1},INITIAL:{rules:[0,1,44],inclusive:!0}},a}();return b.lexer=c,a.prototype=b,b.Parser=a,new a}();b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(){var a=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];this.options=a}function e(a,b,c){void 0===b&&(b=a.length);var d=a[b-1],e=a[b-2];return d?"ContentStatement"===d.type?(e||!c?/\r?\n\s*?$/:/(^|\r?\n)\s*?$/).test(d.original):void 0:c}function f(a,b,c){void 0===b&&(b=-1);var d=a[b+1],e=a[b+2];return d?"ContentStatement"===d.type?(e||!c?/^\s*?\r?\n/:/^\s*?(\r?\n|$)/).test(d.original):void 0:c}function g(a,b,c){var d=a[null==b?0:b+1];if(d&&"ContentStatement"===d.type&&(c||!d.rightStripped)){var e=d.value;d.value=d.value.replace(c?/^\s+/:/^[ \t]*\r?\n?/,""),d.rightStripped=d.value!==e}}function h(a,b,c){var d=a[null==b?a.length-1:b-1];if(d&&"ContentStatement"===d.type&&(c||!d.leftStripped)){var e=d.value;return d.value=d.value.replace(c?/\s+$/:/[ \t]+$/,""),d.leftStripped=d.value!==e,d.leftStripped}}var i=c(1)["default"];b.__esModule=!0;var j=c(39),k=i(j);d.prototype=new k["default"],d.prototype.Program=function(a){var b=!this.options.ignoreStandalone,c=!this.isRootSeen;this.isRootSeen=!0;for(var d=a.body,i=0,j=d.length;i<j;i++){var k=d[i],l=this.accept(k);if(l){var m=e(d,i,c),n=f(d,i,c),o=l.openStandalone&&m,p=l.closeStandalone&&n,q=l.inlineStandalone&&m&&n;l.close&&g(d,i,!0),l.open&&h(d,i,!0),b&&q&&(g(d,i),h(d,i)&&"PartialStatement"===k.type&&(k.indent=/([ \t]+$)/.exec(d[i-1].original)[1])),b&&o&&(g((k.program||k.inverse).body),h(d,i)),b&&p&&(g(d,i),h((k.inverse||k.program).body))}}return a},d.prototype.BlockStatement=d.prototype.DecoratorBlock=d.prototype.PartialBlockStatement=function(a){this.accept(a.program),this.accept(a.inverse);var b=a.program||a.inverse,c=a.program&&a.inverse,d=c,i=c;if(c&&c.chained)for(d=c.body[0].program;i.chained;)i=i.body[i.body.length-1].program;var j={open:a.openStrip.open,close:a.closeStrip.close,openStandalone:f(b.body),closeStandalone:e((d||b).body)};if(a.openStrip.close&&g(b.body,null,!0),c){var k=a.inverseStrip;k.open&&h(b.body,null,!0),k.close&&g(d.body,null,!0),a.closeStrip.open&&h(i.body,null,!0),!this.options.ignoreStandalone&&e(b.body)&&f(d.body)&&(h(b.body),g(d.body))}else a.closeStrip.open&&h(b.body,null,!0);return j},d.prototype.Decorator=d.prototype.MustacheStatement=function(a){return a.strip},d.prototype.PartialStatement=d.prototype.CommentStatement=function(a){var b=a.strip||{};return{inlineStandalone:!0,open:b.open,close:b.close}},b["default"]=d,a.exports=b["default"]},function(a,b,c){"use strict";function d(){this.parents=[]}function e(a){this.acceptRequired(a,"path"),this.acceptArray(a.params),this.acceptKey(a,"hash")}function f(a){e.call(this,a),this.acceptKey(a,"program"),this.acceptKey(a,"inverse")}function g(a){this.acceptRequired(a,"name"),this.acceptArray(a.params),this.acceptKey(a,"hash")}var h=c(1)["default"];b.__esModule=!0;var i=c(6),j=h(i);d.prototype={constructor:d,mutating:!1,acceptKey:function(a,b){var c=this.accept(a[b]);if(this.mutating){if(c&&!d.prototype[c.type])throw new j["default"]('Unexpected node type "'+c.type+'" found when accepting '+b+" on "+a.type);a[b]=c}},acceptRequired:function(a,b){if(this.acceptKey(a,b),!a[b])throw new j["default"](a.type+" requires "+b)},acceptArray:function(a){for(var b=0,c=a.length;b<c;b++)this.acceptKey(a,b),a[b]||(a.splice(b,1),b--,c--)},accept:function(a){if(a){if(!this[a.type])throw new j["default"]("Unknown type: "+a.type,a);this.current&&this.parents.unshift(this.current),this.current=a;var b=this[a.type](a);return this.current=this.parents.shift(),!this.mutating||b?b:b!==!1?a:void 0}},Program:function(a){this.acceptArray(a.body)},MustacheStatement:e,Decorator:e,BlockStatement:f,DecoratorBlock:f,PartialStatement:g,PartialBlockStatement:function(a){g.call(this,a),this.acceptKey(a,"program")},ContentStatement:function(){},CommentStatement:function(){},SubExpression:e,PathExpression:function(){},StringLiteral:function(){},NumberLiteral:function(){},BooleanLiteral:function(){},UndefinedLiteral:function(){},NullLiteral:function(){},Hash:function(a){this.acceptArray(a.pairs)},HashPair:function(a){this.acceptRequired(a,"value")}},b["default"]=d,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b){if(b=b.path?b.path.original:b,a.path.original!==b){var c={loc:a.path.loc};throw new q["default"](a.path.original+" doesn't match "+b,c)}}function e(a,b){this.source=a,this.start={line:b.first_line,column:b.first_column},this.end={line:b.last_line,column:b.last_column}}function f(a){return/^\[.*\]$/.test(a)?a.substring(1,a.length-1):a}function g(a,b){return{open:"~"===a.charAt(2),close:"~"===b.charAt(b.length-3)}}function h(a){return a.replace(/^\{\{~?!-?-?/,"").replace(/-?-?~?\}\}$/,"")}function i(a,b,c){c=this.locInfo(c);for(var d=a?"@":"",e=[],f=0,g=0,h=b.length;g<h;g++){var i=b[g].part,j=b[g].original!==i;if(d+=(b[g].separator||"")+i,j||".."!==i&&"."!==i&&"this"!==i)e.push(i);else{if(e.length>0)throw new q["default"]("Invalid path: "+d,{loc:c});".."===i&&f++}}return{type:"PathExpression",data:a,depth:f,parts:e,original:d,loc:c}}function j(a,b,c,d,e,f){var g=d.charAt(3)||d.charAt(2),h="{"!==g&&"&"!==g,i=/\*/.test(d);return{type:i?"Decorator":"MustacheStatement",path:a,params:b,hash:c,escaped:h,strip:e,loc:this.locInfo(f)}}function k(a,b,c,e){d(a,c),e=this.locInfo(e);var f={type:"Program",body:b,strip:{},loc:e};return{type:"BlockStatement",path:a.path,params:a.params,hash:a.hash,program:f,openStrip:{},inverseStrip:{},closeStrip:{},loc:e}}function l(a,b,c,e,f,g){e&&e.path&&d(a,e);var h=/\*/.test(a.open);b.blockParams=a.blockParams;var i=void 0,j=void 0;if(c){if(h)throw new q["default"]("Unexpected inverse block on decorator",c);c.chain&&(c.program.body[0].closeStrip=e.strip),j=c.strip,i=c.program}return f&&(f=i,i=b,b=f),{type:h?"DecoratorBlock":"BlockStatement",path:a.path,params:a.params,hash:a.hash,program:b,inverse:i,openStrip:a.strip,inverseStrip:j,closeStrip:e&&e.strip,loc:this.locInfo(g)}}function m(a,b){if(!b&&a.length){var c=a[0].loc,d=a[a.length-1].loc;c&&d&&(b={source:c.source,start:{line:c.start.line,column:c.start.column},end:{line:d.end.line,column:d.end.column}})}return{type:"Program",body:a,strip:{},loc:b}}function n(a,b,c,e){return d(a,c),{type:"PartialBlockStatement",name:a.path,params:a.params,hash:a.hash,program:b,openStrip:a.strip,closeStrip:c&&c.strip,loc:this.locInfo(e)}}var o=c(1)["default"];b.__esModule=!0,b.SourceLocation=e,b.id=f,b.stripFlags=g,b.stripComment=h,b.preparePath=i,b.prepareMustache=j,b.prepareRawBlock=k,b.prepareBlock=l,b.prepareProgram=m,b.preparePartialBlock=n;var p=c(6),q=o(p)},function(a,b,c){"use strict";function d(){}function e(a,b,c){if(null==a||"string"!=typeof a&&"Program"!==a.type)throw new k["default"]("You must pass a string or Handlebars AST to Handlebars.precompile. You passed "+a);b=b||{},"data"in b||(b.data=!0),b.compat&&(b.useDepths=!0);var d=c.parse(a,b),e=(new c.Compiler).compile(d,b);return(new c.JavaScriptCompiler).compile(e,b)}function f(a,b,c){function d(){var d=c.parse(a,b),e=(new c.Compiler).compile(d,b),f=(new c.JavaScriptCompiler).compile(e,b,void 0,!0);return c.template(f)}function e(a,b){return f||(f=d()),f.call(this,a,b)}if(void 0===b&&(b={}),null==a||"string"!=typeof a&&"Program"!==a.type)throw new k["default"]("You must pass a string or Handlebars AST to Handlebars.compile. You passed "+a);b=l.extend({},b),"data"in b||(b.data=!0),b.compat&&(b.useDepths=!0);var f=void 0;return e._setup=function(a){return f||(f=d()),f._setup(a)},e._child=function(a,b,c,e){return f||(f=d()),f._child(a,b,c,e)},e}function g(a,b){if(a===b)return!0;if(l.isArray(a)&&l.isArray(b)&&a.length===b.length){for(var c=0;c<a.length;c++)if(!g(a[c],b[c]))return!1;return!0}}function h(a){if(!a.path.parts){var b=a.path;a.path={type:"PathExpression",data:!1,depth:0,parts:[b.original+""],original:b.original+"",loc:b.loc}}}var i=c(1)["default"];b.__esModule=!0,b.Compiler=d,b.precompile=e,b.compile=f;var j=c(6),k=i(j),l=c(5),m=c(35),n=i(m),o=[].slice;d.prototype={compiler:d,equals:function(a){var b=this.opcodes.length;if(a.opcodes.length!==b)return!1;for(var c=0;c<b;c++){var d=this.opcodes[c],e=a.opcodes[c];if(d.opcode!==e.opcode||!g(d.args,e.args))return!1}b=this.children.length;for(var c=0;c<b;c++)if(!this.children[c].equals(a.children[c]))return!1;return!0},guid:0,compile:function(a,b){this.sourceNode=[],this.opcodes=[],this.children=[],this.options=b,this.stringParams=b.stringParams,this.trackIds=b.trackIds,b.blockParams=b.blockParams||[];var c=b.knownHelpers;if(b.knownHelpers={helperMissing:!0,blockHelperMissing:!0,each:!0,"if":!0,unless:!0,"with":!0,log:!0,lookup:!0},c)for(var d in c)this.options.knownHelpers[d]=c[d];return this.accept(a)},compileProgram:function(a){var b=new this.compiler,c=b.compile(a,this.options),d=this.guid++;return this.usePartial=this.usePartial||c.usePartial,this.children[d]=c,this.useDepths=this.useDepths||c.useDepths,d},accept:function(a){if(!this[a.type])throw new k["default"]("Unknown type: "+a.type,a);this.sourceNode.unshift(a);var b=this[a.type](a);return this.sourceNode.shift(),b},Program:function(a){this.options.blockParams.unshift(a.blockParams);for(var b=a.body,c=b.length,d=0;d<c;d++)this.accept(b[d]);return this.options.blockParams.shift(),this.isSimple=1===c,this.blockParams=a.blockParams?a.blockParams.length:0,this},BlockStatement:function(a){h(a);var b=a.program,c=a.inverse;b=b&&this.compileProgram(b),c=c&&this.compileProgram(c);var d=this.classifySexpr(a);"helper"===d?this.helperSexpr(a,b,c):"simple"===d?(this.simpleSexpr(a),this.opcode("pushProgram",b),this.opcode("pushProgram",c),this.opcode("emptyHash"),this.opcode("blockValue",a.path.original)):(this.ambiguousSexpr(a,b,c),this.opcode("pushProgram",b),this.opcode("pushProgram",c),this.opcode("emptyHash"),this.opcode("ambiguousBlockValue")),this.opcode("append")},DecoratorBlock:function(a){var b=a.program&&this.compileProgram(a.program),c=this.setupFullMustacheParams(a,b,void 0),d=a.path;this.useDecorators=!0,this.opcode("registerDecorator",c.length,d.original)},PartialStatement:function(a){this.usePartial=!0;var b=a.program;b&&(b=this.compileProgram(a.program));var c=a.params;if(c.length>1)throw new k["default"]("Unsupported number of partial arguments: "+c.length,a);c.length||(this.options.explicitPartialContext?this.opcode("pushLiteral","undefined"):c.push({type:"PathExpression",parts:[],depth:0}));var d=a.name.original,e="SubExpression"===a.name.type;e&&this.accept(a.name),this.setupFullMustacheParams(a,b,void 0,!0);var f=a.indent||"";this.options.preventIndent&&f&&(this.opcode("appendContent",f),f=""),this.opcode("invokePartial",e,d,f),this.opcode("append")},PartialBlockStatement:function(a){this.PartialStatement(a)},MustacheStatement:function(a){this.SubExpression(a),a.escaped&&!this.options.noEscape?this.opcode("appendEscaped"):this.opcode("append")},Decorator:function(a){this.DecoratorBlock(a)},ContentStatement:function(a){a.value&&this.opcode("appendContent",a.value)},CommentStatement:function(){},SubExpression:function(a){h(a);var b=this.classifySexpr(a);"simple"===b?this.simpleSexpr(a):"helper"===b?this.helperSexpr(a):this.ambiguousSexpr(a)},ambiguousSexpr:function(a,b,c){var d=a.path,e=d.parts[0],f=null!=b||null!=c;this.opcode("getContext",d.depth),this.opcode("pushProgram",b),this.opcode("pushProgram",c),d.strict=!0,this.accept(d),this.opcode("invokeAmbiguous",e,f)},simpleSexpr:function(a){var b=a.path;b.strict=!0,this.accept(b),this.opcode("resolvePossibleLambda")},helperSexpr:function(a,b,c){var d=this.setupFullMustacheParams(a,b,c),e=a.path,f=e.parts[0];if(this.options.knownHelpers[f])this.opcode("invokeKnownHelper",d.length,f);else{if(this.options.knownHelpersOnly)throw new k["default"]("You specified knownHelpersOnly, but used the unknown helper "+f,a);e.strict=!0,e.falsy=!0,this.accept(e),this.opcode("invokeHelper",d.length,e.original,n["default"].helpers.simpleId(e))}},PathExpression:function(a){this.addDepth(a.depth),this.opcode("getContext",a.depth);var b=a.parts[0],c=n["default"].helpers.scopedId(a),d=!a.depth&&!c&&this.blockParamIndex(b);d?this.opcode("lookupBlockParam",d,a.parts):b?a.data?(this.options.data=!0,this.opcode("lookupData",a.depth,a.parts,a.strict)):this.opcode("lookupOnContext",a.parts,a.falsy,a.strict,c):this.opcode("pushContext")},StringLiteral:function(a){this.opcode("pushString",a.value)},NumberLiteral:function(a){this.opcode("pushLiteral",a.value)},BooleanLiteral:function(a){this.opcode("pushLiteral",a.value)},UndefinedLiteral:function(){this.opcode("pushLiteral","undefined")},NullLiteral:function(){this.opcode("pushLiteral","null")},Hash:function(a){var b=a.pairs,c=0,d=b.length;for(this.opcode("pushHash");c<d;c++)this.pushParam(b[c].value);for(;c--;)this.opcode("assignToHash",b[c].key);this.opcode("popHash")},opcode:function(a){this.opcodes.push({opcode:a,args:o.call(arguments,1),loc:this.sourceNode[0].loc})},addDepth:function(a){a&&(this.useDepths=!0)},classifySexpr:function(a){var b=n["default"].helpers.simpleId(a.path),c=b&&!!this.blockParamIndex(a.path.parts[0]),d=!c&&n["default"].helpers.helperExpression(a),e=!c&&(d||b);if(e&&!d){var f=a.path.parts[0],g=this.options;g.knownHelpers[f]?d=!0:g.knownHelpersOnly&&(e=!1)}return d?"helper":e?"ambiguous":"simple"},pushParams:function(a){for(var b=0,c=a.length;b<c;b++)this.pushParam(a[b])},pushParam:function(a){var b=null!=a.value?a.value:a.original||"";if(this.stringParams)b.replace&&(b=b.replace(/^(\.?\.\/)*/g,"").replace(/\//g,".")),a.depth&&this.addDepth(a.depth),this.opcode("getContext",a.depth||0),this.opcode("pushStringParam",b,a.type),"SubExpression"===a.type&&this.accept(a);else{if(this.trackIds){var c=void 0;if(!a.parts||n["default"].helpers.scopedId(a)||a.depth||(c=this.blockParamIndex(a.parts[0])),c){var d=a.parts.slice(1).join(".");this.opcode("pushId","BlockParam",c,d)}else b=a.original||b,b.replace&&(b=b.replace(/^this(?:\.|$)/,"").replace(/^\.\//,"").replace(/^\.$/,"")),this.opcode("pushId",a.type,b)}this.accept(a)}},setupFullMustacheParams:function(a,b,c,d){var e=a.params;return this.pushParams(e),this.opcode("pushProgram",b),this.opcode("pushProgram",c),a.hash?this.accept(a.hash):this.opcode("emptyHash",d),e},blockParamIndex:function(a){for(var b=0,c=this.options.blockParams.length;b<c;b++){var d=this.options.blockParams[b],e=d&&l.indexOf(d,a);if(d&&e>=0)return[b,e]}}}},function(a,b,c){"use strict";function d(a){this.value=a}function e(){}function f(a,b,c,d){var e=b.popStack(),f=0,g=c.length;for(a&&g--;f<g;f++)e=b.nameLookup(e,c[f],d);return a?[b.aliasable("container.strict"),"(",e,", ",b.quotedString(c[f]),")"]:e}var g=c(1)["default"];b.__esModule=!0;var h=c(4),i=c(6),j=g(i),k=c(5),l=c(43),m=g(l);e.prototype={nameLookup:function(a,b){function c(){return e.isValidJavaScriptVariableName(b)?[a,".",b]:[a,"[",JSON.stringify(b),"]"]}var d=[this.aliasable("container.propertyIsEnumerable"),".call(",a,',"constructor")'];return"constructor"===b?["(",d,"?",c()," : undefined)"]:c()},depthedLookup:function(a){return[this.aliasable("container.lookup"),'(depths, "',a,'")']},compilerInfo:function(){var a=h.COMPILER_REVISION,b=h.REVISION_CHANGES[a];return[a,b]},appendToBuffer:function(a,b,c){return k.isArray(a)||(a=[a]),a=this.source.wrap(a,b),this.environment.isSimple?["return ",a,";"]:c?["buffer += ",a,";"]:(a.appendToBuffer=!0,a)},initializeBuffer:function(){return this.quotedString("")},compile:function(a,b,c,d){this.environment=a,this.options=b,this.stringParams=this.options.stringParams,this.trackIds=this.options.trackIds,this.precompile=!d,this.name=this.environment.name,this.isChild=!!c,this.context=c||{decorators:[],programs:[],environments:[]},this.preamble(),this.stackSlot=0,this.stackVars=[],this.aliases={},this.registers={list:[]},this.hashes=[],this.compileStack=[],this.inlineStack=[],this.blockParams=[],this.compileChildren(a,b),this.useDepths=this.useDepths||a.useDepths||a.useDecorators||this.options.compat,this.useBlockParams=this.useBlockParams||a.useBlockParams;var e=a.opcodes,f=void 0,g=void 0,h=void 0,i=void 0;for(h=0,i=e.length;h<i;h++)f=e[h],this.source.currentLocation=f.loc,g=g||f.loc,this[f.opcode].apply(this,f.args);if(this.source.currentLocation=g,this.pushSource(""),this.stackSlot||this.inlineStack.length||this.compileStack.length)throw new j["default"]("Compile completed with content left on stack");this.decorators.isEmpty()?this.decorators=void 0:(this.useDecorators=!0,this.decorators.prepend("var decorators = container.decorators;\n"),this.decorators.push("return fn;"),d?this.decorators=Function.apply(this,["fn","props","container","depth0","data","blockParams","depths",this.decorators.merge()]):(this.decorators.prepend("function(fn, props, container, depth0, data, blockParams, depths) {\n"),this.decorators.push("}\n"),this.decorators=this.decorators.merge()));var k=this.createFunctionContext(d);if(this.isChild)return k;var l={compiler:this.compilerInfo(),main:k};this.decorators&&(l.main_d=this.decorators,l.useDecorators=!0);var m=this.context,n=m.programs,o=m.decorators;for(h=0,i=n.length;h<i;h++)n[h]&&(l[h]=n[h],o[h]&&(l[h+"_d"]=o[h],l.useDecorators=!0));return this.environment.usePartial&&(l.usePartial=!0),this.options.data&&(l.useData=!0),this.useDepths&&(l.useDepths=!0),this.useBlockParams&&(l.useBlockParams=!0),this.options.compat&&(l.compat=!0),d?l.compilerOptions=this.options:(l.compiler=JSON.stringify(l.compiler),this.source.currentLocation={start:{line:1,column:0}},l=this.objectLiteral(l),b.srcName?(l=l.toStringWithSourceMap({file:b.destName}),l.map=l.map&&l.map.toString()):l=l.toString()),l},preamble:function(){this.lastContext=0,this.source=new m["default"](this.options.srcName),this.decorators=new m["default"](this.options.srcName)},createFunctionContext:function(a){var b="",c=this.stackVars.concat(this.registers.list);c.length>0&&(b+=", "+c.join(", "));var d=0;for(var e in this.aliases){var f=this.aliases[e];this.aliases.hasOwnProperty(e)&&f.children&&f.referenceCount>1&&(b+=", alias"+ ++d+"="+e,f.children[0]="alias"+d)}var g=["container","depth0","helpers","partials","data"];(this.useBlockParams||this.useDepths)&&g.push("blockParams"),this.useDepths&&g.push("depths");var h=this.mergeSource(b);return a?(g.push(h),Function.apply(this,g)):this.source.wrap(["function(",g.join(","),") {\n ",h,"}"])},mergeSource:function(a){var b=this.environment.isSimple,c=!this.forceBuffer,d=void 0,e=void 0,f=void 0,g=void 0;return this.source.each(function(a){a.appendToBuffer?(f?a.prepend(" + "):f=a,g=a):(f&&(e?f.prepend("buffer += "):d=!0,g.add(";"),f=g=void 0),e=!0,b||(c=!1))}),c?f?(f.prepend("return "),g.add(";")):e||this.source.push('return "";'):(a+=", buffer = "+(d?"":this.initializeBuffer()),f?(f.prepend("return buffer + "),g.add(";")):this.source.push("return buffer;")),a&&this.source.prepend("var "+a.substring(2)+(d?"":";\n")),this.source.merge()},blockValue:function(a){var b=this.aliasable("container.hooks.blockHelperMissing"),c=[this.contextName(0)];this.setupHelperArgs(a,0,c);var d=this.popStack();c.splice(1,0,d),this.push(this.source.functionCall(b,"call",c))},ambiguousBlockValue:function(){var a=this.aliasable("container.hooks.blockHelperMissing"),b=[this.contextName(0)];this.setupHelperArgs("",0,b,!0),this.flushInline();var c=this.topStack();b.splice(1,0,c),this.pushSource(["if (!",this.lastHelper,") { ",c," = ",this.source.functionCall(a,"call",b),"}"])},appendContent:function(a){this.pendingContent?a=this.pendingContent+a:this.pendingLocation=this.source.currentLocation,this.pendingContent=a},append:function(){if(this.isInline())this.replaceStack(function(a){return[" != null ? ",a,' : ""']}),this.pushSource(this.appendToBuffer(this.popStack()));else{var a=this.popStack();this.pushSource(["if (",a," != null) { ",this.appendToBuffer(a,void 0,!0)," }"]),this.environment.isSimple&&this.pushSource(["else { ",this.appendToBuffer("''",void 0,!0)," }"])}},appendEscaped:function(){this.pushSource(this.appendToBuffer([this.aliasable("container.escapeExpression"),"(",this.popStack(),")"]));
29
+ },getContext:function(a){this.lastContext=a},pushContext:function(){this.pushStackLiteral(this.contextName(this.lastContext))},lookupOnContext:function(a,b,c,d){var e=0;d||!this.options.compat||this.lastContext?this.pushContext():this.push(this.depthedLookup(a[e++])),this.resolvePath("context",a,e,b,c)},lookupBlockParam:function(a,b){this.useBlockParams=!0,this.push(["blockParams[",a[0],"][",a[1],"]"]),this.resolvePath("context",b,1)},lookupData:function(a,b,c){a?this.pushStackLiteral("container.data(data, "+a+")"):this.pushStackLiteral("data"),this.resolvePath("data",b,0,!0,c)},resolvePath:function(a,b,c,d,e){var g=this;if(this.options.strict||this.options.assumeObjects)return void this.push(f(this.options.strict&&e,this,b,a));for(var h=b.length;c<h;c++)this.replaceStack(function(e){var f=g.nameLookup(e,b[c],a);return d?[" && ",f]:[" != null ? ",f," : ",e]})},resolvePossibleLambda:function(){this.push([this.aliasable("container.lambda"),"(",this.popStack(),", ",this.contextName(0),")"])},pushStringParam:function(a,b){this.pushContext(),this.pushString(b),"SubExpression"!==b&&("string"==typeof a?this.pushString(a):this.pushStackLiteral(a))},emptyHash:function(a){this.trackIds&&this.push("{}"),this.stringParams&&(this.push("{}"),this.push("{}")),this.pushStackLiteral(a?"undefined":"{}")},pushHash:function(){this.hash&&this.hashes.push(this.hash),this.hash={values:[],types:[],contexts:[],ids:[]}},popHash:function(){var a=this.hash;this.hash=this.hashes.pop(),this.trackIds&&this.push(this.objectLiteral(a.ids)),this.stringParams&&(this.push(this.objectLiteral(a.contexts)),this.push(this.objectLiteral(a.types))),this.push(this.objectLiteral(a.values))},pushString:function(a){this.pushStackLiteral(this.quotedString(a))},pushLiteral:function(a){this.pushStackLiteral(a)},pushProgram:function(a){null!=a?this.pushStackLiteral(this.programExpression(a)):this.pushStackLiteral(null)},registerDecorator:function(a,b){var c=this.nameLookup("decorators",b,"decorator"),d=this.setupHelperArgs(b,a);this.decorators.push(["fn = ",this.decorators.functionCall(c,"",["fn","props","container",d])," || fn;"])},invokeHelper:function(a,b,c){var d=this.popStack(),e=this.setupHelper(a,b),f=[];c&&f.push(e.name),f.push(d),this.options.strict||f.push(this.aliasable("container.hooks.helperMissing"));var g=["(",this.itemsSeparatedBy(f,"||"),")"],h=this.source.functionCall(g,"call",e.callParams);this.push(h)},itemsSeparatedBy:function(a,b){var c=[];c.push(a[0]);for(var d=1;d<a.length;d++)c.push(b,a[d]);return c},invokeKnownHelper:function(a,b){var c=this.setupHelper(a,b);this.push(this.source.functionCall(c.name,"call",c.callParams))},invokeAmbiguous:function(a,b){this.useRegister("helper");var c=this.popStack();this.emptyHash();var d=this.setupHelper(0,a,b),e=this.lastHelper=this.nameLookup("helpers",a,"helper"),f=["(","(helper = ",e," || ",c,")"];this.options.strict||(f[0]="(helper = ",f.push(" != null ? helper : ",this.aliasable("container.hooks.helperMissing"))),this.push(["(",f,d.paramsInit?["),(",d.paramsInit]:[],"),","(typeof helper === ",this.aliasable('"function"')," ? ",this.source.functionCall("helper","call",d.callParams)," : helper))"])},invokePartial:function(a,b,c){var d=[],e=this.setupParams(b,1,d);a&&(b=this.popStack(),delete e.name),c&&(e.indent=JSON.stringify(c)),e.helpers="helpers",e.partials="partials",e.decorators="container.decorators",a?d.unshift(b):d.unshift(this.nameLookup("partials",b,"partial")),this.options.compat&&(e.depths="depths"),e=this.objectLiteral(e),d.push(e),this.push(this.source.functionCall("container.invokePartial","",d))},assignToHash:function(a){var b=this.popStack(),c=void 0,d=void 0,e=void 0;this.trackIds&&(e=this.popStack()),this.stringParams&&(d=this.popStack(),c=this.popStack());var f=this.hash;c&&(f.contexts[a]=c),d&&(f.types[a]=d),e&&(f.ids[a]=e),f.values[a]=b},pushId:function(a,b,c){"BlockParam"===a?this.pushStackLiteral("blockParams["+b[0]+"].path["+b[1]+"]"+(c?" + "+JSON.stringify("."+c):"")):"PathExpression"===a?this.pushString(b):"SubExpression"===a?this.pushStackLiteral("true"):this.pushStackLiteral("null")},compiler:e,compileChildren:function(a,b){for(var c=a.children,d=void 0,e=void 0,f=0,g=c.length;f<g;f++){d=c[f],e=new this.compiler;var h=this.matchExistingProgram(d);if(null==h){this.context.programs.push("");var i=this.context.programs.length;d.index=i,d.name="program"+i,this.context.programs[i]=e.compile(d,b,this.context,!this.precompile),this.context.decorators[i]=e.decorators,this.context.environments[i]=d,this.useDepths=this.useDepths||e.useDepths,this.useBlockParams=this.useBlockParams||e.useBlockParams,d.useDepths=this.useDepths,d.useBlockParams=this.useBlockParams}else d.index=h.index,d.name="program"+h.index,this.useDepths=this.useDepths||h.useDepths,this.useBlockParams=this.useBlockParams||h.useBlockParams}},matchExistingProgram:function(a){for(var b=0,c=this.context.environments.length;b<c;b++){var d=this.context.environments[b];if(d&&d.equals(a))return d}},programExpression:function(a){var b=this.environment.children[a],c=[b.index,"data",b.blockParams];return(this.useBlockParams||this.useDepths)&&c.push("blockParams"),this.useDepths&&c.push("depths"),"container.program("+c.join(", ")+")"},useRegister:function(a){this.registers[a]||(this.registers[a]=!0,this.registers.list.push(a))},push:function(a){return a instanceof d||(a=this.source.wrap(a)),this.inlineStack.push(a),a},pushStackLiteral:function(a){this.push(new d(a))},pushSource:function(a){this.pendingContent&&(this.source.push(this.appendToBuffer(this.source.quotedString(this.pendingContent),this.pendingLocation)),this.pendingContent=void 0),a&&this.source.push(a)},replaceStack:function(a){var b=["("],c=void 0,e=void 0,f=void 0;if(!this.isInline())throw new j["default"]("replaceStack on non-inline");var g=this.popStack(!0);if(g instanceof d)c=[g.value],b=["(",c],f=!0;else{e=!0;var h=this.incrStack();b=["((",this.push(h)," = ",g,")"],c=this.topStack()}var i=a.call(this,c);f||this.popStack(),e&&this.stackSlot--,this.push(b.concat(i,")"))},incrStack:function(){return this.stackSlot++,this.stackSlot>this.stackVars.length&&this.stackVars.push("stack"+this.stackSlot),this.topStackName()},topStackName:function(){return"stack"+this.stackSlot},flushInline:function(){var a=this.inlineStack;this.inlineStack=[];for(var b=0,c=a.length;b<c;b++){var e=a[b];if(e instanceof d)this.compileStack.push(e);else{var f=this.incrStack();this.pushSource([f," = ",e,";"]),this.compileStack.push(f)}}},isInline:function(){return this.inlineStack.length},popStack:function(a){var b=this.isInline(),c=(b?this.inlineStack:this.compileStack).pop();if(!a&&c instanceof d)return c.value;if(!b){if(!this.stackSlot)throw new j["default"]("Invalid stack pop");this.stackSlot--}return c},topStack:function(){var a=this.isInline()?this.inlineStack:this.compileStack,b=a[a.length-1];return b instanceof d?b.value:b},contextName:function(a){return this.useDepths&&a?"depths["+a+"]":"depth"+a},quotedString:function(a){return this.source.quotedString(a)},objectLiteral:function(a){return this.source.objectLiteral(a)},aliasable:function(a){var b=this.aliases[a];return b?(b.referenceCount++,b):(b=this.aliases[a]=this.source.wrap(a),b.aliasable=!0,b.referenceCount=1,b)},setupHelper:function(a,b,c){var d=[],e=this.setupHelperArgs(b,a,d,c),f=this.nameLookup("helpers",b,"helper"),g=this.aliasable(this.contextName(0)+" != null ? "+this.contextName(0)+" : (container.nullContext || {})");return{params:d,paramsInit:e,name:f,callParams:[g].concat(d)}},setupParams:function(a,b,c){var d={},e=[],f=[],g=[],h=!c,i=void 0;h&&(c=[]),d.name=this.quotedString(a),d.hash=this.popStack(),this.trackIds&&(d.hashIds=this.popStack()),this.stringParams&&(d.hashTypes=this.popStack(),d.hashContexts=this.popStack());var j=this.popStack(),k=this.popStack();(k||j)&&(d.fn=k||"container.noop",d.inverse=j||"container.noop");for(var l=b;l--;)i=this.popStack(),c[l]=i,this.trackIds&&(g[l]=this.popStack()),this.stringParams&&(f[l]=this.popStack(),e[l]=this.popStack());return h&&(d.args=this.source.generateArray(c)),this.trackIds&&(d.ids=this.source.generateArray(g)),this.stringParams&&(d.types=this.source.generateArray(f),d.contexts=this.source.generateArray(e)),this.options.data&&(d.data="data"),this.useBlockParams&&(d.blockParams="blockParams"),d},setupHelperArgs:function(a,b,c,d){var e=this.setupParams(a,b,c);return e=this.objectLiteral(e),d?(this.useRegister("options"),c.push("options"),["options=",e]):c?(c.push(e),""):e}},function(){for(var a="break else new var case finally return void catch for switch while continue function this with default if throw delete in try do instanceof typeof abstract enum int short boolean export interface static byte extends long super char final native synchronized class float package throws const goto private transient debugger implements protected volatile double import public let yield await null true false".split(" "),b=e.RESERVED_WORDS={},c=0,d=a.length;c<d;c++)b[a[c]]=!0}(),e.isValidJavaScriptVariableName=function(a){return!e.RESERVED_WORDS[a]&&/^[a-zA-Z_$][0-9a-zA-Z_$]*$/.test(a)},b["default"]=e,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b,c){if(f.isArray(a)){for(var d=[],e=0,g=a.length;e<g;e++)d.push(b.wrap(a[e],c));return d}return"boolean"==typeof a||"number"==typeof a?a+"":a}function e(a){this.srcFile=a,this.source=[]}b.__esModule=!0;var f=c(5),g=void 0;try{}catch(h){}g||(g=function(a,b,c,d){this.src="",d&&this.add(d)},g.prototype={add:function(a){f.isArray(a)&&(a=a.join("")),this.src+=a},prepend:function(a){f.isArray(a)&&(a=a.join("")),this.src=a+this.src},toStringWithSourceMap:function(){return{code:this.toString()}},toString:function(){return this.src}}),e.prototype={isEmpty:function(){return!this.source.length},prepend:function(a,b){this.source.unshift(this.wrap(a,b))},push:function(a,b){this.source.push(this.wrap(a,b))},merge:function(){var a=this.empty();return this.each(function(b){a.add([" ",b,"\n"])}),a},each:function(a){for(var b=0,c=this.source.length;b<c;b++)a(this.source[b])},empty:function(){var a=this.currentLocation||{start:{}};return new g(a.start.line,a.start.column,this.srcFile)},wrap:function(a){var b=arguments.length<=1||void 0===arguments[1]?this.currentLocation||{start:{}}:arguments[1];return a instanceof g?a:(a=d(a,this,b),new g(b.start.line,b.start.column,this.srcFile,a))},functionCall:function(a,b,c){return c=this.generateList(c),this.wrap([a,b?"."+b+"(":"(",c,")"])},quotedString:function(a){return'"'+(a+"").replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")+'"'},objectLiteral:function(a){var b=[];for(var c in a)if(a.hasOwnProperty(c)){var e=d(a[c],this);"undefined"!==e&&b.push([this.quotedString(c),":",e])}var f=this.generateList(b);return f.prepend("{"),f.add("}"),f},generateList:function(a){for(var b=this.empty(),c=0,e=a.length;c<e;c++)c&&b.add(","),b.add(d(a[c],this));return b},generateArray:function(a){var b=this.generateList(a);return b.prepend("["),b.add("]"),b}},b["default"]=e,a.exports=b["default"]}])});
js/handlebars/handlebars.runtime.js CHANGED
@@ -1,7 +1,7 @@
1
  /**!
2
 
3
  @license
4
- handlebars v4.3.0
5
 
6
  Copyright (C) 2011-2017 by Yehuda Katz
7
 
@@ -207,11 +207,13 @@ return /******/ (function(modules) { // webpackBootstrap
207
 
208
  var _logger2 = _interopRequireDefault(_logger);
209
 
210
- var VERSION = '4.3.0';
211
  exports.VERSION = VERSION;
212
  var COMPILER_REVISION = 8;
213
-
214
  exports.COMPILER_REVISION = COMPILER_REVISION;
 
 
 
215
  var REVISION_CHANGES = {
216
  1: '<= 1.0.rc.2', // 1.0.rc.2 is actually rev2 but doesn't report it
217
  2: '== 1.0.0-rc.3',
@@ -618,7 +620,7 @@ return /******/ (function(modules) { // webpackBootstrap
618
  /* 11 */
619
  /***/ (function(module, exports, __webpack_require__) {
620
 
621
- 'use strict';
622
 
623
  var _interopRequireDefault = __webpack_require__(2)['default'];
624
 
@@ -680,6 +682,16 @@ return /******/ (function(modules) { // webpackBootstrap
680
  execIteration(i, i, i === context.length - 1);
681
  }
682
  }
 
 
 
 
 
 
 
 
 
 
683
  } else {
684
  var priorKey = undefined;
685
 
@@ -710,6 +722,7 @@ return /******/ (function(modules) { // webpackBootstrap
710
  };
711
 
712
  module.exports = exports['default'];
 
713
 
714
  /***/ }),
715
  /* 12 */
@@ -1019,15 +1032,17 @@ return /******/ (function(modules) { // webpackBootstrap
1019
  var compilerRevision = compilerInfo && compilerInfo[0] || 1,
1020
  currentRevision = _base.COMPILER_REVISION;
1021
 
1022
- if (compilerRevision !== currentRevision) {
1023
- if (compilerRevision < currentRevision) {
1024
- var runtimeVersions = _base.REVISION_CHANGES[currentRevision],
1025
- compilerVersions = _base.REVISION_CHANGES[compilerRevision];
1026
- throw new _exception2['default']('Template was precompiled with an older version of Handlebars than the current runtime. ' + 'Please update your precompiler to a newer version (' + runtimeVersions + ') or downgrade your runtime to an older version (' + compilerVersions + ').');
1027
- } else {
1028
- // Use the embedded version info since the runtime doesn't know about this revision yet
1029
- throw new _exception2['default']('Template was precompiled with a newer version of Handlebars than the current runtime. ' + 'Please update your runtime to a newer version (' + compilerInfo[1] + ').');
1030
- }
 
 
1031
  }
1032
  }
1033
 
@@ -1047,6 +1062,9 @@ return /******/ (function(modules) { // webpackBootstrap
1047
  // for external users to override these as pseudo-supported APIs.
1048
  env.VM.checkRevision(templateSpec.compiler);
1049
 
 
 
 
1050
  function invokePartialWrapper(partial, context, options) {
1051
  if (options.hash) {
1052
  context = Utils.extend({}, context, options.hash);
@@ -1175,9 +1193,10 @@ return /******/ (function(modules) { // webpackBootstrap
1175
  }
1176
 
1177
  container.hooks = {};
1178
- var keepHelper = options.allowCallsToHelperMissing;
1179
- _helpers.moveHelperToHooks(container, 'helperMissing', keepHelper);
1180
- _helpers.moveHelperToHooks(container, 'blockHelperMissing', keepHelper);
 
1181
  } else {
1182
  container.helpers = options.helpers;
1183
  container.partials = options.partials;
1
  /**!
2
 
3
  @license
4
+ handlebars v4.4.5
5
 
6
  Copyright (C) 2011-2017 by Yehuda Katz
7
 
207
 
208
  var _logger2 = _interopRequireDefault(_logger);
209
 
210
+ var VERSION = '4.4.5';
211
  exports.VERSION = VERSION;
212
  var COMPILER_REVISION = 8;
 
213
  exports.COMPILER_REVISION = COMPILER_REVISION;
214
+ var LAST_COMPATIBLE_COMPILER_REVISION = 7;
215
+
216
+ exports.LAST_COMPATIBLE_COMPILER_REVISION = LAST_COMPATIBLE_COMPILER_REVISION;
217
  var REVISION_CHANGES = {
218
  1: '<= 1.0.rc.2', // 1.0.rc.2 is actually rev2 but doesn't report it
219
  2: '== 1.0.0-rc.3',
620
  /* 11 */
621
  /***/ (function(module, exports, __webpack_require__) {
622
 
623
+ /* WEBPACK VAR INJECTION */(function(global) {'use strict';
624
 
625
  var _interopRequireDefault = __webpack_require__(2)['default'];
626
 
682
  execIteration(i, i, i === context.length - 1);
683
  }
684
  }
685
+ } else if (global.Symbol && context[global.Symbol.iterator]) {
686
+ var newContext = [];
687
+ var iterator = context[global.Symbol.iterator]();
688
+ for (var it = iterator.next(); !it.done; it = iterator.next()) {
689
+ newContext.push(it.value);
690
+ }
691
+ context = newContext;
692
+ for (var j = context.length; i < j; i++) {
693
+ execIteration(i, i, i === context.length - 1);
694
+ }
695
  } else {
696
  var priorKey = undefined;
697
 
722
  };
723
 
724
  module.exports = exports['default'];
725
+ /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))
726
 
727
  /***/ }),
728
  /* 12 */
1032
  var compilerRevision = compilerInfo && compilerInfo[0] || 1,
1033
  currentRevision = _base.COMPILER_REVISION;
1034
 
1035
+ if (compilerRevision >= _base.LAST_COMPATIBLE_COMPILER_REVISION && compilerRevision <= _base.COMPILER_REVISION) {
1036
+ return;
1037
+ }
1038
+
1039
+ if (compilerRevision < _base.LAST_COMPATIBLE_COMPILER_REVISION) {
1040
+ var runtimeVersions = _base.REVISION_CHANGES[currentRevision],
1041
+ compilerVersions = _base.REVISION_CHANGES[compilerRevision];
1042
+ throw new _exception2['default']('Template was precompiled with an older version of Handlebars than the current runtime. ' + 'Please update your precompiler to a newer version (' + runtimeVersions + ') or downgrade your runtime to an older version (' + compilerVersions + ').');
1043
+ } else {
1044
+ // Use the embedded version info since the runtime doesn't know about this revision yet
1045
+ throw new _exception2['default']('Template was precompiled with a newer version of Handlebars than the current runtime. ' + 'Please update your runtime to a newer version (' + compilerInfo[1] + ').');
1046
  }
1047
  }
1048
 
1062
  // for external users to override these as pseudo-supported APIs.
1063
  env.VM.checkRevision(templateSpec.compiler);
1064
 
1065
+ // backwards compatibility for precompiled templates with compiler-version 7 (<4.3.0)
1066
+ var templateWasPrecompiledWithCompilerV7 = templateSpec.compiler && templateSpec.compiler[0] === 7;
1067
+
1068
  function invokePartialWrapper(partial, context, options) {
1069
  if (options.hash) {
1070
  context = Utils.extend({}, context, options.hash);
1193
  }
1194
 
1195
  container.hooks = {};
1196
+
1197
+ var keepHelperInHelpers = options.allowCallsToHelperMissing || templateWasPrecompiledWithCompilerV7;
1198
+ _helpers.moveHelperToHooks(container, 'helperMissing', keepHelperInHelpers);
1199
+ _helpers.moveHelperToHooks(container, 'blockHelperMissing', keepHelperInHelpers);
1200
  } else {
1201
  container.helpers = options.helpers;
1202
  container.partials = options.partials;
js/handlebars/handlebars.runtime.min.js CHANGED
@@ -1,7 +1,7 @@
1
  /**!
2
 
3
  @license
4
- handlebars v4.3.0
5
 
6
  Copyright (C) 2011-2017 by Yehuda Katz
7
 
@@ -24,4 +24,4 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
  THE SOFTWARE.
25
 
26
  */
27
- !function(a,b){"object"==typeof exports&&"object"==typeof module?module.exports=b():"function"==typeof define&&define.amd?define([],b):"object"==typeof exports?exports.Handlebars=b():a.Handlebars=b()}(this,function(){return function(a){function b(d){if(c[d])return c[d].exports;var e=c[d]={exports:{},id:d,loaded:!1};return a[d].call(e.exports,e,e.exports,b),e.loaded=!0,e.exports}var c={};return b.m=a,b.c=c,b.p="",b(0)}([function(a,b,c){"use strict";function d(){var a=new h.HandlebarsEnvironment;return n.extend(a,h),a.SafeString=j["default"],a.Exception=l["default"],a.Utils=n,a.escapeExpression=n.escapeExpression,a.VM=p,a.template=function(b){return p.template(b,a)},a}var e=c(1)["default"],f=c(2)["default"];b.__esModule=!0;var g=c(3),h=e(g),i=c(20),j=f(i),k=c(5),l=f(k),m=c(4),n=e(m),o=c(21),p=e(o),q=c(33),r=f(q),s=d();s.create=d,r["default"](s),s["default"]=s,b["default"]=s,a.exports=b["default"]},function(a,b){"use strict";b["default"]=function(a){if(a&&a.__esModule)return a;var b={};if(null!=a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(b[c]=a[c]);return b["default"]=a,b},b.__esModule=!0},function(a,b){"use strict";b["default"]=function(a){return a&&a.__esModule?a:{"default":a}},b.__esModule=!0},function(a,b,c){"use strict";function d(a,b,c){this.helpers=a||{},this.partials=b||{},this.decorators=c||{},i.registerDefaultHelpers(this),j.registerDefaultDecorators(this)}var e=c(2)["default"];b.__esModule=!0,b.HandlebarsEnvironment=d;var f=c(4),g=c(5),h=e(g),i=c(9),j=c(17),k=c(19),l=e(k),m="4.3.0";b.VERSION=m;var n=8;b.COMPILER_REVISION=n;var o={1:"<= 1.0.rc.2",2:"== 1.0.0-rc.3",3:"== 1.0.0-rc.4",4:"== 1.x.x",5:"== 2.0.0-alpha.x",6:">= 2.0.0-beta.1",7:">= 4.0.0 <4.3.0",8:">= 4.3.0"};b.REVISION_CHANGES=o;var p="[object Object]";d.prototype={constructor:d,logger:l["default"],log:l["default"].log,registerHelper:function(a,b){if(f.toString.call(a)===p){if(b)throw new h["default"]("Arg not supported with multiple helpers");f.extend(this.helpers,a)}else this.helpers[a]=b},unregisterHelper:function(a){delete this.helpers[a]},registerPartial:function(a,b){if(f.toString.call(a)===p)f.extend(this.partials,a);else{if("undefined"==typeof b)throw new h["default"]('Attempting to register a partial called "'+a+'" as undefined');this.partials[a]=b}},unregisterPartial:function(a){delete this.partials[a]},registerDecorator:function(a,b){if(f.toString.call(a)===p){if(b)throw new h["default"]("Arg not supported with multiple decorators");f.extend(this.decorators,a)}else this.decorators[a]=b},unregisterDecorator:function(a){delete this.decorators[a]}};var q=l["default"].log;b.log=q,b.createFrame=f.createFrame,b.logger=l["default"]},function(a,b){"use strict";function c(a){return k[a]}function d(a){for(var b=1;b<arguments.length;b++)for(var c in arguments[b])Object.prototype.hasOwnProperty.call(arguments[b],c)&&(a[c]=arguments[b][c]);return a}function e(a,b){for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return c;return-1}function f(a){if("string"!=typeof a){if(a&&a.toHTML)return a.toHTML();if(null==a)return"";if(!a)return a+"";a=""+a}return m.test(a)?a.replace(l,c):a}function g(a){return!a&&0!==a||!(!p(a)||0!==a.length)}function h(a){var b=d({},a);return b._parent=a,b}function i(a,b){return a.path=b,a}function j(a,b){return(a?a+".":"")+b}b.__esModule=!0,b.extend=d,b.indexOf=e,b.escapeExpression=f,b.isEmpty=g,b.createFrame=h,b.blockParams=i,b.appendContextPath=j;var k={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;","`":"&#x60;","=":"&#x3D;"},l=/[&<>"'`=]/g,m=/[&<>"'`=]/,n=Object.prototype.toString;b.toString=n;var o=function(a){return"function"==typeof a};o(/x/)&&(b.isFunction=o=function(a){return"function"==typeof a&&"[object Function]"===n.call(a)}),b.isFunction=o;var p=Array.isArray||function(a){return!(!a||"object"!=typeof a)&&"[object Array]"===n.call(a)};b.isArray=p},function(a,b,c){"use strict";function d(a,b){var c=b&&b.loc,g=void 0,h=void 0;c&&(g=c.start.line,h=c.start.column,a+=" - "+g+":"+h);for(var i=Error.prototype.constructor.call(this,a),j=0;j<f.length;j++)this[f[j]]=i[f[j]];Error.captureStackTrace&&Error.captureStackTrace(this,d);try{c&&(this.lineNumber=g,e?Object.defineProperty(this,"column",{value:h,enumerable:!0}):this.column=h)}catch(k){}}var e=c(6)["default"];b.__esModule=!0;var f=["description","fileName","lineNumber","message","name","number","stack"];d.prototype=new Error,b["default"]=d,a.exports=b["default"]},function(a,b,c){a.exports={"default":c(7),__esModule:!0}},function(a,b,c){var d=c(8);a.exports=function(a,b,c){return d.setDesc(a,b,c)}},function(a,b){var c=Object;a.exports={create:c.create,getProto:c.getPrototypeOf,isEnum:{}.propertyIsEnumerable,getDesc:c.getOwnPropertyDescriptor,setDesc:c.defineProperty,setDescs:c.defineProperties,getKeys:c.keys,getNames:c.getOwnPropertyNames,getSymbols:c.getOwnPropertySymbols,each:[].forEach}},function(a,b,c){"use strict";function d(a){h["default"](a),j["default"](a),l["default"](a),n["default"](a),p["default"](a),r["default"](a),t["default"](a)}function e(a,b,c){a.helpers[b]&&(a.hooks[b]=a.helpers[b],c||delete a.helpers[b])}var f=c(2)["default"];b.__esModule=!0,b.registerDefaultHelpers=d,b.moveHelperToHooks=e;var g=c(10),h=f(g),i=c(11),j=f(i),k=c(12),l=f(k),m=c(13),n=f(m),o=c(14),p=f(o),q=c(15),r=f(q),s=c(16),t=f(s)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerHelper("blockHelperMissing",function(b,c){var e=c.inverse,f=c.fn;if(b===!0)return f(this);if(b===!1||null==b)return e(this);if(d.isArray(b))return b.length>0?(c.ids&&(c.ids=[c.name]),a.helpers.each(b,c)):e(this);if(c.data&&c.ids){var g=d.createFrame(c.data);g.contextPath=d.appendContextPath(c.data.contextPath,c.name),c={data:g}}return f(b,c)})},a.exports=b["default"]},function(a,b,c){"use strict";var d=c(2)["default"];b.__esModule=!0;var e=c(4),f=c(5),g=d(f);b["default"]=function(a){a.registerHelper("each",function(a,b){function c(b,c,f){j&&(j.key=b,j.index=c,j.first=0===c,j.last=!!f,k&&(j.contextPath=k+b)),i+=d(a[b],{data:j,blockParams:e.blockParams([a[b],b],[k+b,null])})}if(!b)throw new g["default"]("Must pass iterator to #each");var d=b.fn,f=b.inverse,h=0,i="",j=void 0,k=void 0;if(b.data&&b.ids&&(k=e.appendContextPath(b.data.contextPath,b.ids[0])+"."),e.isFunction(a)&&(a=a.call(this)),b.data&&(j=e.createFrame(b.data)),a&&"object"==typeof a)if(e.isArray(a))for(var l=a.length;h<l;h++)h in a&&c(h,h,h===a.length-1);else{var m=void 0;for(var n in a)a.hasOwnProperty(n)&&(void 0!==m&&c(m,h-1),m=n,h++);void 0!==m&&c(m,h-1,!0)}return 0===h&&(i=f(this)),i})},a.exports=b["default"]},function(a,b,c){"use strict";var d=c(2)["default"];b.__esModule=!0;var e=c(5),f=d(e);b["default"]=function(a){a.registerHelper("helperMissing",function(){if(1!==arguments.length)throw new f["default"]('Missing helper: "'+arguments[arguments.length-1].name+'"')})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerHelper("if",function(a,b){return d.isFunction(a)&&(a=a.call(this)),!b.hash.includeZero&&!a||d.isEmpty(a)?b.inverse(this):b.fn(this)}),a.registerHelper("unless",function(b,c){return a.helpers["if"].call(this,b,{fn:c.inverse,inverse:c.fn,hash:c.hash})})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("log",function(){for(var b=[void 0],c=arguments[arguments.length-1],d=0;d<arguments.length-1;d++)b.push(arguments[d]);var e=1;null!=c.hash.level?e=c.hash.level:c.data&&null!=c.data.level&&(e=c.data.level),b[0]=e,a.log.apply(a,b)})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("lookup",function(a,b){if(!a)return a;if("constructor"!==b||a.propertyIsEnumerable(b))return a[b]})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerHelper("with",function(a,b){d.isFunction(a)&&(a=a.call(this));var c=b.fn;if(d.isEmpty(a))return b.inverse(this);var e=b.data;return b.data&&b.ids&&(e=d.createFrame(b.data),e.contextPath=d.appendContextPath(b.data.contextPath,b.ids[0])),c(a,{data:e,blockParams:d.blockParams([a],[e&&e.contextPath])})})},a.exports=b["default"]},function(a,b,c){"use strict";function d(a){g["default"](a)}var e=c(2)["default"];b.__esModule=!0,b.registerDefaultDecorators=d;var f=c(18),g=e(f)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerDecorator("inline",function(a,b,c,e){var f=a;return b.partials||(b.partials={},f=function(e,f){var g=c.partials;c.partials=d.extend({},g,b.partials);var h=a(e,f);return c.partials=g,h}),b.partials[e.args[0]]=e.fn,f})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4),e={methodMap:["debug","info","warn","error"],level:"info",lookupLevel:function(a){if("string"==typeof a){var b=d.indexOf(e.methodMap,a.toLowerCase());a=b>=0?b:parseInt(a,10)}return a},log:function(a){if(a=e.lookupLevel(a),"undefined"!=typeof console&&e.lookupLevel(e.level)<=a){var b=e.methodMap[a];console[b]||(b="log");for(var c=arguments.length,d=Array(c>1?c-1:0),f=1;f<c;f++)d[f-1]=arguments[f];console[b].apply(console,d)}}};b["default"]=e,a.exports=b["default"]},function(a,b){"use strict";function c(a){this.string=a}b.__esModule=!0,c.prototype.toString=c.prototype.toHTML=function(){return""+this.string},b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(a){var b=a&&a[0]||1,c=s.COMPILER_REVISION;if(b!==c){if(b<c){var d=s.REVISION_CHANGES[c],e=s.REVISION_CHANGES[b];throw new r["default"]("Template was precompiled with an older version of Handlebars than the current runtime. Please update your precompiler to a newer version ("+d+") or downgrade your runtime to an older version ("+e+").")}throw new r["default"]("Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version ("+a[1]+").")}}function e(a,b){function c(c,d,e){e.hash&&(d=p.extend({},d,e.hash),e.ids&&(e.ids[0]=!0)),c=b.VM.resolvePartial.call(this,c,d,e);var f=p.extend({},e,{hooks:this.hooks}),g=b.VM.invokePartial.call(this,c,d,f);if(null==g&&b.compile&&(e.partials[e.name]=b.compile(c,a.compilerOptions,b),g=e.partials[e.name](d,f)),null!=g){if(e.indent){for(var h=g.split("\n"),i=0,j=h.length;i<j&&(h[i]||i+1!==j);i++)h[i]=e.indent+h[i];g=h.join("\n")}return g}throw new r["default"]("The partial "+e.name+" could not be compiled when running in runtime-only mode")}function d(b){function c(b){return""+a.main(e,b,e.helpers,e.partials,g,i,h)}var f=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],g=f.data;d._setup(f),!f.partial&&a.useData&&(g=j(b,g));var h=void 0,i=a.useBlockParams?[]:void 0;return a.useDepths&&(h=f.depths?b!=f.depths[0]?[b].concat(f.depths):f.depths:[b]),(c=k(a.main,c,e,f.depths||[],g,i))(b,f)}if(!b)throw new r["default"]("No environment passed to template");if(!a||!a.main)throw new r["default"]("Unknown template object: "+typeof a);a.main.decorator=a.main_d,b.VM.checkRevision(a.compiler);var e={strict:function(a,b){if(!(b in a))throw new r["default"]('"'+b+'" not defined in '+a);return a[b]},lookup:function(a,b){for(var c=a.length,d=0;d<c;d++)if(a[d]&&null!=a[d][b])return a[d][b]},lambda:function(a,b){return"function"==typeof a?a.call(b):a},escapeExpression:p.escapeExpression,invokePartial:c,fn:function(b){var c=a[b];return c.decorator=a[b+"_d"],c},programs:[],program:function(a,b,c,d,e){var g=this.programs[a],h=this.fn(a);return b||e||d||c?g=f(this,a,h,b,c,d,e):g||(g=this.programs[a]=f(this,a,h)),g},data:function(a,b){for(;a&&b--;)a=a._parent;return a},nullContext:l({}),noop:b.VM.noop,compilerInfo:a.compiler};return d.isTop=!0,d._setup=function(c){if(c.partial)e.helpers=c.helpers,e.partials=c.partials,e.decorators=c.decorators,e.hooks=c.hooks;else{e.helpers=p.extend({},b.helpers,c.helpers),a.usePartial&&(e.partials=p.extend({},b.partials,c.partials)),(a.usePartial||a.useDecorators)&&(e.decorators=p.extend({},b.decorators,c.decorators)),e.hooks={};var d=c.allowCallsToHelperMissing;t.moveHelperToHooks(e,"helperMissing",d),t.moveHelperToHooks(e,"blockHelperMissing",d)}},d._child=function(b,c,d,g){if(a.useBlockParams&&!d)throw new r["default"]("must pass block params");if(a.useDepths&&!g)throw new r["default"]("must pass parent depths");return f(e,b,a[b],c,0,d,g)},d}function f(a,b,c,d,e,f,g){function h(b){var e=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],h=g;return!g||b==g[0]||b===a.nullContext&&null===g[0]||(h=[b].concat(g)),c(a,b,a.helpers,a.partials,e.data||d,f&&[e.blockParams].concat(f),h)}return h=k(c,h,a,g,d,f),h.program=b,h.depth=g?g.length:0,h.blockParams=e||0,h}function g(a,b,c){return a?a.call||c.name||(c.name=a,a=c.partials[a]):a="@partial-block"===c.name?c.data["partial-block"]:c.partials[c.name],a}function h(a,b,c){var d=c.data&&c.data["partial-block"];c.partial=!0,c.ids&&(c.data.contextPath=c.ids[0]||c.data.contextPath);var e=void 0;if(c.fn&&c.fn!==i&&!function(){c.data=s.createFrame(c.data);var a=c.fn;e=c.data["partial-block"]=function(b){var c=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];return c.data=s.createFrame(c.data),c.data["partial-block"]=d,a(b,c)},a.partials&&(c.partials=p.extend({},c.partials,a.partials))}(),void 0===a&&e&&(a=e),void 0===a)throw new r["default"]("The partial "+c.name+" could not be found");if(a instanceof Function)return a(b,c)}function i(){return""}function j(a,b){return b&&"root"in b||(b=b?s.createFrame(b):{},b.root=a),b}function k(a,b,c,d,e,f){if(a.decorator){var g={};b=a.decorator(b,g,c,d&&d[0],e,f,d),p.extend(b,g)}return b}var l=c(22)["default"],m=c(1)["default"],n=c(2)["default"];b.__esModule=!0,b.checkRevision=d,b.template=e,b.wrapProgram=f,b.resolvePartial=g,b.invokePartial=h,b.noop=i;var o=c(4),p=m(o),q=c(5),r=n(q),s=c(3),t=c(9)},function(a,b,c){a.exports={"default":c(23),__esModule:!0}},function(a,b,c){c(24),a.exports=c(29).Object.seal},function(a,b,c){var d=c(25);c(26)("seal",function(a){return function(b){return a&&d(b)?a(b):b}})},function(a,b){a.exports=function(a){return"object"==typeof a?null!==a:"function"==typeof a}},function(a,b,c){var d=c(27),e=c(29),f=c(32);a.exports=function(a,b){var c=(e.Object||{})[a]||Object[a],g={};g[a]=b(c),d(d.S+d.F*f(function(){c(1)}),"Object",g)}},function(a,b,c){var d=c(28),e=c(29),f=c(30),g="prototype",h=function(a,b,c){var i,j,k,l=a&h.F,m=a&h.G,n=a&h.S,o=a&h.P,p=a&h.B,q=a&h.W,r=m?e:e[b]||(e[b]={}),s=m?d:n?d[b]:(d[b]||{})[g];m&&(c=b);for(i in c)j=!l&&s&&i in s,j&&i in r||(k=j?s[i]:c[i],r[i]=m&&"function"!=typeof s[i]?c[i]:p&&j?f(k,d):q&&s[i]==k?function(a){var b=function(b){return this instanceof a?new a(b):a(b)};return b[g]=a[g],b}(k):o&&"function"==typeof k?f(Function.call,k):k,o&&((r[g]||(r[g]={}))[i]=k))};h.F=1,h.G=2,h.S=4,h.P=8,h.B=16,h.W=32,a.exports=h},function(a,b){var c=a.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=c)},function(a,b){var c=a.exports={version:"1.2.6"};"number"==typeof __e&&(__e=c)},function(a,b,c){var d=c(31);a.exports=function(a,b,c){if(d(a),void 0===b)return a;switch(c){case 1:return function(c){return a.call(b,c)};case 2:return function(c,d){return a.call(b,c,d)};case 3:return function(c,d,e){return a.call(b,c,d,e)}}return function(){return a.apply(b,arguments)}}},function(a,b){a.exports=function(a){if("function"!=typeof a)throw TypeError(a+" is not a function!");return a}},function(a,b){a.exports=function(a){try{return!!a()}catch(b){return!0}}},function(a,b){(function(c){"use strict";b.__esModule=!0,b["default"]=function(a){var b="undefined"!=typeof c?c:window,d=b.Handlebars;a.noConflict=function(){return b.Handlebars===a&&(b.Handlebars=d),a}},a.exports=b["default"]}).call(b,function(){return this}())}])});
1
  /**!
2
 
3
  @license
4
+ handlebars v4.4.5
5
 
6
  Copyright (C) 2011-2017 by Yehuda Katz
7
 
24
  THE SOFTWARE.
25
 
26
  */
27
+ !function(a,b){"object"==typeof exports&&"object"==typeof module?module.exports=b():"function"==typeof define&&define.amd?define([],b):"object"==typeof exports?exports.Handlebars=b():a.Handlebars=b()}(this,function(){return function(a){function b(d){if(c[d])return c[d].exports;var e=c[d]={exports:{},id:d,loaded:!1};return a[d].call(e.exports,e,e.exports,b),e.loaded=!0,e.exports}var c={};return b.m=a,b.c=c,b.p="",b(0)}([function(a,b,c){"use strict";function d(){var a=new h.HandlebarsEnvironment;return n.extend(a,h),a.SafeString=j["default"],a.Exception=l["default"],a.Utils=n,a.escapeExpression=n.escapeExpression,a.VM=p,a.template=function(b){return p.template(b,a)},a}var e=c(1)["default"],f=c(2)["default"];b.__esModule=!0;var g=c(3),h=e(g),i=c(20),j=f(i),k=c(5),l=f(k),m=c(4),n=e(m),o=c(21),p=e(o),q=c(33),r=f(q),s=d();s.create=d,r["default"](s),s["default"]=s,b["default"]=s,a.exports=b["default"]},function(a,b){"use strict";b["default"]=function(a){if(a&&a.__esModule)return a;var b={};if(null!=a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(b[c]=a[c]);return b["default"]=a,b},b.__esModule=!0},function(a,b){"use strict";b["default"]=function(a){return a&&a.__esModule?a:{"default":a}},b.__esModule=!0},function(a,b,c){"use strict";function d(a,b,c){this.helpers=a||{},this.partials=b||{},this.decorators=c||{},i.registerDefaultHelpers(this),j.registerDefaultDecorators(this)}var e=c(2)["default"];b.__esModule=!0,b.HandlebarsEnvironment=d;var f=c(4),g=c(5),h=e(g),i=c(9),j=c(17),k=c(19),l=e(k),m="4.4.5";b.VERSION=m;var n=8;b.COMPILER_REVISION=n;var o=7;b.LAST_COMPATIBLE_COMPILER_REVISION=o;var p={1:"<= 1.0.rc.2",2:"== 1.0.0-rc.3",3:"== 1.0.0-rc.4",4:"== 1.x.x",5:"== 2.0.0-alpha.x",6:">= 2.0.0-beta.1",7:">= 4.0.0 <4.3.0",8:">= 4.3.0"};b.REVISION_CHANGES=p;var q="[object Object]";d.prototype={constructor:d,logger:l["default"],log:l["default"].log,registerHelper:function(a,b){if(f.toString.call(a)===q){if(b)throw new h["default"]("Arg not supported with multiple helpers");f.extend(this.helpers,a)}else this.helpers[a]=b},unregisterHelper:function(a){delete this.helpers[a]},registerPartial:function(a,b){if(f.toString.call(a)===q)f.extend(this.partials,a);else{if("undefined"==typeof b)throw new h["default"]('Attempting to register a partial called "'+a+'" as undefined');this.partials[a]=b}},unregisterPartial:function(a){delete this.partials[a]},registerDecorator:function(a,b){if(f.toString.call(a)===q){if(b)throw new h["default"]("Arg not supported with multiple decorators");f.extend(this.decorators,a)}else this.decorators[a]=b},unregisterDecorator:function(a){delete this.decorators[a]}};var r=l["default"].log;b.log=r,b.createFrame=f.createFrame,b.logger=l["default"]},function(a,b){"use strict";function c(a){return k[a]}function d(a){for(var b=1;b<arguments.length;b++)for(var c in arguments[b])Object.prototype.hasOwnProperty.call(arguments[b],c)&&(a[c]=arguments[b][c]);return a}function e(a,b){for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return c;return-1}function f(a){if("string"!=typeof a){if(a&&a.toHTML)return a.toHTML();if(null==a)return"";if(!a)return a+"";a=""+a}return m.test(a)?a.replace(l,c):a}function g(a){return!a&&0!==a||!(!p(a)||0!==a.length)}function h(a){var b=d({},a);return b._parent=a,b}function i(a,b){return a.path=b,a}function j(a,b){return(a?a+".":"")+b}b.__esModule=!0,b.extend=d,b.indexOf=e,b.escapeExpression=f,b.isEmpty=g,b.createFrame=h,b.blockParams=i,b.appendContextPath=j;var k={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;","`":"&#x60;","=":"&#x3D;"},l=/[&<>"'`=]/g,m=/[&<>"'`=]/,n=Object.prototype.toString;b.toString=n;var o=function(a){return"function"==typeof a};o(/x/)&&(b.isFunction=o=function(a){return"function"==typeof a&&"[object Function]"===n.call(a)}),b.isFunction=o;var p=Array.isArray||function(a){return!(!a||"object"!=typeof a)&&"[object Array]"===n.call(a)};b.isArray=p},function(a,b,c){"use strict";function d(a,b){var c=b&&b.loc,g=void 0,h=void 0;c&&(g=c.start.line,h=c.start.column,a+=" - "+g+":"+h);for(var i=Error.prototype.constructor.call(this,a),j=0;j<f.length;j++)this[f[j]]=i[f[j]];Error.captureStackTrace&&Error.captureStackTrace(this,d);try{c&&(this.lineNumber=g,e?Object.defineProperty(this,"column",{value:h,enumerable:!0}):this.column=h)}catch(k){}}var e=c(6)["default"];b.__esModule=!0;var f=["description","fileName","lineNumber","message","name","number","stack"];d.prototype=new Error,b["default"]=d,a.exports=b["default"]},function(a,b,c){a.exports={"default":c(7),__esModule:!0}},function(a,b,c){var d=c(8);a.exports=function(a,b,c){return d.setDesc(a,b,c)}},function(a,b){var c=Object;a.exports={create:c.create,getProto:c.getPrototypeOf,isEnum:{}.propertyIsEnumerable,getDesc:c.getOwnPropertyDescriptor,setDesc:c.defineProperty,setDescs:c.defineProperties,getKeys:c.keys,getNames:c.getOwnPropertyNames,getSymbols:c.getOwnPropertySymbols,each:[].forEach}},function(a,b,c){"use strict";function d(a){h["default"](a),j["default"](a),l["default"](a),n["default"](a),p["default"](a),r["default"](a),t["default"](a)}function e(a,b,c){a.helpers[b]&&(a.hooks[b]=a.helpers[b],c||delete a.helpers[b])}var f=c(2)["default"];b.__esModule=!0,b.registerDefaultHelpers=d,b.moveHelperToHooks=e;var g=c(10),h=f(g),i=c(11),j=f(i),k=c(12),l=f(k),m=c(13),n=f(m),o=c(14),p=f(o),q=c(15),r=f(q),s=c(16),t=f(s)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerHelper("blockHelperMissing",function(b,c){var e=c.inverse,f=c.fn;if(b===!0)return f(this);if(b===!1||null==b)return e(this);if(d.isArray(b))return b.length>0?(c.ids&&(c.ids=[c.name]),a.helpers.each(b,c)):e(this);if(c.data&&c.ids){var g=d.createFrame(c.data);g.contextPath=d.appendContextPath(c.data.contextPath,c.name),c={data:g}}return f(b,c)})},a.exports=b["default"]},function(a,b,c){(function(d){"use strict";var e=c(2)["default"];b.__esModule=!0;var f=c(4),g=c(5),h=e(g);b["default"]=function(a){a.registerHelper("each",function(a,b){function c(b,c,d){k&&(k.key=b,k.index=c,k.first=0===c,k.last=!!d,l&&(k.contextPath=l+b)),j+=e(a[b],{data:k,blockParams:f.blockParams([a[b],b],[l+b,null])})}if(!b)throw new h["default"]("Must pass iterator to #each");var e=b.fn,g=b.inverse,i=0,j="",k=void 0,l=void 0;if(b.data&&b.ids&&(l=f.appendContextPath(b.data.contextPath,b.ids[0])+"."),f.isFunction(a)&&(a=a.call(this)),b.data&&(k=f.createFrame(b.data)),a&&"object"==typeof a)if(f.isArray(a))for(var m=a.length;i<m;i++)i in a&&c(i,i,i===a.length-1);else if(d.Symbol&&a[d.Symbol.iterator]){for(var n=[],o=a[d.Symbol.iterator](),p=o.next();!p.done;p=o.next())n.push(p.value);a=n;for(var m=a.length;i<m;i++)c(i,i,i===a.length-1)}else{var q=void 0;for(var r in a)a.hasOwnProperty(r)&&(void 0!==q&&c(q,i-1),q=r,i++);void 0!==q&&c(q,i-1,!0)}return 0===i&&(j=g(this)),j})},a.exports=b["default"]}).call(b,function(){return this}())},function(a,b,c){"use strict";var d=c(2)["default"];b.__esModule=!0;var e=c(5),f=d(e);b["default"]=function(a){a.registerHelper("helperMissing",function(){if(1!==arguments.length)throw new f["default"]('Missing helper: "'+arguments[arguments.length-1].name+'"')})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerHelper("if",function(a,b){return d.isFunction(a)&&(a=a.call(this)),!b.hash.includeZero&&!a||d.isEmpty(a)?b.inverse(this):b.fn(this)}),a.registerHelper("unless",function(b,c){return a.helpers["if"].call(this,b,{fn:c.inverse,inverse:c.fn,hash:c.hash})})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("log",function(){for(var b=[void 0],c=arguments[arguments.length-1],d=0;d<arguments.length-1;d++)b.push(arguments[d]);var e=1;null!=c.hash.level?e=c.hash.level:c.data&&null!=c.data.level&&(e=c.data.level),b[0]=e,a.log.apply(a,b)})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("lookup",function(a,b){if(!a)return a;if("constructor"!==b||a.propertyIsEnumerable(b))return a[b]})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerHelper("with",function(a,b){d.isFunction(a)&&(a=a.call(this));var c=b.fn;if(d.isEmpty(a))return b.inverse(this);var e=b.data;return b.data&&b.ids&&(e=d.createFrame(b.data),e.contextPath=d.appendContextPath(b.data.contextPath,b.ids[0])),c(a,{data:e,blockParams:d.blockParams([a],[e&&e.contextPath])})})},a.exports=b["default"]},function(a,b,c){"use strict";function d(a){g["default"](a)}var e=c(2)["default"];b.__esModule=!0,b.registerDefaultDecorators=d;var f=c(18),g=e(f)},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4);b["default"]=function(a){a.registerDecorator("inline",function(a,b,c,e){var f=a;return b.partials||(b.partials={},f=function(e,f){var g=c.partials;c.partials=d.extend({},g,b.partials);var h=a(e,f);return c.partials=g,h}),b.partials[e.args[0]]=e.fn,f})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(4),e={methodMap:["debug","info","warn","error"],level:"info",lookupLevel:function(a){if("string"==typeof a){var b=d.indexOf(e.methodMap,a.toLowerCase());a=b>=0?b:parseInt(a,10)}return a},log:function(a){if(a=e.lookupLevel(a),"undefined"!=typeof console&&e.lookupLevel(e.level)<=a){var b=e.methodMap[a];console[b]||(b="log");for(var c=arguments.length,d=Array(c>1?c-1:0),f=1;f<c;f++)d[f-1]=arguments[f];console[b].apply(console,d)}}};b["default"]=e,a.exports=b["default"]},function(a,b){"use strict";function c(a){this.string=a}b.__esModule=!0,c.prototype.toString=c.prototype.toHTML=function(){return""+this.string},b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(a){var b=a&&a[0]||1,c=s.COMPILER_REVISION;if(!(b>=s.LAST_COMPATIBLE_COMPILER_REVISION&&b<=s.COMPILER_REVISION)){if(b<s.LAST_COMPATIBLE_COMPILER_REVISION){var d=s.REVISION_CHANGES[c],e=s.REVISION_CHANGES[b];throw new r["default"]("Template was precompiled with an older version of Handlebars than the current runtime. Please update your precompiler to a newer version ("+d+") or downgrade your runtime to an older version ("+e+").")}throw new r["default"]("Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version ("+a[1]+").")}}function e(a,b){function c(c,d,e){e.hash&&(d=p.extend({},d,e.hash),e.ids&&(e.ids[0]=!0)),c=b.VM.resolvePartial.call(this,c,d,e);var f=p.extend({},e,{hooks:this.hooks}),g=b.VM.invokePartial.call(this,c,d,f);if(null==g&&b.compile&&(e.partials[e.name]=b.compile(c,a.compilerOptions,b),g=e.partials[e.name](d,f)),null!=g){if(e.indent){for(var h=g.split("\n"),i=0,j=h.length;i<j&&(h[i]||i+1!==j);i++)h[i]=e.indent+h[i];g=h.join("\n")}return g}throw new r["default"]("The partial "+e.name+" could not be compiled when running in runtime-only mode")}function d(b){function c(b){return""+a.main(g,b,g.helpers,g.partials,f,i,h)}var e=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],f=e.data;d._setup(e),!e.partial&&a.useData&&(f=j(b,f));var h=void 0,i=a.useBlockParams?[]:void 0;return a.useDepths&&(h=e.depths?b!=e.depths[0]?[b].concat(e.depths):e.depths:[b]),(c=k(a.main,c,g,e.depths||[],f,i))(b,e)}if(!b)throw new r["default"]("No environment passed to template");if(!a||!a.main)throw new r["default"]("Unknown template object: "+typeof a);a.main.decorator=a.main_d,b.VM.checkRevision(a.compiler);var e=a.compiler&&7===a.compiler[0],g={strict:function(a,b){if(!(b in a))throw new r["default"]('"'+b+'" not defined in '+a);return a[b]},lookup:function(a,b){for(var c=a.length,d=0;d<c;d++)if(a[d]&&null!=a[d][b])return a[d][b]},lambda:function(a,b){return"function"==typeof a?a.call(b):a},escapeExpression:p.escapeExpression,invokePartial:c,fn:function(b){var c=a[b];return c.decorator=a[b+"_d"],c},programs:[],program:function(a,b,c,d,e){var g=this.programs[a],h=this.fn(a);return b||e||d||c?g=f(this,a,h,b,c,d,e):g||(g=this.programs[a]=f(this,a,h)),g},data:function(a,b){for(;a&&b--;)a=a._parent;return a},nullContext:l({}),noop:b.VM.noop,compilerInfo:a.compiler};return d.isTop=!0,d._setup=function(c){if(c.partial)g.helpers=c.helpers,g.partials=c.partials,g.decorators=c.decorators,g.hooks=c.hooks;else{g.helpers=p.extend({},b.helpers,c.helpers),a.usePartial&&(g.partials=p.extend({},b.partials,c.partials)),(a.usePartial||a.useDecorators)&&(g.decorators=p.extend({},b.decorators,c.decorators)),g.hooks={};var d=c.allowCallsToHelperMissing||e;t.moveHelperToHooks(g,"helperMissing",d),t.moveHelperToHooks(g,"blockHelperMissing",d)}},d._child=function(b,c,d,e){if(a.useBlockParams&&!d)throw new r["default"]("must pass block params");if(a.useDepths&&!e)throw new r["default"]("must pass parent depths");return f(g,b,a[b],c,0,d,e)},d}function f(a,b,c,d,e,f,g){function h(b){var e=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],h=g;return!g||b==g[0]||b===a.nullContext&&null===g[0]||(h=[b].concat(g)),c(a,b,a.helpers,a.partials,e.data||d,f&&[e.blockParams].concat(f),h)}return h=k(c,h,a,g,d,f),h.program=b,h.depth=g?g.length:0,h.blockParams=e||0,h}function g(a,b,c){return a?a.call||c.name||(c.name=a,a=c.partials[a]):a="@partial-block"===c.name?c.data["partial-block"]:c.partials[c.name],a}function h(a,b,c){var d=c.data&&c.data["partial-block"];c.partial=!0,c.ids&&(c.data.contextPath=c.ids[0]||c.data.contextPath);var e=void 0;if(c.fn&&c.fn!==i&&!function(){c.data=s.createFrame(c.data);var a=c.fn;e=c.data["partial-block"]=function(b){var c=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];return c.data=s.createFrame(c.data),c.data["partial-block"]=d,a(b,c)},a.partials&&(c.partials=p.extend({},c.partials,a.partials))}(),void 0===a&&e&&(a=e),void 0===a)throw new r["default"]("The partial "+c.name+" could not be found");if(a instanceof Function)return a(b,c)}function i(){return""}function j(a,b){return b&&"root"in b||(b=b?s.createFrame(b):{},b.root=a),b}function k(a,b,c,d,e,f){if(a.decorator){var g={};b=a.decorator(b,g,c,d&&d[0],e,f,d),p.extend(b,g)}return b}var l=c(22)["default"],m=c(1)["default"],n=c(2)["default"];b.__esModule=!0,b.checkRevision=d,b.template=e,b.wrapProgram=f,b.resolvePartial=g,b.invokePartial=h,b.noop=i;var o=c(4),p=m(o),q=c(5),r=n(q),s=c(3),t=c(9)},function(a,b,c){a.exports={"default":c(23),__esModule:!0}},function(a,b,c){c(24),a.exports=c(29).Object.seal},function(a,b,c){var d=c(25);c(26)("seal",function(a){return function(b){return a&&d(b)?a(b):b}})},function(a,b){a.exports=function(a){return"object"==typeof a?null!==a:"function"==typeof a}},function(a,b,c){var d=c(27),e=c(29),f=c(32);a.exports=function(a,b){var c=(e.Object||{})[a]||Object[a],g={};g[a]=b(c),d(d.S+d.F*f(function(){c(1)}),"Object",g)}},function(a,b,c){var d=c(28),e=c(29),f=c(30),g="prototype",h=function(a,b,c){var i,j,k,l=a&h.F,m=a&h.G,n=a&h.S,o=a&h.P,p=a&h.B,q=a&h.W,r=m?e:e[b]||(e[b]={}),s=m?d:n?d[b]:(d[b]||{})[g];m&&(c=b);for(i in c)j=!l&&s&&i in s,j&&i in r||(k=j?s[i]:c[i],r[i]=m&&"function"!=typeof s[i]?c[i]:p&&j?f(k,d):q&&s[i]==k?function(a){var b=function(b){return this instanceof a?new a(b):a(b)};return b[g]=a[g],b}(k):o&&"function"==typeof k?f(Function.call,k):k,o&&((r[g]||(r[g]={}))[i]=k))};h.F=1,h.G=2,h.S=4,h.P=8,h.B=16,h.W=32,a.exports=h},function(a,b){var c=a.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=c)},function(a,b){var c=a.exports={version:"1.2.6"};"number"==typeof __e&&(__e=c)},function(a,b,c){var d=c(31);a.exports=function(a,b,c){if(d(a),void 0===b)return a;switch(c){case 1:return function(c){return a.call(b,c)};case 2:return function(c,d){return a.call(b,c,d)};case 3:return function(c,d,e){return a.call(b,c,d,e)}}return function(){return a.apply(b,arguments)}}},function(a,b){a.exports=function(a){if("function"!=typeof a)throw TypeError(a+" is not a function!");return a}},function(a,b){a.exports=function(a){try{return!!a()}catch(b){return!0}}},function(a,b){(function(c){"use strict";b.__esModule=!0,b["default"]=function(a){var b="undefined"!=typeof c?c:window,d=b.Handlebars;a.noConflict=function(){return b.Handlebars===a&&(b.Handlebars=d),a}},a.exports=b["default"]}).call(b,function(){return this}())}])});
js/{queue-3-0-12.min.js → queue-3-0-13.min.js} RENAMED
File without changes
js/{wpoadmin-3-0-12.min.js → wpoadmin-3-0-13.min.js} RENAMED
File without changes
js/wposmush-3-0-12.min.js DELETED
@@ -1 +0,0 @@
1
- function wpo_parse_json(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 console.log("WPO: JSON re-parse successful"),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 console.log("WPO: JSON re-parse successful"),t}catch(o){throw o}}}throw"WPO: could not parse the JSON"}jQuery(document).ready(function(s){WP_Optimize_Smush=WP_Optimize_Smush()});var WP_Optimize_Smush=function(){function s(){var s=0==x('input[type="checkbox"]:checked',O).length;W.prop("disabled",s),C.prop("disabled",s)}function e(e){var e="undefined"==typeof e||e,o={use_cache:e};console.log("Loading information about uncompressed images."),I.html("..."),U.hide(),g(!0),y("get_ui_update",o,function(e){console.log("Information about uncompressed images loaded."),v(e,_),d(),g(!1),s()})}function o(){x("#wpo_smush_images_grid input:checked").each(function(){image={attachment_id:x(this).val(),blog_id:x(this).data("blog")},R.push(image)}),data={optimization_id:"smush",selected_images:R,smush_options:{compression_server:x("input[name='compression_server']:checked").val(),image_quality:x("#image_quality").val(),lossy_compression:x("#smush-lossy-compression").is(":checked"),back_up_original:x("#smush-backup-original").is(":checked"),preserve_exif:x("#smush-preserve-exif").is(":checked")}},r(),y("process_bulk_smush",data)}function a(){if(x("#wp-optimize-wrap").length){x("#wpo_smush_images_save_options_spinner").show().delay(3e3).fadeOut(),x("#enable_custom_compression").is(":checked")?(image_quality=x("#custom_compression_slider").val(),lossy_compression=image_quality<100):(image_quality=x("#enable_lossy_compression").is(":checked")?90:100,lossy_compression=image_quality<100);var s={compression_server:x("input[name='compression_server']:checked").val(),image_quality:image_quality,lossy_compression:lossy_compression,back_up_original:x("#smush-backup-original").is(":checked"),back_up_delete_after:x("#smush-backup-delete").is(":checked"),back_up_delete_after_days:x("#smush-backup-delete-days").val(),preserve_exif:x("#smush-preserve-exif").is(":checked"),autosmush:x("#smush-automatically").is(":checked"),show_smush_metabox:x("#smush-show-metabox").is(":checked")};y("update_smush_options",s,function(s){x("#wpo_smush_images_save_options_spinner").hide(),s.hasOwnProperty("saved")&&s.saved?(x("#wpo_smush_images_save_options_done").show().delay(3e3).fadeOut(),q.hide()):(x("#wpo_smush_images_save_options_fail").show().delay(3e3).fadeOut(),q.show())})}}function n(){D=!0,Q++,seconds=Q%60+""<10?"0"+Q%60:Q%60,minutes=parseInt(Q/60)+""<10?"0"+parseInt(Q/60):parseInt(Q/60),x("#smush_stats_timer").text(minutes+":"+seconds),t(Q)}function t(s){0==s%3&&m(),0==s%60&&y("process_pending_images",{},function(s){v(s,u)})}function m(s){data={update_ui:!0,use_cache:!1},y("get_ui_update",data,function(s){v(s,u)})}function _(s){if(O.html(""),s&&s.hasOwnProperty("unsmushed_images")){s.unsmushed_images,s.pending_tasks;0==s.unsmushed_images.length&&0==s.pending_tasks&&O.text(wposmush.all_images_compressed).wrapInner("<div class='wpo-fieldgroup'> </div>"),0!=s.pending_tasks&&U.show().find(".red").text(s.pending);var e="post.php?post=",o="&action=edit";for(blog_id in s.unsmushed_images)for(i in s.unsmushed_images[blog_id])s.unsmushed_images[blog_id].hasOwnProperty(i)&&(image=s.unsmushed_images[blog_id][i],p(image,blog_id,s.admin_urls[blog_id]+e+image.id+o))}}function r(){D||(k(x("#wpo_smush_images_information_container")),service=x('.compression_server input[type="radio"]:checked + label small').text(),x("#wpo_smush_images_information_server").html(service),x("#smush_stats_pending_images").html("..."),x("#smush_stats_completed_images").html("..."),x("#smush_stats_bytes_saved").html("..."),x("#smush_stats_percent_saved").html("..."),x("#smush_stats_timer").html("..."),L=window.setInterval(n,1e3),g(!0))}function u(s){x("#smush_stats_pending_images").html(s.pending_tasks),x("#smush_stats_completed_images").html(s.completed_task_count),x("#smush_stats_bytes_saved").html(s.bytes_saved),x("#smush_stats_percent_saved").html(s.percent_saved),1==s.smush_complete&&setTimeout(c,1500)}function c(){data={update_ui:!0,use_cache:!1,image_list:R},y("get_ui_update",data,function(s){summary=s.session_stats,0!=s.completed_task_count&&(summary+="<hr>"+s.summary),l(summary)})}function l(s){X||(x("#summary-message").html(s),h(),k(x("#smush-complete-summary")),X=!0)}function h(){Q=0,D=!1,X=!1,R=[],window.clearInterval(L),g(!1)}function p(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>",O.append(image_html)}function d(){features=wposmush.features,service=x("input[name^='compression_server']:checked").val();for(feature in features[service])x("."+feature).prop("disabled",!features[service][feature]);x(".wpo_smush_image").each(function(){x(this).data("filesize")>wposmush.features[service].max_filesize?x(this).hide():x(this).show()})}function g(s){x.each([W,j,J,q,S,z,C],function(e,o){o.prop("disabled",s)}),s?(x("#wpo_smush_images_refresh").hide(),x(".wpo_smush_images_loader").show()):(x("#wpo_smush_images_refresh").show(),x(".wpo_smush_images_loader").hide())}function f(s,e){0!=s.length&&(data={selected_image:s,smush_options:e},k(wposmush.compress_single_image_dialog),y("compress_single_image",data,function(s){v(s,b)}))}function w(s){0!=s.length&&(k(wposmush.please_wait,x.unblockUI),data={selected_image:s},y("restore_single_image",data,function(s){v(s,b)}))}function b(s){if(s.hasOwnProperty("success")&&s.success)if(x("#smush-information").text(s.summary),k(x("#smush-information-modal"),x.unblockUI),x(".toggle-smush-advanced.wpo_smush_single_image").removeClass("opened"),"compress"==s.operation)x(".wpo_smush_single_image").hide(),x(".wpo_restore_single_image").show(),x("#smush_info").text(s.summary),x(".wpo_smush_mark_single_image").hide(),s.restore_possible?x(".restore_possible").show():x(".restore_possible").hide();else{x(".wpo_smush_single_image").show(),x(".wpo_restore_single_image").hide();x("#smush_info").closest("#smush-metabox-inside-wrapper");x(".wpo_smush_mark_single_image").show()}else x("#smush-information").text(s.error_message),k(x("#smush-information-modal"),x.unblockUI)}function k(s,e){x.blockUI({message:s,onOverlayClick:e,baseZ:160001,css:{width:"400px",padding:"20px",cursor:"pointer"}})}function v(s,e){s&&s.hasOwnProperty("status")&&s.status?e&&e(s):(alert(wposmush.error_unexpected_response),console.log(s))}function y(s,e,o,i){i="undefined"==typeof i||i,e=x.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"};x.ajax(n)}var x=jQuery,O=(x("#wp-optimize-images-nav-tab-smush"),x("#wpo_smush_images_grid")),I=x("#smush_info_images"),U=x("#wpo_smush_images_pending_tasks_container"),z=x("#wpo_smush_images_pending_tasks_button"),P=x("#wpo_smush_images_pending_tasks_cancel_button"),q=x(".wpo-fieldgroup #wpo_smush_images_save_options_button"),S=x("#wpo_smush_images_refresh"),j=x("#wpo_smush_images_select_all"),J=x("#wpo_smush_images_select_none"),N=x("#wpo_smush_clear_stats_btn"),W=x("#wpo_smush_images_btn"),C=x("#wpo_smush_mark_as_compressed"),T=(x(".wpo_smush_single_image .button"),x(".wpo_restore_single_image .button"),x(".wpo_smush_get_logs")),A=x("#wpo_smush_delete_backup_btn"),E=x(".compression_server"),Q=0,D=!1,L=0,R=[],X=!1;x("#wp-optimize-nav-tab-wrapper__wpo_images .nav-tab").on("click",function(){x(this).is("#wp-optimize-nav-tab-wpo_images-smush")&&e()}),x("#wp-optimize-wrap").on("page-change",function(s,o){"wpo_images"==o.page&&x("#wp-optimize-nav-tab-wrapper__wpo_images .nav-tab-active").is("#wp-optimize-nav-tab-wpo_images-smush")&&e()}),x("#smush-metabox").length>0&&d(),O.on("change",'input[type="checkbox"]',function(){s()}),s(),E.on("change",function(s){d(),a()}),W.off().on("click",function(){return 0==x('#wpo_smush_images_grid input[type="checkbox"]:checked').length?(x("#smush-information-modal #smush-information").text(wposmush.please_select_images),void k(x("#smush-information-modal"),x.unblockUI)):(x("#smush-information-modal #smush-information").text(wposmush.server_check),k(x("#smush-information-modal")),data={server:x("input[name='compression_server']:checked").val()},void y("check_server_status",data,function(s){s.online?o():(s.error?(error_message=s.error+"<br>"+wposmush.server_error,x("#smush-information-modal #smush-information").html(error_message)):x("#smush-information-modal #smush-information").text(wposmush.server_error),k(x("#smush-information-modal"),x.unblockUI))}))}),C.off().on("click",function(){if(0==x('#wpo_smush_images_grid input[type="checkbox"]:checked').length)return x("#smush-information-modal #smush-information").text(wposmush.please_select_compressed_images),void k(x("#smush-information-modal"),x.unblockUI);var s,o=[];x("#wpo_smush_images_grid input:checked").each(function(){s={attachment_id:x(this).val(),blog_id:x(this).data("blog")},o.push(s)}),k(wposmush.please_updating_images_info),y("mark_as_compressed",{selected_images:o},function(s){x("#smush-information-modal #smush-information").text(s.summary),k(x("#smush-information-modal"),x.unblockUI),e()})}),S.off().on("click",function(){e()}),j.off().on("click",function(){x('#wpo_smush_images_grid input[type="checkbox"]').prop("checked",!0),s()}),J.off().on("click",function(){x('#wpo_smush_images_grid input[type="checkbox"]').prop("checked",!1),s()}),T.off().on("click",function(){x("#log-panel").text("Please wait, fetching logs."),y("get_smush_logs",{},function(s){x.blockUI({message:x("#smush-log-modal"),onOverlayClick:x.unblockUI(),css:{width:"80%",height:"80%",top:"15%",left:"15%"}}),x("#log-panel").html("<pre>"+s+"</pre>"),download_link=ajaxurl+"?action=updraft_smush_ajax&subaction=get_smush_logs&nonce="+wposmush.smush_ajax_nonce,x("#smush-log-modal a").attr("href",download_link),console.log(download_link)},!1)}),A.on("click",function(){if(confirm(wposmush.delete_image_backup_confirm)){A.prop("disabled",!0);var s=x("#wpo_smush_delete_backup_spinner"),e=x("#wpo_smush_delete_backup_done");s.show(),y("clean_all_backup_images",{},function(){s.hide(),A.prop("disabled",!1),e.css("display","inline-block").delay(3e3).fadeOut()})}}),q.off().on("click",function(s){a()}),N.off().on("click",function(s){x("#wpo_smush_images_clear_stats_spinner").show().delay(3e3).fadeOut(),y("clear_smush_stats",{},function(s){x("#wpo_smush_images_clear_stats_spinner").hide(),x("#wpo_smush_images_clear_stats_done").show().delay(3e3).fadeOut()})}),z.off().on("click",function(s){x("#smush-information-modal #smush-information").text(wposmush.server_check),k(x("#smush-information-modal"),x.unblockUI),data={server:x("input[name='compression_server']:checked").val()},y("check_server_status",data,function(s){s.online?(r(),y("process_pending_images",{},function(s){v(s,u)})):(s.error?(error_message=s.error+"<br>"+wposmush.server_error,x("#smush-information-modal #smush-information").html(error_message)):x("#smush-information-modal #smush-information").text(wposmush.server_error),k(x("#smush-information-modal"),x.unblockUI))})}),P.on("click",function(s){y("clear_pending_images",{},function(s){s.status&&U.delay(3e3).fadeOut()})}),x("body").on("click",".wpo_smush_single_image .button",function(){image={attachment_id:x(this).data("id"),blog_id:x(this).data("blog")},x("#enable_custom_compression").is(":checked")?(image_quality=x("#custom_compression_slider").val(),lossy_compression=image_quality<100):(image_quality=x("#enable_lossy_compression").is(":checked")?90:100,lossy_compression=image_quality<100),smush_options={compression_server:x("input[name='compression_server_"+image.attachment_id+"']:checked").val(),image_quality:image_quality,lossy_compression:lossy_compression,back_up_original:x("#smush_backup_"+image.attachment_id).is(":checked"),preserve_exif:x("#smush_exif_"+image.attachment_id).is(":checked")},console.log("Compressing Image : "+image.attachment_id),data={server:x("input[name='compression_server_"+x(this).attr("id").substring(15)+"']:checked").val()},k(wposmush.server_check),y("check_server_status",data,function(s){s.online?f(image,smush_options):s.error?(error_message=s.error+"<br>"+wposmush.server_error,k(error_message,x.unblockUI)):k(wposmush.server_error,x.unblockUI)})}),x("body").on("click",".wpo_restore_single_image .button",function(){var s=x(this).attr("id");s&&(image_id=s.substring(25),console.log("Restoring Image : "+image_id),w(image_id))}),x("body").on("click",".wpo_smush_mark_single_image .button",function(){var s={attachment_id:x(this).data("id"),blog_id:x(this).data("blog")},e=x(this).closest("#smush-metabox-inside-wrapper");k(wposmush.please_updating_images_info),y("mark_as_compressed",{selected_images:[s]},function(s){x("#smush-information-modal #smush-information").text(s.summary),k(x("#smush-information-modal"),x.unblockUI),s.status&&(x(".wpo_smush_single_image",e).hide(),x(".toggle-smush-advanced",e).removeClass("opened"),x(".wpo_smush_mark_single_image",e).hide(),x(".wpo_smush_unmark_single_image",e).show(),x(".wpo_restore_single_image",e).show(),x("#smush_info",e).text(s.info))})}),x("body").on("click",".wpo_smush_unmark_single_image .button",function(){var s={attachment_id:x(this).data("id"),blog_id:x(this).data("blog")},e=x(this).closest("#smush-metabox-inside-wrapper");k(wposmush.please_updating_images_info),y("mark_as_compressed",{selected_images:[s],unmark:!0},function(s){x("#smush-information-modal #smush-information").text(s.summary),k(x("#smush-information-modal"),x.unblockUI),s.status&&(x(".wpo_smush_single_image",e).show(),x(".wpo_smush_mark_single_image",e).show(),x(".wpo_smush_unmark_single_image",e).hide(),x(".wpo_restore_single_image",e).hide(),x("#smush_info",e).text(""))})}),x("body").on("click","#smush-log-modal .close, #smush-information-modal .information-modal-close",function(){x.unblockUI()}),x("body").on("click",".wpo_smush_stats_cta_btn, .wpo_smush_get_logs, #smush-complete-summary .close",function(){x.unblockUI(),e(),setTimeout(h,500)}),x("body").on("click",".toggle-smush-advanced",function(s){s.preventDefault(),x(this).toggleClass("opened")}),x(".wpo-fieldgroup .autosmush input, .wpo-fieldgroup .compression_level, .wpo-fieldgroup .image_options, #smush-show-metabox").on("change",function(s){a()}),x("body").on("change",".smush-options.compression_level",function(){x("#enable_custom_compression").is(":checked")?x(".smush-options.custom_compression").show():x(".smush-options.custom_compression").hide()}),x("body").on("change",'.smush-advanced input[type="radio"]',function(){d()})};
 
js/wposmush-3-0-13.min.js ADDED
@@ -0,0 +1 @@
 
1
+ function wpo_parse_json(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 console.log("WPO: JSON re-parse successful"),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 console.log("WPO: JSON re-parse successful"),t}catch(o){throw o}}}throw"WPO: could not parse the JSON"}jQuery(document).ready(function(s){WP_Optimize_Smush=WP_Optimize_Smush()});var WP_Optimize_Smush=function(){function s(){var s=0==x('input[type="checkbox"]:checked',O).length;N.prop("disabled",s),W.prop("disabled",s)}function e(e){var e="undefined"==typeof e||e,o={use_cache:e};console.log("Loading information about uncompressed images."),I.html("..."),U.hide(),g(!0),y("get_ui_update",o,function(e){console.log("Information about uncompressed images loaded."),v(e,_),d(),g(!1),s()})}function o(){x("#wpo_smush_images_grid input:checked").each(function(){image={attachment_id:x(this).val(),blog_id:x(this).data("blog")},L.push(image)}),data={optimization_id:"smush",selected_images:L,smush_options:{compression_server:x("input[name='compression_server']:checked").val(),image_quality:x("#image_quality").val(),lossy_compression:x("#smush-lossy-compression").is(":checked"),back_up_original:x("#smush-backup-original").is(":checked"),preserve_exif:x("#smush-preserve-exif").is(":checked")}},r(),y("process_bulk_smush",data)}function a(){if(x("#wp-optimize-wrap").length){x("#wpo_smush_images_save_options_spinner").show().delay(3e3).fadeOut(),x("#enable_custom_compression").is(":checked")?(image_quality=x("#custom_compression_slider").val(),lossy_compression=image_quality<100):(image_quality=x("#enable_lossy_compression").is(":checked")?90:100,lossy_compression=image_quality<100);var s={compression_server:x("input[name='compression_server']:checked").val(),image_quality:image_quality,lossy_compression:lossy_compression,back_up_original:x("#smush-backup-original").is(":checked"),back_up_delete_after:x("#smush-backup-delete").is(":checked"),back_up_delete_after_days:x("#smush-backup-delete-days").val(),preserve_exif:x("#smush-preserve-exif").is(":checked"),autosmush:x("#smush-automatically").is(":checked"),show_smush_metabox:x("#smush-show-metabox").is(":checked")};y("update_smush_options",s,function(s){x("#wpo_smush_images_save_options_spinner").hide(),s.hasOwnProperty("saved")&&s.saved?(x("#wpo_smush_images_save_options_done").show().delay(3e3).fadeOut(),P.hide()):(x("#wpo_smush_images_save_options_fail").show().delay(3e3).fadeOut(),P.show())})}}function n(){Q=!0,E++,seconds=E%60+""<10?"0"+E%60:E%60,minutes=parseInt(E/60)+""<10?"0"+parseInt(E/60):parseInt(E/60),x("#smush_stats_timer").text(minutes+":"+seconds),t(E)}function t(s){0==s%3&&m(),0==s%60&&y("process_pending_images",{},function(s){v(s,u)})}function m(s){data={update_ui:!0,use_cache:!1},y("get_ui_update",data,function(s){v(s,u)})}function _(s){if(O.html(""),s&&s.hasOwnProperty("unsmushed_images")){s.unsmushed_images,s.pending_tasks;0==s.unsmushed_images.length&&0==s.pending_tasks&&O.text(wposmush.all_images_compressed).wrapInner("<div class='wpo-fieldgroup'> </div>"),0!=s.pending_tasks&&U.show().find(".red").text(s.pending);var e="post.php?post=",o="&action=edit";for(blog_id in s.unsmushed_images)for(i in s.unsmushed_images[blog_id])s.unsmushed_images[blog_id].hasOwnProperty(i)&&(image=s.unsmushed_images[blog_id][i],p(image,blog_id,s.admin_urls[blog_id]+e+image.id+o))}}function r(){Q||(k(x("#wpo_smush_images_information_container")),service=x('.compression_server input[type="radio"]:checked + label small').text(),x("#wpo_smush_images_information_server").html(service),x("#smush_stats_pending_images").html("..."),x("#smush_stats_completed_images").html("..."),x("#smush_stats_bytes_saved").html("..."),x("#smush_stats_percent_saved").html("..."),x("#smush_stats_timer").html("..."),D=window.setInterval(n,1e3),g(!0))}function u(s){x("#smush_stats_pending_images").html(s.pending_tasks),x("#smush_stats_completed_images").html(s.completed_task_count),x("#smush_stats_bytes_saved").html(s.bytes_saved),x("#smush_stats_percent_saved").html(s.percent_saved),1==s.smush_complete&&setTimeout(c,1500)}function c(){data={update_ui:!0,use_cache:!1,image_list:L},y("get_ui_update",data,function(s){summary=s.session_stats,0!=s.completed_task_count&&(summary+="<hr>"+s.summary),l(summary)})}function l(s){R||(x("#summary-message").html(s),h(),k(x("#smush-complete-summary")),R=!0)}function h(){E=0,Q=!1,R=!1,L=[],window.clearInterval(D),g(!1)}function p(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>",O.append(image_html)}function d(){features=wposmush.features,service=x("input[name^='compression_server']:checked").val();for(feature in features[service])x("."+feature).prop("disabled",!features[service][feature]);x(".wpo_smush_image").each(function(){x(this).data("filesize")>wposmush.features[service].max_filesize?x(this).hide():x(this).show()})}function g(s){x.each([N,S,j,P,q,z,W],function(e,o){o.prop("disabled",s)}),s?(x("#wpo_smush_images_refresh").hide(),x(".wpo_smush_images_loader").show()):(x("#wpo_smush_images_refresh").show(),x(".wpo_smush_images_loader").hide())}function f(s,e){0!=s.length&&(data={selected_image:s,smush_options:e},k(wposmush.compress_single_image_dialog),y("compress_single_image",data,function(s){v(s,b)}))}function w(s){0!=s.length&&(k(wposmush.please_wait,x.unblockUI),data={selected_image:s},y("restore_single_image",data,function(s){v(s,b)}))}function b(s){if(s.hasOwnProperty("success")&&s.success)if(x("#smush-information").text(s.summary),k(x("#smush-information-modal"),x.unblockUI),x(".toggle-smush-advanced.wpo_smush_single_image").removeClass("opened"),"compress"==s.operation)x(".wpo_smush_single_image").hide(),x(".wpo_restore_single_image").show(),x("#smush_info").text(s.summary),x(".wpo_smush_mark_single_image").hide(),s.restore_possible?x(".restore_possible").show():x(".restore_possible").hide();else{x(".wpo_smush_single_image").show(),x(".wpo_restore_single_image").hide();x("#smush_info").closest("#smush-metabox-inside-wrapper");x(".wpo_smush_mark_single_image").show()}else x("#smush-information").text(s.error_message),k(x("#smush-information-modal"),x.unblockUI)}function k(s,e){x.blockUI({message:s,onOverlayClick:e,baseZ:160001,css:{width:"400px",padding:"20px",cursor:"pointer"}})}function v(s,e){s&&s.hasOwnProperty("status")&&s.status?e&&e(s):(alert(wposmush.error_unexpected_response),console.log(s))}function y(s,e,o,i){i="undefined"==typeof i||i,e=x.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"};x.ajax(n)}var x=jQuery,O=(x("#wp-optimize-images-nav-tab-smush"),x("#wpo_smush_images_grid")),I=x("#smush_info_images"),U=x("#wpo_smush_images_pending_tasks_container"),z=x("#wpo_smush_images_pending_tasks_button"),P=x(".wpo-fieldgroup #wpo_smush_images_save_options_button"),q=x("#wpo_smush_images_refresh"),S=x("#wpo_smush_images_select_all"),j=x("#wpo_smush_images_select_none"),J=x("#wpo_smush_clear_stats_btn"),N=x("#wpo_smush_images_btn"),W=x("#wpo_smush_mark_as_compressed"),C=(x(".wpo_smush_single_image .button"),x(".wpo_restore_single_image .button"),x(".wpo_smush_get_logs")),T=x("#wpo_smush_delete_backup_btn"),A=x(".compression_server"),E=0,Q=!1,D=0,L=[],R=!1;x("#wp-optimize-nav-tab-wrapper__wpo_images .nav-tab").on("click",function(){x(this).is("#wp-optimize-nav-tab-wpo_images-smush")&&e()}),x("#wp-optimize-wrap").on("page-change",function(s,o){"wpo_images"==o.page&&x("#wp-optimize-nav-tab-wrapper__wpo_images .nav-tab-active").is("#wp-optimize-nav-tab-wpo_images-smush")&&e()}),x("#smush-metabox").length>0&&d(),O.on("change",'input[type="checkbox"]',function(){s()}),s(),A.on("change",function(s){d(),a()}),N.off().on("click",function(){return 0==x('#wpo_smush_images_grid input[type="checkbox"]:checked').length?(x("#smush-information-modal #smush-information").text(wposmush.please_select_images),void k(x("#smush-information-modal"),x.unblockUI)):(x("#smush-information-modal #smush-information").text(wposmush.server_check),k(x("#smush-information-modal")),data={server:x("input[name='compression_server']:checked").val()},void y("check_server_status",data,function(s){s.online?o():(s.error?(error_message=s.error+"<br>"+wposmush.server_error,x("#smush-information-modal #smush-information").html(error_message)):x("#smush-information-modal #smush-information").text(wposmush.server_error),k(x("#smush-information-modal"),x.unblockUI))}))}),W.off().on("click",function(){if(0==x('#wpo_smush_images_grid input[type="checkbox"]:checked').length)return x("#smush-information-modal #smush-information").text(wposmush.please_select_compressed_images),void k(x("#smush-information-modal"),x.unblockUI);var s,o=[];x("#wpo_smush_images_grid input:checked").each(function(){s={attachment_id:x(this).val(),blog_id:x(this).data("blog")},o.push(s)}),k(wposmush.please_updating_images_info),y("mark_as_compressed",{selected_images:o},function(s){x("#smush-information-modal #smush-information").text(s.summary),k(x("#smush-information-modal"),x.unblockUI),e()})}),q.off().on("click",function(){e()}),S.off().on("click",function(){x('#wpo_smush_images_grid input[type="checkbox"]').prop("checked",!0),s()}),j.off().on("click",function(){x('#wpo_smush_images_grid input[type="checkbox"]').prop("checked",!1),s()}),C.off().on("click",function(){x("#log-panel").text("Please wait, fetching logs."),y("get_smush_logs",{},function(s){x.blockUI({message:x("#smush-log-modal"),onOverlayClick:x.unblockUI(),css:{width:"80%",height:"80%",top:"15%",left:"15%"}}),x("#log-panel").html("<pre>"+s+"</pre>"),download_link=ajaxurl+"?action=updraft_smush_ajax&subaction=get_smush_logs&nonce="+wposmush.smush_ajax_nonce,x("#smush-log-modal a").attr("href",download_link),console.log(download_link)},!1)}),T.on("click",function(){if(confirm(wposmush.delete_image_backup_confirm)){T.prop("disabled",!0);var s=x("#wpo_smush_delete_backup_spinner"),e=x("#wpo_smush_delete_backup_done");s.show(),y("clean_all_backup_images",{},function(){s.hide(),T.prop("disabled",!1),e.css("display","inline-block").delay(3e3).fadeOut()})}}),P.off().on("click",function(s){a()}),J.off().on("click",function(s){x("#wpo_smush_images_clear_stats_spinner").show().delay(3e3).fadeOut(),y("clear_smush_stats",{},function(s){x("#wpo_smush_images_clear_stats_spinner").hide(),x("#wpo_smush_images_clear_stats_done").show().delay(3e3).fadeOut()})}),z.off().on("click",function(s){x("#smush-information-modal #smush-information").text(wposmush.server_check),k(x("#smush-information-modal"),x.unblockUI),data={server:x("input[name='compression_server']:checked").val()},y("check_server_status",data,function(s){s.online?(r(),y("process_pending_images",{},function(s){v(s,u)})):(s.error?(error_message=s.error+"<br>"+wposmush.server_error,x("#smush-information-modal #smush-information").html(error_message)):x("#smush-information-modal #smush-information").text(wposmush.server_error),k(x("#smush-information-modal"),x.unblockUI))})}),x("body").on("click","#wpo_smush_images_pending_tasks_cancel_button",function(s){y("clear_pending_images",{},function(s){x.unblockUI(),s.status?(e(),h()):console.log("Cancelling pending images apparently failed.",s)})}),x("body").on("click",".wpo_smush_single_image .button",function(){image={attachment_id:x(this).data("id"),blog_id:x(this).data("blog")},x("#enable_custom_compression").is(":checked")?(image_quality=x("#custom_compression_slider").val(),lossy_compression=image_quality<100):(image_quality=x("#enable_lossy_compression").is(":checked")?90:100,lossy_compression=image_quality<100),smush_options={compression_server:x("input[name='compression_server_"+image.attachment_id+"']:checked").val(),image_quality:image_quality,lossy_compression:lossy_compression,back_up_original:x("#smush_backup_"+image.attachment_id).is(":checked"),preserve_exif:x("#smush_exif_"+image.attachment_id).is(":checked")},console.log("Compressing Image : "+image.attachment_id),data={server:x("input[name='compression_server_"+x(this).attr("id").substring(15)+"']:checked").val()},k(wposmush.server_check),y("check_server_status",data,function(s){s.online?f(image,smush_options):s.error?(error_message=s.error+"<br>"+wposmush.server_error,k(error_message,x.unblockUI)):k(wposmush.server_error,x.unblockUI)})}),x("body").on("click",".wpo_restore_single_image .button",function(){var s=x(this).attr("id");s&&(image_id=s.substring(25),console.log("Restoring Image : "+image_id),w(image_id))}),x("body").on("click",".wpo_smush_mark_single_image .button",function(){var s={attachment_id:x(this).data("id"),blog_id:x(this).data("blog")},e=x(this).closest("#smush-metabox-inside-wrapper");k(wposmush.please_updating_images_info),y("mark_as_compressed",{selected_images:[s]},function(s){x("#smush-information-modal #smush-information").text(s.summary),k(x("#smush-information-modal"),x.unblockUI),s.status&&(x(".wpo_smush_single_image",e).hide(),x(".toggle-smush-advanced",e).removeClass("opened"),x(".wpo_smush_mark_single_image",e).hide(),x(".wpo_smush_unmark_single_image",e).show(),x(".wpo_restore_single_image",e).show(),x("#smush_info",e).text(s.info))})}),x("body").on("click",".wpo_smush_unmark_single_image .button",function(){var s={attachment_id:x(this).data("id"),blog_id:x(this).data("blog")},e=x(this).closest("#smush-metabox-inside-wrapper");k(wposmush.please_updating_images_info),y("mark_as_compressed",{selected_images:[s],unmark:!0},function(s){x("#smush-information-modal #smush-information").text(s.summary),k(x("#smush-information-modal"),x.unblockUI),s.status&&(x(".wpo_smush_single_image",e).show(),x(".wpo_smush_mark_single_image",e).show(),x(".wpo_smush_unmark_single_image",e).hide(),x(".wpo_restore_single_image",e).hide(),x("#smush_info",e).text(""))})}),x("body").on("click","#smush-log-modal .close, #smush-information-modal .information-modal-close",function(){x.unblockUI()}),x("body").on("click",".wpo_smush_stats_cta_btn, .wpo_smush_get_logs, #smush-complete-summary .close",function(){x.unblockUI(),e(),setTimeout(h,500)}),x("body").on("click",".toggle-smush-advanced",function(s){s.preventDefault(),x(this).toggleClass("opened")}),x(".wpo-fieldgroup .autosmush input, .wpo-fieldgroup .compression_level, .wpo-fieldgroup .image_options, #smush-show-metabox").on("change",function(s){a()}),x("body").on("change",".smush-options.compression_level",function(){x("#enable_custom_compression").is(":checked")?x(".smush-options.custom_compression").show():x(".smush-options.custom_compression").hide()}),x("body").on("change",'.smush-advanced input[type="radio"]',function(){d()})};
js/wposmush.js CHANGED
@@ -14,7 +14,6 @@ var WP_Optimize_Smush = function() {
14
  smush_images_optimization_message = $('#smush_info_images'),
15
  smush_images_pending_tasks_container = $('#wpo_smush_images_pending_tasks_container'),
16
  smush_images_pending_tasks_btn = $('#wpo_smush_images_pending_tasks_button'),
17
- smush_images_pending_tasks_cancel_btn = $('#wpo_smush_images_pending_tasks_cancel_button'),
18
  smush_images_save_options_btn = $('.wpo-fieldgroup #wpo_smush_images_save_options_button'),
19
  smush_images_refresh_btn = $('#wpo_smush_images_refresh'),
20
  smush_images_select_all_btn = $('#wpo_smush_images_select_all'),
@@ -258,12 +257,17 @@ var WP_Optimize_Smush = function() {
258
 
259
 
260
  /**
261
- * Binds pending tasks cancel button
262
  */
263
- smush_images_pending_tasks_cancel_btn.on('click', function(e) {
 
264
  smush_manager_send_command('clear_pending_images', {}, function(resp) {
 
265
  if (resp.status) {
266
- smush_images_pending_tasks_container.delay(3000).fadeOut();
 
 
 
267
  }
268
  });
269
  });
14
  smush_images_optimization_message = $('#smush_info_images'),
15
  smush_images_pending_tasks_container = $('#wpo_smush_images_pending_tasks_container'),
16
  smush_images_pending_tasks_btn = $('#wpo_smush_images_pending_tasks_button'),
 
17
  smush_images_save_options_btn = $('.wpo-fieldgroup #wpo_smush_images_save_options_button'),
18
  smush_images_refresh_btn = $('#wpo_smush_images_refresh'),
19
  smush_images_select_all_btn = $('#wpo_smush_images_select_all'),
257
 
258
 
259
  /**
260
+ * Binds smush cancel button
261
  */
262
+ $('body').on('click', '#wpo_smush_images_pending_tasks_cancel_button', function(e) {
263
+
264
  smush_manager_send_command('clear_pending_images', {}, function(resp) {
265
+ $.unblockUI();
266
  if (resp.status) {
267
+ get_info_from_smush_manager();
268
+ reset_view_bulk_smush();
269
+ } else {
270
+ console.log('Cancelling pending images apparently failed.', resp);
271
  }
272
  });
273
  });
languages/wp-optimize.pot CHANGED
@@ -45,14 +45,38 @@ msgid_plural "%d urls found."
45
  msgstr[0] ""
46
  msgstr[1] ""
47
 
48
- #: src/cache/class-wpo-page-cache.php:147
49
- msgid "Purge from cache"
 
 
 
 
 
 
 
 
50
  msgstr ""
51
 
52
- #: src/cache/class-wpo-page-cache.php:184, src/cache/class-wpo-page-cache.php:191
 
 
 
 
53
  msgid "The page cache was successfully purged."
54
  msgstr ""
55
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  #: src/cache/file-based-page-cache-functions.php:29
57
  msgid "Output is too small (less than %d bytes) to be worth cacheing"
58
  msgstr ""
@@ -201,59 +225,59 @@ msgstr ""
201
  msgid "Could not copy file, check your PHP error logs for details"
202
  msgstr ""
203
 
204
- #: src/includes/class-updraft-smush-manager.php:488
205
  msgid "No uncompressed images were found."
206
  msgstr ""
207
 
208
- #: src/includes/class-updraft-smush-manager.php:489
209
  msgid "An unexpected response was received from the server. More information has been logged in the browser console."
210
  msgstr ""
211
 
212
- #: src/includes/class-updraft-smush-manager.php:490
213
  msgid "Please wait: compressing the selected image."
214
  msgstr ""
215
 
216
- #: src/includes/class-updraft-smush-manager.php:491
217
  msgid "Please try again later."
218
  msgstr ""
219
 
220
- #: src/includes/class-updraft-smush-manager.php:492
221
  msgid "Connecting to the Smush API server, please wait"
222
  msgstr ""
223
 
224
- #: src/includes/class-updraft-smush-manager.php:493
225
  msgid "Please wait while the request is being processed"
226
  msgstr ""
227
 
228
- #: src/includes/class-updraft-smush-manager.php:494
229
  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."
230
  msgstr ""
231
 
232
- #: src/includes/class-updraft-smush-manager.php:495
233
  msgid "Please select the images you want compressed from the \"Uncompressed images\" panel first"
234
  msgstr ""
235
 
236
- #: src/includes/class-updraft-smush-manager.php:496
237
  msgid "Please wait: updating information about the selected image."
238
  msgstr ""
239
 
240
- #: src/includes/class-updraft-smush-manager.php:497
241
  msgid "Please select the images you want to mark as already compressed from the \"Uncompressed images\" panel first"
242
  msgstr ""
243
 
244
- #: src/includes/class-updraft-smush-manager.php:498
245
  msgid "View Image"
246
  msgstr ""
247
 
248
- #: src/includes/class-updraft-smush-manager.php:499
249
  msgid "Do you really want to delete all backup images now? This action is irreversible."
250
  msgstr ""
251
 
252
- #: src/includes/class-updraft-smush-manager.php:516
253
  msgid "Compress Image"
254
  msgstr ""
255
 
256
- #: src/includes/class-updraft-smush-manager.php:1179
257
  msgid "Compress image"
258
  msgstr ""
259
 
@@ -349,7 +373,7 @@ msgstr ""
349
  msgid "No such optimization"
350
  msgstr ""
351
 
352
- #: src/includes/class-wp-optimizer.php:364, src/includes/wp-optimize-database-information.php:407, src/includes/wp-optimize-database-information.php:455, src/templates/database/tables-body.php:34
353
  msgid "WordPress core"
354
  msgstr ""
355
 
@@ -1065,7 +1089,7 @@ msgstr ""
1065
  msgid "Update"
1066
  msgstr ""
1067
 
1068
- #: src/templates/cache/browser-cache.php:32, src/templates/cache/gzip-compression.php:36, src/templates/settings/settings-trackback-and-comments.php:13, src/templates/settings/settings-trackback-and-comments.php:29, src/wp-optimize.php:954
1069
  msgid "Enable"
1070
  msgstr ""
1071
 
@@ -1089,31 +1113,31 @@ msgstr ""
1089
  msgid "Gzip compression settings"
1090
  msgstr ""
1091
 
1092
- #: src/templates/cache/gzip-compression.php:11
1093
- msgid "Gzip compression has been enabled by something other than WP-Optimize."
1094
  msgstr ""
1095
 
1096
- #: src/templates/cache/gzip-compression.php:18
1097
- msgid "This option improves the performance of your website and decreases its loading time. When a visitor makes a request, the server compresses the requested resource before sending it leading to smaller file sizes and faster loading."
1098
  msgstr ""
1099
 
1100
- #: src/templates/cache/gzip-compression.php:23
1101
  msgid "Gzip compression is currently ENABLED."
1102
  msgstr ""
1103
 
1104
- #: src/templates/cache/gzip-compression.php:24
1105
  msgid "Gzip compression is currently DISABLED."
1106
  msgstr ""
1107
 
1108
- #: src/templates/cache/gzip-compression.php:26
1109
  msgid "Press this to see if any changes were made to your Gzip configuration"
1110
  msgstr ""
1111
 
1112
- #: src/templates/cache/gzip-compression.php:26
1113
  msgid "Check status again"
1114
  msgstr ""
1115
 
1116
- #: src/templates/cache/gzip-compression.php:36, src/templates/settings/settings-trackback-and-comments.php:15, src/templates/settings/settings-trackback-and-comments.php:31, src/wp-optimize.php:955
1117
  msgid "Disable"
1118
  msgstr ""
1119
 
@@ -1257,10 +1281,6 @@ msgstr ""
1257
  msgid "Purge the cache"
1258
  msgstr ""
1259
 
1260
- #: src/templates/cache/page-cache.php:43
1261
- msgid "Purge cache"
1262
- msgstr ""
1263
-
1264
  #: src/templates/cache/page-cache.php:48
1265
  msgid "Deletes the entire cache contents but keeps the page cache enabled."
1266
  msgstr ""
@@ -1447,7 +1467,7 @@ msgstr ""
1447
  msgid "Follow this link to read more about lazy-loading images and video"
1448
  msgstr ""
1449
 
1450
- #: src/templates/images/lazyload.php:22, src/wp-optimize.php:1238, src/wp-optimize.php:1239
1451
  msgid "Images"
1452
  msgstr ""
1453
 
@@ -2339,7 +2359,7 @@ msgstr ""
2339
  msgid "Static file headers"
2340
  msgstr ""
2341
 
2342
- #: src/wp-optimize.php:598, src/wp-optimize.php:1043, src/wp-optimize.php:1261, src/wp-optimize.php:1262
2343
  msgid "Settings"
2344
  msgstr ""
2345
 
@@ -2431,94 +2451,94 @@ msgstr ""
2431
  msgid "Remove"
2432
  msgstr ""
2433
 
2434
- #: src/wp-optimize.php:1189
2435
  msgid "Warning"
2436
  msgstr ""
2437
 
2438
- #: src/wp-optimize.php:1189
2439
  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."
2440
  msgstr ""
2441
 
2442
- #: src/wp-optimize.php:1189
2443
  msgid "Read this page for a guide to possible causes and how to fix it."
2444
  msgstr ""
2445
 
2446
- #: src/wp-optimize.php:1229, src/wp-optimize.php:1230
2447
  msgid "Database"
2448
  msgstr ""
2449
 
2450
- #: src/wp-optimize.php:1247, src/wp-optimize.php:1248
2451
  msgid "Cache"
2452
  msgstr ""
2453
 
2454
- #: src/wp-optimize.php:1270
2455
  msgid "Support & FAQs"
2456
  msgstr ""
2457
 
2458
- #: src/wp-optimize.php:1271
2459
  msgid "Help"
2460
  msgstr ""
2461
 
2462
- #: src/wp-optimize.php:1279, src/wp-optimize.php:1280
2463
  msgid "Premium Upgrade"
2464
  msgstr ""
2465
 
2466
- #: src/wp-optimize.php:1351
2467
  msgid "Error:"
2468
  msgstr ""
2469
 
2470
- #: src/wp-optimize.php:1351
2471
  msgid "template not found"
2472
  msgstr ""
2473
 
2474
- #: src/wp-optimize.php:1403
2475
  msgid "Automatic Operation Completed"
2476
  msgstr ""
2477
 
2478
- #: src/wp-optimize.php:1405
2479
  msgid "Scheduled optimization was executed at"
2480
  msgstr ""
2481
 
2482
- #: src/wp-optimize.php:1406
2483
  msgid "You can safely delete this email."
2484
  msgstr ""
2485
 
2486
- #: src/wp-optimize.php:1408
2487
  msgid "Regards,"
2488
  msgstr ""
2489
 
2490
- #: src/wp-optimize.php:1409
2491
  msgid "WP-Optimize Plugin"
2492
  msgstr ""
2493
 
2494
- #: src/wp-optimize.php:1435
2495
  msgid "GB"
2496
  msgstr ""
2497
 
2498
- #: src/wp-optimize.php:1437
2499
  msgid "MB"
2500
  msgstr ""
2501
 
2502
- #: src/wp-optimize.php:1439
2503
  msgid "KB"
2504
  msgstr ""
2505
 
2506
- #: src/wp-optimize.php:1441
2507
  msgid "bytes"
2508
  msgstr ""
2509
 
2510
- #: src/wp-optimize.php:1750
2511
  msgid "You have no permissions to run optimizations."
2512
  msgstr ""
2513
 
2514
- #: src/wp-optimize.php:1757
2515
  msgid "You have no permissions to manage WP-Optimize settings."
2516
  msgstr ""
2517
 
2518
- #: src/wp-optimize.php:1970
2519
  msgid "Only Network Administrator can activate WP-Optimize plugin."
2520
  msgstr ""
2521
 
2522
- #: src/wp-optimize.php:1971
2523
  msgid "go back"
2524
  msgstr ""
45
  msgstr[0] ""
46
  msgstr[1] ""
47
 
48
+ #: src/cache/class-wpo-page-cache.php:146, src/cache/class-wpo-page-cache.php:149, src/templates/cache/page-cache.php:43
49
+ msgid "Purge cache"
50
+ msgstr ""
51
+
52
+ #: src/cache/class-wpo-page-cache.php:156, src/cache/class-wpo-page-cache.php:159
53
+ msgid "Purge this page"
54
+ msgstr ""
55
+
56
+ #: src/cache/class-wpo-page-cache.php:166, src/cache/class-wpo-page-cache.php:169
57
+ msgid "Purge all pages"
58
  msgstr ""
59
 
60
+ #: src/cache/class-wpo-page-cache.php:176, src/cache/class-wpo-page-cache.php:179
61
+ msgid "Purge all cache"
62
+ msgstr ""
63
+
64
+ #: src/cache/class-wpo-page-cache.php:233
65
  msgid "The page cache was successfully purged."
66
  msgstr ""
67
 
68
+ #: src/cache/class-wpo-page-cache.php:240
69
+ msgid "The page cache was not purged."
70
+ msgstr ""
71
+
72
+ #: src/cache/class-wpo-page-cache.php:247
73
+ msgid "All pages cache was successfully purged."
74
+ msgstr ""
75
+
76
+ #: src/cache/class-wpo-page-cache.php:254
77
+ msgid "All pages cache was not purged."
78
+ msgstr ""
79
+
80
  #: src/cache/file-based-page-cache-functions.php:29
81
  msgid "Output is too small (less than %d bytes) to be worth cacheing"
82
  msgstr ""
225
  msgid "Could not copy file, check your PHP error logs for details"
226
  msgstr ""
227
 
228
+ #: src/includes/class-updraft-smush-manager.php:487
229
  msgid "No uncompressed images were found."
230
  msgstr ""
231
 
232
+ #: src/includes/class-updraft-smush-manager.php:488
233
  msgid "An unexpected response was received from the server. More information has been logged in the browser console."
234
  msgstr ""
235
 
236
+ #: src/includes/class-updraft-smush-manager.php:489
237
  msgid "Please wait: compressing the selected image."
238
  msgstr ""
239
 
240
+ #: src/includes/class-updraft-smush-manager.php:490
241
  msgid "Please try again later."
242
  msgstr ""
243
 
244
+ #: src/includes/class-updraft-smush-manager.php:491
245
  msgid "Connecting to the Smush API server, please wait"
246
  msgstr ""
247
 
248
+ #: src/includes/class-updraft-smush-manager.php:492
249
  msgid "Please wait while the request is being processed"
250
  msgstr ""
251
 
252
+ #: src/includes/class-updraft-smush-manager.php:493
253
  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."
254
  msgstr ""
255
 
256
+ #: src/includes/class-updraft-smush-manager.php:494
257
  msgid "Please select the images you want compressed from the \"Uncompressed images\" panel first"
258
  msgstr ""
259
 
260
+ #: src/includes/class-updraft-smush-manager.php:495
261
  msgid "Please wait: updating information about the selected image."
262
  msgstr ""
263
 
264
+ #: src/includes/class-updraft-smush-manager.php:496
265
  msgid "Please select the images you want to mark as already compressed from the \"Uncompressed images\" panel first"
266
  msgstr ""
267
 
268
+ #: src/includes/class-updraft-smush-manager.php:497
269
  msgid "View Image"
270
  msgstr ""
271
 
272
+ #: src/includes/class-updraft-smush-manager.php:498
273
  msgid "Do you really want to delete all backup images now? This action is irreversible."
274
  msgstr ""
275
 
276
+ #: src/includes/class-updraft-smush-manager.php:515
277
  msgid "Compress Image"
278
  msgstr ""
279
 
280
+ #: src/includes/class-updraft-smush-manager.php:1178
281
  msgid "Compress image"
282
  msgstr ""
283
 
373
  msgid "No such optimization"
374
  msgstr ""
375
 
376
+ #: src/includes/class-wp-optimizer.php:364, src/includes/wp-optimize-database-information.php:409, src/includes/wp-optimize-database-information.php:457, src/templates/database/tables-body.php:34
377
  msgid "WordPress core"
378
  msgstr ""
379
 
1089
  msgid "Update"
1090
  msgstr ""
1091
 
1092
+ #: src/templates/cache/browser-cache.php:32, src/templates/cache/gzip-compression.php:32, src/templates/settings/settings-trackback-and-comments.php:13, src/templates/settings/settings-trackback-and-comments.php:29, src/wp-optimize.php:954
1093
  msgid "Enable"
1094
  msgstr ""
1095
 
1113
  msgid "Gzip compression settings"
1114
  msgstr ""
1115
 
1116
+ #: src/templates/cache/gzip-compression.php:7
1117
+ msgid "This option improves the performance of your website and decreases its loading time. When a visitor makes a request, the server compresses the requested resource before sending it leading to smaller file sizes and faster loading."
1118
  msgstr ""
1119
 
1120
+ #: src/templates/cache/gzip-compression.php:14
1121
+ msgid "Gzip compression is already enabled."
1122
  msgstr ""
1123
 
1124
+ #: src/templates/cache/gzip-compression.php:19
1125
  msgid "Gzip compression is currently ENABLED."
1126
  msgstr ""
1127
 
1128
+ #: src/templates/cache/gzip-compression.php:20
1129
  msgid "Gzip compression is currently DISABLED."
1130
  msgstr ""
1131
 
1132
+ #: src/templates/cache/gzip-compression.php:22
1133
  msgid "Press this to see if any changes were made to your Gzip configuration"
1134
  msgstr ""
1135
 
1136
+ #: src/templates/cache/gzip-compression.php:22
1137
  msgid "Check status again"
1138
  msgstr ""
1139
 
1140
+ #: src/templates/cache/gzip-compression.php:32, src/templates/settings/settings-trackback-and-comments.php:15, src/templates/settings/settings-trackback-and-comments.php:31, src/wp-optimize.php:955
1141
  msgid "Disable"
1142
  msgstr ""
1143
 
1281
  msgid "Purge the cache"
1282
  msgstr ""
1283
 
 
 
 
 
1284
  #: src/templates/cache/page-cache.php:48
1285
  msgid "Deletes the entire cache contents but keeps the page cache enabled."
1286
  msgstr ""
1467
  msgid "Follow this link to read more about lazy-loading images and video"
1468
  msgstr ""
1469
 
1470
+ #: src/templates/images/lazyload.php:22, src/wp-optimize.php:1246, src/wp-optimize.php:1247
1471
  msgid "Images"
1472
  msgstr ""
1473
 
2359
  msgid "Static file headers"
2360
  msgstr ""
2361
 
2362
+ #: src/wp-optimize.php:598, src/wp-optimize.php:1043, src/wp-optimize.php:1269, src/wp-optimize.php:1270
2363
  msgid "Settings"
2364
  msgstr ""
2365
 
2451
  msgid "Remove"
2452
  msgstr ""
2453
 
2454
+ #: src/wp-optimize.php:1197
2455
  msgid "Warning"
2456
  msgstr ""
2457
 
2458
+ #: src/wp-optimize.php:1197
2459
  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."
2460
  msgstr ""
2461
 
2462
+ #: src/wp-optimize.php:1197
2463
  msgid "Read this page for a guide to possible causes and how to fix it."
2464
  msgstr ""
2465
 
2466
+ #: src/wp-optimize.php:1237, src/wp-optimize.php:1238
2467
  msgid "Database"
2468
  msgstr ""
2469
 
2470
+ #: src/wp-optimize.php:1255, src/wp-optimize.php:1256
2471
  msgid "Cache"
2472
  msgstr ""
2473
 
2474
+ #: src/wp-optimize.php:1278
2475
  msgid "Support & FAQs"
2476
  msgstr ""
2477
 
2478
+ #: src/wp-optimize.php:1279
2479
  msgid "Help"
2480
  msgstr ""
2481
 
2482
+ #: src/wp-optimize.php:1287, src/wp-optimize.php:1288
2483
  msgid "Premium Upgrade"
2484
  msgstr ""
2485
 
2486
+ #: src/wp-optimize.php:1359
2487
  msgid "Error:"
2488
  msgstr ""
2489
 
2490
+ #: src/wp-optimize.php:1359
2491
  msgid "template not found"
2492
  msgstr ""
2493
 
2494
+ #: src/wp-optimize.php:1411
2495
  msgid "Automatic Operation Completed"
2496
  msgstr ""
2497
 
2498
+ #: src/wp-optimize.php:1413
2499
  msgid "Scheduled optimization was executed at"
2500
  msgstr ""
2501
 
2502
+ #: src/wp-optimize.php:1414
2503
  msgid "You can safely delete this email."
2504
  msgstr ""
2505
 
2506
+ #: src/wp-optimize.php:1416
2507
  msgid "Regards,"
2508
  msgstr ""
2509
 
2510
+ #: src/wp-optimize.php:1417
2511
  msgid "WP-Optimize Plugin"
2512
  msgstr ""
2513
 
2514
+ #: src/wp-optimize.php:1443
2515
  msgid "GB"
2516
  msgstr ""
2517
 
2518
+ #: src/wp-optimize.php:1445
2519
  msgid "MB"
2520
  msgstr ""
2521
 
2522
+ #: src/wp-optimize.php:1447
2523
  msgid "KB"
2524
  msgstr ""
2525
 
2526
+ #: src/wp-optimize.php:1449
2527
  msgid "bytes"
2528
  msgstr ""
2529
 
2530
+ #: src/wp-optimize.php:1758
2531
  msgid "You have no permissions to run optimizations."
2532
  msgstr ""
2533
 
2534
+ #: src/wp-optimize.php:1765
2535
  msgid "You have no permissions to manage WP-Optimize settings."
2536
  msgstr ""
2537
 
2538
+ #: src/wp-optimize.php:1978
2539
  msgid "Only Network Administrator can activate WP-Optimize plugin."
2540
  msgstr ""
2541
 
2542
+ #: src/wp-optimize.php:1979
2543
  msgid "go back"
2544
  msgstr ""
plugin.json CHANGED
@@ -1 +1 @@
1
- {"woocommerce_downloadable_product_permissions":["woocommerce","lazyeater"],"yoast_seo_links":["wordpress-seo"],"wc_tax_rate_classes":["woocommerce"],"wc_webhooks":["woocommerce","lazyeater"],"wc_download_log":["woocommerce","lazyeater"],"woocommerce_tax_rates":["woocommerce","lazyeater"],"woocommerce_tax_rate_locations":["woocommerce","lazyeater"],"woocommerce_attribute_taxonomies":["woocommerce","lazyeater"],"woocommerce_api_keys":["woocommerce","lazyeater"],"woocommerce_shipping_zones":["woocommerce","lazyeater"],"woocommerce_shipping_zone_methods":["woocommerce","lazyeater"],"woocommerce_shipping_zone_locations":["woocommerce","lazyeater"],"yoast_seo_meta":["wordpress-seo"],"wc_product_meta_lookup":["woocommerce"],"woocommerce_payment_tokens":["woocommerce","lazyeater"],"woocommerce_sessions":["woocommerce","lazyeater"],"woocommerce_payment_tokenmeta":["woocommerce","lazyeater"],"woocommerce_order_items":["woocommerce","lazyeater"],"woocommerce_log":["woocommerce","lazyeater"],"woocommerce_order_itemmeta":["woocommerce","lazyeater"],"wfreversecache":["wordfence"],"wfscanners":["wordfence"],"wfls_2fa_secrets":["wordfence","wordfence-login-security"],"wfsnipcache":["wordfence"],"wfblocks":["wordfence"],"wfbadleechers":["wordfence"],"wfblockedcommentlog":["wordfence"],"wfblockediplog":["wordfence"],"wfthrottlelog":["wordfence"],"wfblocks7":["wordfence"],"wfblocksadv":["wordfence"],"wfconfig":["wordfence"],"wfcrawlers":["wordfence"],"wfstatus":["wordfence"],"wffilechanges":["wordfence"],"wftrafficrates":["wordfence"],"wfvulnscanners":["wordfence"],"wflogins":["wordfence"],"wflocs":["wordfence"],"wflockedout":["wordfence"],"wflivetraffichuman":["wordfence"],"wfleechers":["wordfence"],"wfknownfilelist":["wordfence"],"wfissues":["wordfence"],"wfls_settings":["wordfence","wordfence-login-security"],"wfnet404s":["wordfence"],"wfnotifications":["wordfence"],"wfhoover":["wordfence"],"wfpendingissues":["wordfence"],"wfhits":["wordfence"],"wffilemods":["wordfence"],"smush_dir_images":["wp-smushit"],"duplicator_packages":["duplicator"],"nf3_action_meta":["ninja-forms"],"nf3_actions":["ninja-forms"],"nf3_chunks":["ninja-forms"],"nf3_form_meta":["ninja-forms"],"nf3_field_meta":["ninja-forms"],"nf3_object_meta":["ninja-forms"],"nf3_objects":["ninja-forms"],"nf3_relationships":["ninja-forms"],"nf3_upgrades":["ninja-forms"],"redirection_logs":["redirection"],"redirection_items":["redirection"],"redirection_groups":["redirection"],"redirection_404":["redirection"],"nf3_fields":["ninja-forms"],"nf3_forms":["ninja-forms"],"itsec_log":["better-wp-security","ithemes-security-pro"],"ngg_pictures":["nextgen-gallery","nextcellent-gallery-nextgen-legacy"],"ngg_album":["nextgen-gallery","nextcellent-gallery-nextgen-legacy"],"ngg_gallery":["nextgen-gallery","nextcellent-gallery-nextgen-legacy"],"itsec_geolocation_cache":["better-wp-security","ithemes-security-pro"],"itsec_logs":["better-wp-security","ithemes-security-pro"],"itsec_temp":["better-wp-security","ithemes-security-pro"],"itsec_distributed_storage":["better-wp-security","ithemes-security-pro"],"itsec_fingerprints":["better-wp-security","ithemes-security-pro"],"itsec_lockouts":["better-wp-security","ithemes-security-pro"],"aiowps_login_lockdown":["all-in-one-wp-security-and-firewall"],"aiowps_permanent_block":["all-in-one-wp-security-and-firewall"],"loginizer_logs":["loginizer"],"tm_taskmeta":["wp-optimize"],"tm_tasks":["wp-optimize"],"aiowps_login_activity":["all-in-one-wp-security-and-firewall"],"aiowps_events":["all-in-one-wp-security-and-firewall"],"aiowps_global_meta":["all-in-one-wp-security-and-firewall"],"aiowps_failed_logins":["all-in-one-wp-security-and-firewall"],"ewwwio_queue":["ewww-image-optimizer","ewww-image-optimizer-cloud"],"litespeed_optimizer":["litespeed-cache"],"blc_filters":["broken-link-checker"],"blc_instances":["broken-link-checker"],"litespeed_img_optm":["litespeed-cache"],"ewwwio_images":["ewww-image-optimizer","ewww-image-optimizer-cloud"],"blc_synch":["broken-link-checker"],"blc_links":["broken-link-checker"],"wpmm_subscribers":["wp-maintenance-mode"],"wc_admin_notes":["woocommerce-admin"],"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"],"wc_order_tax_lookup":["woocommerce-admin"],"nextend2_section_storage":["smart-slider-3"],"nextend2_smartslider3_generators":["smart-slider-3"],"wc_admin_note_actions":["woocommerce-admin"],"wc_customer_lookup":["woocommerce-admin"],"nextend2_smartslider3_sliders":["smart-slider-3"],"nextend2_smartslider3_slides":["smart-slider-3"],"nextend2_smartslider3_sliders_xref":["smart-slider-3"],"wc_order_stats":["woocommerce-admin"],"wc_order_product_lookup":["woocommerce-admin"],"nextend2_image_storage":["smart-slider-3"],"wc_order_coupon_lookup":["woocommerce-admin"],"wpgmza_polylines":["wp-google-maps"],"wpfm_backup":["wp-file-manager"],"pum_subscribers":["popup-maker"],"wpgmza_rectangles":["wp-google-maps"],"wpgmza_polygon":["wp-google-maps"],"navy_grid_grids":["essential-grid"],"wpgmza_maps":["wp-google-maps"],"wpgmza_circles":["wp-google-maps"],"wpgmza_category_maps":["wp-google-maps"],"wpgmza_categories":["wp-google-maps"],"wpgmza":["wp-google-maps"],"navy_grid_images":["essential-grid"],"cptch_whitelist":["captcha"],"cptch_blacklist_ip":["captcha"],"cptch_track_visitor":["captcha"],"cptch_track_countries":["captcha"],"newsletter":["newsletter","fv-feedburner-replacement","newsletter-signup","digital-media-combined"],"newsletter_emails":["newsletter","digital-media-combined"],"newsletter_sent":["newsletter","digital-media-combined"],"newsletter_user_logs":["newsletter"],"hctpc_images":["captcha"],"hctpc_packages":["captcha"],"hctpc_whitelist":["captcha"],"popularpostssummary":["wordpress-popular-posts"],"cptch_images":["captcha","captcha-bws"],"popularpostsdata":["wordpress-popular-posts","popular-posts","mh-board"],"newsletter_stats":["newsletter","digital-media-combined"],"cptch_packages":["captcha","captcha-bws"],"bwg_album_gallery":["photo-gallery"],"bwg_theme":["photo-gallery"],"bwg_file_paths":["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_album":["photo-gallery"],"cf_form_entries":["caldera-forms"],"gglcptch_whitelist":["google-captcha"],"frm_fields":["formidable"],"cf_tracking":["caldera-forms"],"cf_queue_jobs":["caldera-forms"],"cf_queue_failures":["caldera-forms"],"cf_form_entry_values":["caldera-forms"],"signups":["buddypress","miniorange-user-manager","wp-user-signups"],"wysija_user_list":["wysija-newsletters"],"bp_activity":["buddypress"],"bp_activity_meta":["buddypress"],"bp_notifications":["buddypress"],"brizy_logs":["unyson","brizy"],"bp_notifications_meta":["buddypress"],"eum_logs":["stops-core-theme-and-plugin-updates"],"cf_form_entry_meta":["caldera-forms"],"wysija_user":["wysija-newsletters"],"wysija_user_field":["wysija-newsletters"],"prli_clicks":["pretty-link"],"frm_items":["formidable"],"wysija_campaign":["wysija-newsletters"],"bp_xprofile_meta":["buddypress"],"bp_xprofile_groups":["buddypress"],"bp_xprofile_fields":["buddypress"],"bp_xprofile_data":["buddypress"],"wysija_user_history":["wysija-newsletters"],"prli_groups":["pretty-link"],"imagify_files":["imagify"],"wysija_form":["wysija-newsletters"],"prli_link_metas":["pretty-link"],"siteguard_login":["siteguard"],"siteguard_history":["siteguard"],"toolset_post_guid_id":["types"],"db7_forms":["contact-form-cfdb7"],"prli_links":["pretty-link"],"wysija_campaign_list":["wysija-newsletters"],"wysija_custom_field":["wysija-newsletters"],"wysija_email":["wysija-newsletters"],"wysija_email_user_stat":["wysija-newsletters"],"wysija_email_user_url":["wysija-newsletters"],"wysija_list":["wysija-newsletters"],"wysija_queue":["wysija-newsletters"],"wysija_subscriber_ips":["wysija-newsletters"],"yarpp_related_cache":["yet-another-related-posts-plugin"],"wysija_url":["wysija-newsletters"],"frm_forms":["formidable"],"imagify_folders":["imagify"],"wysija_url_mail":["wysija-newsletters"],"cf_tracking_meta":["caldera-forms"],"frm_item_metas":["formidable"],"cf_pro_messages":["caldera-forms"],"social_users":["nextend-facebook-connect","nextend-google-connect","nextend-twitter-connect"],"cf_forms":["caldera-forms"],"mailpoet_statistics_forms":["mailpoet"],"nxs_query":["social-networks-auto-poster-facebook-twitter-g"],"mailpoet_statistics_clicks":["mailpoet"],"mailpoet_settings":["mailpoet"],"mailpoet_sending_queues":["mailpoet"],"mailpoet_scheduled_tasks":["mailpoet"],"ahm_download_stats":["download-manager"],"ahm_assets":["download-manager"],"formmaker_sessions":["form-maker","contact-form-maker"],"mailpoet_scheduled_task_subscribers":["mailpoet"],"cntctfrm_field":["contact-form-plugin"],"mailpoet_segments":["mailpoet"],"mailpoet_stats_notifications":["mailpoet"],"mailpoet_statistics_newsletters":["mailpoet"],"formmaker_query":["form-maker","contact-form-maker"],"nxs_log":["social-networks-auto-poster-facebook-twitter-g"],"formmaker_display_options":["form-maker","contact-form-maker"],"odb_logs":["rvg-optimize-database"],"evf_sessions":["everest-forms"],"evf_entrymeta":["everest-forms"],"formmaker_groups":["form-maker","contact-form-maker"],"evf_entries":["everest-forms"],"ahm_emails":["download-manager"],"mailpoet_statistics_opens":["mailpoet"],"mailpoet_user_flags":["mailpoet"],"mailpoet_subscribers":["mailpoet"],"mailpoet_subscriber_segment":["mailpoet"],"mailpoet_subscriber_ips":["mailpoet"],"mailpoet_subscriber_custom_field":["mailpoet"],"mailpoet_statistics_woocommerce_purchases":["mailpoet"],"wp_rp_tags":["wordpress-23-related-posts-plugin"],"mailpoet_statistics_unsubscribes":["mailpoet"],"formmaker_submits":["form-maker","contact-form-maker"],"ber_log":["wp-cerber"],"formmaker_themes":["form-maker","contact-form-maker"],"ig_contacts":["email-subscribers"],"dlm_session":["download-monitor"],"download_log":["download-monitor"],"slim_stats_archive":["wp-slimstat"],"maxbuttons_collections":["maxbuttons"],"maxbuttons_collections_trans":["maxbuttons"],"maxbuttonsv3":["maxbuttons"],"ig_blocked_emails":["email-subscribers"],"ig_campaigns":["email-subscribers"],"ig_contacts_ips":["email-subscribers"],"dlm_order_item":["download-monitor"],"em_tickets_bookings":["events-manager"],"em_tickets":["events-manager","event-monster"],"ig_forms":["email-subscribers"],"em_bookings":["events-manager","event-monster"],"em_events":["events-manager"],"em_locations":["events-manager"],"ig_lists":["email-subscribers"],"em_meta":["events-manager"],"ig_lists_contacts":["email-subscribers"],"dlm_order_transaction":["download-monitor"],"dlm_order_customer":["download-monitor"],"formmaker_views":["form-maker","contact-form-maker"],"hugeit_slider_slider":["slider-image"],"slim_events":["wp-slimstat"],"slim_events_archive":["wp-slimstat"],"slim_stats":["wp-slimstat"],"cpd_counter":["count-per-day"],"es_templatetable":["email-subscribers"],"create_map":["wp-google-map-plugin"],"es_subscriber_ips":["email-subscribers"],"es_sentdetails":["email-subscribers"],"hugeit_slider_slide":["slider-image"],"wpgdprc_log":["wp-gdpr-compliance"],"masterslider_sliders":["master-slider"],"wpgdprc_consents":["wp-gdpr-compliance"],"es_notification":["email-subscribers","gnaritas-amazon-ses"],"ms_snippets":["code-snippets"],"es_emaillist":["email-subscribers"],"es_deliverreport":["email-subscribers"],"map_locations":["wp-google-map-plugin"],"wpeditor_settings":["wp-editor"],"dlm_order":["download-monitor"],"masterslider_options":["master-slider"],"mailpoet_newsletters":["mailpoet"],"mailpoet_newsletter_links":["mailpoet"],"mailpoet_newsletter_templates":["mailpoet"],"ratings":["wp-postratings"],"relevanssi_log":["relevanssi"],"relevanssi":["relevanssi"],"aryo_activity_log":["aryo-activity-log"],"sgpb_subscribers":["popup-builder"],"sgpb_subscription_error_log":["popup-builder"],"formmaker_blocked":["form-maker","contact-form-maker"],"cerber_files":["wp-cerber"],"cerber_sets":["wp-cerber"],"cerber_uss":["wp-cerber"],"cbnetpo_ping_optimizer":["wordpress-ping-optimizer"],"statify":["statify"],"ai1ec_events":["all-in-one-event-calendar"],"ig_sending_queue":["email-subscribers"],"simple_history":["simple-history"],"simple_history_contexts":["simple-history"],"ai1ec_event_instances":["all-in-one-event-calendar"],"ai1ec_event_feeds":["all-in-one-event-calendar"],"yikes_easy_mc_forms":["yikes-inc-easy-mailchimp-extender"],"relevanssi_stopwords":["relevanssi"],"responsive_menu":["responsive-menu"],"lockdowns":["login-lockdown"],"snippets":["code-snippets"],"ber_traffic":["wp-cerber"],"ber_lab_net":["wp-cerber"],"ber_lab_ip":["wp-cerber"],"ber_lab":["wp-cerber"],"ber_files":["wp-cerber"],"ber_countries":["wp-cerber"],"ber_blocks":["wp-cerber"],"ber_acl":["wp-cerber"],"sg_fblike_popup":["popup-builder"],"formmaker":["form-maker","contact-form-maker"],"404_to_301":["404-to-301"],"sg_html_popup":["popup-builder"],"sg_image_popup":["popup-builder"],"sg_popup":["popup-builder"],"sg_popup_addons":["popup-builder"],"group_map":["wp-google-map-plugin"],"sg_popup_addons_connection":["popup-builder"],"sg_popup_settings":["popup-builder"],"sg_shortcode_popup":["popup-builder"],"post_views":["post-views-counter","author-page-views","access-expiration"],"formmaker_backup":["form-maker","contact-form-maker"],"ig_mailing_queue":["email-subscribers"],"pmxi_templates":["wp-all-import"],"pmxi_posts":["wp-all-import"],"pmxi_imports":["wp-all-import"],"pmxi_images":["wp-all-import"],"pmxi_history":["wp-all-import"],"pmxi_files":["wp-all-import"],"mailpoet_custom_fields":["mailpoet"],"mailpoet_feature_flags":["mailpoet"],"mailpoet_forms":["mailpoet"],"mailpoet_log":["mailpoet"],"mailpoet_mapping_to_external_entities":["mailpoet"],"ber_qmem":["wp-cerber"],"mailpoet_newsletter_option":["mailpoet"],"login_fails":["login-lockdown"],"pollsa":["wp-polls"],"pollsip":["wp-polls"],"mailpoet_newsletter_option_fields":["mailpoet"],"pollsq":["wp-polls"],"mailpoet_newsletter_posts":["mailpoet"],"mailpoet_newsletter_segment":["mailpoet"],"ai1ec_event_category_meta":["all-in-one-event-calendar"],"visual_form_builder_fields":["visual-form-builder"],"cleantalk_sessions":["cleantalk-spam-protect"],"cleantalk_sfw_logs":["cleantalk-spam-protect"],"cleantalk_sfw":["cleantalk-spam-protect"],"visual_form_builder_forms":["visual-form-builder"],"login_redirects":["peters-login-redirect"],"wsal_options":["wp-security-audit-log"],"wsal_occurrences":["wp-security-audit-log","activity-log-mainwp"],"visual_form_builder_entries":["visual-form-builder"],"strong_views":["strong-testimonials"],"wsal_metadata":["wp-security-audit-log","activity-log-mainwp"],"rank_math_internal_links":["seo-by-rank-math"],"optins":["wordpress-popup"],"icwp_wpsf_scanner":["wp-simple-firewall"],"optin_meta":["wordpress-popup"],"icwp_wpsf_reporting":["wp-simple-firewall"],"rank_math_internal_meta":["seo-by-rank-math"],"pmpro_memberships_pages":["paid-memberships-pro"],"icwp_wpsf_notes":["wp-simple-firewall"],"icwp_wpsf_geoip":["wp-simple-firewall"],"icwp_wpsf_events":["wp-simple-firewall"],"pmpro_memberships_users":["paid-memberships-pro"],"pmpro_membership_levelmeta":["paid-memberships-pro"],"pmpro_memberships_categories":["paid-memberships-pro"],"pmpro_membership_orders":["paid-memberships-pro"],"pmpro_membership_levels":["paid-memberships-pro"],"icwp_wpsf_sessions":["wp-simple-firewall"],"icwp_wpsf_spambot_comments_filter":["wp-simple-firewall"],"icwp_wpsf_statistics":["wp-simple-firewall"],"icwp_wpsf_traffic":["wp-simple-firewall"],"pmpro_discount_codes_uses":["paid-memberships-pro"],"pmpro_discount_codes_levels":["paid-memberships-pro"],"wdi_feeds":["wd-instagram-feed"],"pmpro_discount_codes":["paid-memberships-pro"],"wdi_themes":["wd-instagram-feed"],"mappress_posts":["mappress-google-maps-for-wordpress"],"icwp_wpsf_ip_lists":["wp-simple-firewall"],"mappress_maps":["mappress-google-maps-for-wordpress"],"podsrel":["pods"],"hustle_tracking":["wordpress-popup"],"hustle_modules_meta":["wordpress-popup"],"hustle_modules":["wordpress-popup"],"hustle_entries_meta":["wordpress-popup"],"hustle_entries":["wordpress-popup"],"rank_math_404_logs":["seo-by-rank-math","404-monitor"],"rank_math_sc_analytics":["seo-by-rank-math"],"rank_math_redirections":["seo-by-rank-math","redirections"],"rank_math_redirections_cache":["seo-by-rank-math","redirections"],"icwp_wpsf_audit_trail":["wp-simple-firewall"],"gg_galleries_excluded":["gallery-by-supsystic"],"gg_membership_presets":["gallery-by-supsystic"],"bpspro_mscan":["bulletproof-security"],"gg_image_optimize":["gallery-by-supsystic"],"bpspro_seclog_ignore":["bulletproof-security"],"gg_photos":["gallery-by-supsystic"],"gg_galleries_resources":["gallery-by-supsystic"],"give_comments":["give"],"bpspro_login_security":["bulletproof-security"],"bpspro_db_backup":["bulletproof-security"],"give_commentmeta":["give"],"gg_galleries":["gallery-by-supsystic"],"gg_photos_settings":["gallery-by-supsystic"],"give_customermeta":["give"],"sg_config":["backup"],"sg_action":["backup"],"gde_secure":["google-document-embedder"],"gde_profiles":["google-document-embedder"],"wpml_mails":["wp-mail-logging"],"filemeta":["advanced-code-editor"],"gg_photos_pos":["gallery-by-supsystic"],"gg_settings_presets":["gallery-by-supsystic"],"wsluserscontacts":["wordpress-social-login"],"give_logs":["give"],"give_formmeta":["give"],"give_paymentmeta":["give"],"give_sequential_ordering":["give"],"give_sessions":["give"],"gg_settings_sets":["gallery-by-supsystic"],"give_donors":["give"],"hfcm_scripts":["header-footer-code-manager"],"gg_attributes":["gallery-by-supsystic"],"wslusersprofiles":["wordpress-social-login"],"sg_schedule":["backup"],"gg_cdn":["gallery-by-supsystic"],"give_donormeta":["give"],"give_donationmeta":["give"],"give_customers":["give"],"gg_tags":["gallery-by-supsystic"],"gg_folders":["gallery-by-supsystic"],"gg_stats":["gallery-by-supsystic"],"give_logmeta":["give"],"learnpress_user_items":["learnpress"],"learnpress_user_itemmeta":["learnpress"],"learnpress_question_answers":["learnpress"],"learnpress_order_items":["learnpress"],"yuzoviews":["yuzo-related-post"],"learnpress_review_logs":["learnpress"],"learnpress_question_answermeta":["learnpress"],"learnpress_sessions":["learnpress"],"learnpress_section_items":["learnpress"],"ktaisession":["ktai-style"],"learnpress_quiz_questions":["learnpress"],"learnpress_sections":["learnpress"],"learnpress_order_itemmeta":["learnpress"],"edd_customers":["easy-digital-downloads"],"wpb2d_excluded_files":["wordpress-backup-to-dropbox"],"wpfront_ure_login_redirect":["wpfront-user-role-editor"],"redirects":["eps-301-redirects","301-redirects","links-auditor"],"hugeit_maps_circles":["google-maps"],"hugeit_maps_directions":["google-maps"],"huge_itportfolio_portfolios":["portfolio-gallery"],"hugeit_maps_maps":["google-maps"],"hugeit_maps_markers":["google-maps"],"wpb2d_options":["wordpress-backup-to-dropbox"],"hugeit_maps_polygons":["google-maps"],"huge_itportfolio_images":["portfolio-gallery"],"hugeit_maps_polylines":["google-maps"],"wdsslider":["slider-wd"],"wdsslide":["slider-wd"],"wpfront_ure_options":["wpfront-user-role-editor"],"hugeit_maps_stores":["google-maps"],"wdslayer":["slider-wd"],"pmxe_exports":["wp-all-export"],"wpb2d_processed_dbtables":["wordpress-backup-to-dropbox"],"wpb2d_processed_files":["wordpress-backup-to-dropbox"],"pmxe_posts":["wp-all-export"],"edd_customermeta":["easy-digital-downloads"],"pmxe_templates":["wp-all-export"],"pmxe_google_cats":["wp-all-export"],"dynamic_widgets":["dynamic-widgets"],"wprss_logs":["wp-rss-aggregator"],"modula_images":["modula-best-grid-gallery"],"modula":["modula-best-grid-gallery"],"subscribe2":["subscribe2"],"cf7_vdata":["advanced-cf7-db"],"cf7_vdata_entry":["advanced-cf7-db"],"adrotate_transactions":["adrotate"],"xcloner_scheduler":["xcloner-backup-and-restore"],"adrotate_stats":["adrotate"],"adrotate_stats_archive":["adrotate"],"gmp_icons":["google-maps-easy"],"adrotate_groups":["adrotate"],"huge_it_videogallery_galleries":["gallery-video"],"adrotate_tracker":["adrotate"],"adrotate_linkmeta":["adrotate"],"huge_it_videogallery_videos":["gallery-video"],"adrotate":["adrotate"],"wc_comments_subscription":["wpdiscuz"],"gmp_maps":["google-maps-easy"],"gmp_modules":["google-maps-easy"],"woocommerce_ir":["persian-woocommerce"],"gmp_usage_stat":["google-maps-easy"],"gmp_options_categories":["google-maps-easy"],"gmp_options":["google-maps-easy"],"gmp_modules_type":["google-maps-easy"],"wc_users_voted":["wpdiscuz"],"booking":["booking","asi-taxi-booking"],"wc_phrases":["wpdiscuz"],"bookingdates":["booking"],"rp4wp_cache":["related-posts-for-wp"],"gmp_membership_presets":["google-maps-easy"],"wc_follow_users":["wpdiscuz"],"gmp_markers":["google-maps-easy"],"gmp_marker_groups_relation":["google-maps-easy"],"_wsd_plugin_live_traffic":["wp-security-scan","secure-wordpress"],"wc_avatars_cache":["wpdiscuz"],"gmp_marker_groups":["google-maps-easy"],"auto_updates":["companion-auto-update"],"rio_process_queue":["robin-image-optimizer"],"fm_log":["file-manager"],"_wsd_plugin_alerts":["wp-security-scan","secure-wordpress"],"adrotate_schedule":["adrotate"],"mail_bank":["wp-mail-bank"],"wp_seo_cache":["seo-redirection","404-redirection-manager"],"wplc_roi_goals":["wp-live-chat-support"],"wplc_roi_conversions":["wp-live-chat-support"],"wplc_offline_messages":["wp-live-chat-support"],"wplc_departments":["wp-live-chat-support"],"wplc_custom_fields":["wp-live-chat-support"],"wplc_chat_triggers":["wp-live-chat-support"],"wplc_chat_sessions":["wp-live-chat-support"],"wplc_chat_ratings":["wp-live-chat-support"],"mail_bank_email_logs":["wp-mail-bank"],"wp_seo_404_links":["seo-redirection","404-redirection-manager"],"wp_seo_redirection":["seo-redirection","404-redirection-manager"],"cn_social_icon":["easy-social-icons"],"alm":["ajax-load-more"],"wp_seo_redirection_log":["seo-redirection","404-redirection-manager"],"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"],"aps_social_icons":["accesspress-social-icons"],"_wsd_plugin_scans":["wp-security-scan"],"trp_gettext_":["translatepress-multilingual"],"trp_gettext_en_us":["translatepress-multilingual"],"aalb_asin_response":["amazon-associates-link-builder"],"wplc_webhooks":["wp-live-chat-support"],"wplc_chat_msgs":["wp-live-chat-support"],"cp_calculated_fields_form_revision":["calculated-fields-form"],"mail_bank_logs":["wp-mail-bank"],"_wsd_plugin_scan":["wp-security-scan"],"mail_bank_meta":["wp-mail-bank"],"_browsers":["visitors-traffic-real-time-statistics"],"_user":["blog2social"],"_post_sched_settings":["blog2social"],"_posts":["blog2social"],"_posts_drafts":["blog2social"],"_posts_network_details":["blog2social"],"_posts_sched_details":["blog2social"],"_user_contact":["blog2social"],"_user_network_settings":["blog2social"],"b2s_posts":["blog2social"],"b2s_posts_drafts":["blog2social"],"b2s_posts_network_details":["blog2social"],"eo_events":["event-organiser"],"b2s_posts_sched_details":["blog2social"],"b2s_user":["blog2social"],"b2s_user_contact":["blog2social"],"uam_accessgroup_to_object":["user-access-manager"],"_countries":["visitors-traffic-real-time-statistics","photo-video-store","mymovingloads-leads-form"],"_search_engine_crawlers":["visitors-traffic-real-time-statistics"],"_daily_visitors_stats":["visitors-traffic-real-time-statistics"],"_hits":["visitors-traffic-real-time-statistics"],"_keywords":["visitors-traffic-real-time-statistics","project-supremacy"],"_online_users":["visitors-traffic-real-time-statistics"],"_recent_visitors":["visitors-traffic-real-time-statistics"],"_refering_sites":["visitors-traffic-real-time-statistics"],"uam_accessgroups":["user-access-manager"],"_search_engines":["visitors-traffic-real-time-statistics"],"_searching_visits":["visitors-traffic-real-time-statistics"],"_settings":["visitors-traffic-real-time-statistics","photo-video-store"],"_title_traffic":["visitors-traffic-real-time-statistics"],"_visitors":["visitors-traffic-real-time-statistics"],"_visits_time":["visitors-traffic-real-time-statistics"],"cfs_sessions":["custom-field-suite"],"eo_venuemeta":["event-organiser"],"aepc_custom_audiences":["pixel-caffeine"],"fv_player_players":["fv-wordpress-flowplayer"],"grp_google_review":["widget-google-reviews","wp-social-seo"],"fv_player_videometa":["fv-wordpress-flowplayer"],"gwolle_gb_entries":["gwolle-gb"],"gwolle_gb_log":["gwolle-gb"],"xsg_sitemap_meta":["www-xml-sitemap-generator-org"],"cfs_values":["custom-field-suite"],"stream":["stream"],"grp_google_place":["widget-google-reviews","wp-social-seo"],"stream_meta":["stream"],"aepc_logs":["pixel-caffeine"],"fv_player_videos":["fv-wordpress-flowplayer"],"limit_login":["wp-limit-login-attempts"],"xyz_ips_short_code":["insert-php-code-snippet"],"swpm_payments_tbl":["simple-membership"],"swpm_membership_tbl":["simple-membership"],"swpm_membership_meta_tbl":["simple-membership"],"ip_geo_block_logs":["ip-geo-block"],"ip_geo_block_cache":["ip-geo-block"],"b2s_user_network_settings":["blog2social"],"contactformmaker_blocked":["contact-form-builder"],"wd_fb_data":["wd-facebook-feed"],"swpm_members_tbl":["simple-membership"],"contactformmaker_views":["contact-form-builder"],"contactformmaker_submits":["contact-form-builder"],"contactformmaker_themes":["contact-form-builder"],"ip_geo_block_stat":["ip-geo-block"],"wd_fb_option":["wd-facebook-feed"],"contactformmaker":["contact-form-builder"],"wd_fb_shortcode":["wd-facebook-feed"],"wd_fb_theme":["wd-facebook-feed"],"wd_fb_info":["wd-facebook-feed"],"ac_guest_abandoned_cart_history_lite":["woocommerce-abandoned-cart"],"huge_it_contact_contacts_fields":["forms-contact"],"ac_sent_history_lite":["woocommerce-abandoned-cart"],"xyz_ihs_short_code":["insert-html-snippet"],"huge_it_contact_general_options":["forms-contact"],"hidemysitesecure":["hide-my-site","wp-privacy"],"gpi_page_blacklist":["google-pagespeed-insights"],"gpi_summary_snapshots":["google-pagespeed-insights"],"gpi_page_stats":["google-pagespeed-insights"],"ac_email_templates_lite":["woocommerce-abandoned-cart"],"huge_it_contact_subscribers":["forms-contact"],"huge_it_contact_style_fields":["forms-contact"],"huge_it_contact_styles":["forms-contact"],"huge_it_contact_submission":["forms-contact"],"huge_it_contact_contacts":["forms-contact"],"gpi_api_error_logs":["google-pagespeed-insights"],"gpi_custom_urls":["google-pagespeed-insights"],"ac_abandoned_cart_history_lite":["woocommerce-abandoned-cart"],"gpi_page_reports":["google-pagespeed-insights"],"iqblock_logging":["iq-block-country"],"ufbl_entries":["ultimate-form-builder-lite"],"ninja_table_items":["ninja-tables"],"cscs_db_subscriptions":["igniteup"],"my_calendar_locations":["my-calendar"],"my_calendar_events":["my-calendar"],"my_calendar_category_relationships":["my-calendar"],"my_calendar_categories":["my-calendar"],"my_calendar":["my-calendar"],"mo_openid_linked_user":["miniorange-login-openid"],"ufbl_forms":["ultimate-form-builder-lite"],"top_ten":["top-10"],"wpdatatables_columns":["wpdatatables"],"wpdatatables":["wpdatatables"],"wpdatacharts":["wpdatatables"],"pps_popup":["popup-by-supsystic"],"metaseo_images":["wp-meta-seo"],"user_login_log":["crazy-bone"],"em_modal_metas":["easy-modal"],"em_modals":["easy-modal"],"top_ten_daily":["top-10"],"ariadminer_connections":["ari-adminer"],"em_themes":["easy-modal"],"pts_modules_type":["pricing-table-by-supsystic"],"pps_modules":["popup-by-supsystic"],"pps_countries":["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"],"pts_modules":["pricing-table-by-supsystic"],"pts_tables":["pricing-table-by-supsystic"],"wpms_links":["wp-meta-seo"],"pts_usage_stat":["pricing-table-by-supsystic"],"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"],"statpress":["newstatpress","statpress-seolution","statpresscn"],"fo_usable_fonts":["font-organizer"],"em_theme_metas":["easy-modal"],"pps_modules_type":["popup-by-supsystic"],"bad_behavior":["bad-behavior"],"visitor_maps_wo":["visitor-maps"],"visitor_maps_ge":["visitor-maps"],"similar_posts":["similar-posts"],"finaltiles_gallery":["final-tiles-grid-gallery-lite"],"searchmeter_recent":["search-meter"],"finaltiles_gallery_images":["final-tiles-grid-gallery-lite"],"finaltilesgalleries":["final-tiles-grid-gallery-lite"],"finaltilesimages":["final-tiles-grid-gallery-lite"],"leafletmapsmarker_markers":["leaflet-maps-marker"],"leafletmapsmarker_layers":["leaflet-maps-marker"],"visitor_maps_st":["visitor-maps"],"wassup_tmp":["wassup"],"wpadm_ga_cache":["analytics-counter"],"external_links_masks":["wp-noexternallinks","mihdan-no-external-links"],"searchmeter":["search-meter"],"wassup":["wassup"],"fo_elements":["font-organizer"],"wassup_meta":["wassup"],"external_links_logs":["wp-noexternallinks","mihdan-no-external-links"],"wprm_ratings":["wp-recipe-maker"],"cegg_autoblog":["content-egg"],"wptc_included_files":["wp-time-capsule"],"cartflows_ca_cart_abandonment":["woo-cart-abandonment-recovery"],"wptc_excluded_files":["wp-time-capsule"],"wptc_inc_exc_contents":["wp-time-capsule"],"cartflows_ca_email_history":["woo-cart-abandonment-recovery"],"wptc_excluded_tables":["wp-time-capsule"],"cartflows_ca_email_templates":["woo-cart-abandonment-recovery"],"cartflows_ca_email_templates_meta":["woo-cart-abandonment-recovery"],"bookly_customer_appointments":["bookly-responsive-appointment-booking-tool"],"wptc_included_tables":["wp-time-capsule"],"cegg_price_alert":["content-egg"],"cegg_price_history":["content-egg"],"wpsc_also_bought":["wp-e-commerce","wp-e-commerce-cross-sales"],"cegg_product":["content-egg"],"wptc_options":["wp-time-capsule"],"wptc_processed_dbtables":["wp-time-capsule"],"wptc_processed_files":["wp-time-capsule"],"wptc_processed_iterator":["wp-time-capsule"],"wptc_processed_restored_files":["wp-time-capsule"],"cfs_contacts":["contact-form-by-supsystic"],"cfs_countries":["contact-form-by-supsystic"],"gmwd_circles":["wd-google-maps"],"gmwd_maps":["wd-google-maps"],"gmwd_mapstyles":["wd-google-maps"],"wptc_debug_log":["wp-time-capsule"],"gmedia_log":["grand-media"],"wpsc_cart_contents":["wp-e-commerce"],"bookly_schedule_item_breaks":["bookly-responsive-appointment-booking-tool"],"bookly_stats":["bookly-responsive-appointment-booking-tool"],"bookly_staff_services":["bookly-responsive-appointment-booking-tool"],"bookly_staff_schedule_items":["bookly-responsive-appointment-booking-tool"],"bookly_staff":["bookly-responsive-appointment-booking-tool"],"bookly_shop":["bookly-responsive-appointment-booking-tool"],"bookly_services":["bookly-responsive-appointment-booking-tool"],"bookly_series":["bookly-responsive-appointment-booking-tool"],"bookly_sent_notifications":["bookly-responsive-appointment-booking-tool"],"bookly_payments":["bookly-responsive-appointment-booking-tool"],"wpsc_visitors":["wp-e-commerce"],"bookly_notifications":["bookly-responsive-appointment-booking-tool"],"bookly_messages":["bookly-responsive-appointment-booking-tool"],"bookly_holidays":["bookly-responsive-appointment-booking-tool"],"wptc_auto_backup_record":["wp-time-capsule"],"bookly_customers":["bookly-responsive-appointment-booking-tool"],"wptc_activity_log":["wp-time-capsule"],"wpsm_tables":["table-maker"],"bookly_appointments":["bookly-responsive-appointment-booking-tool"],"bookly_sub_services":["bookly-responsive-appointment-booking-tool"],"wpsc_submited_form_data":["wp-e-commerce"],"gmedia":["grand-media"],"gmedia_term":["grand-media"],"wpsc_cart_item_meta":["wp-e-commerce"],"bookly_categories":["bookly-responsive-appointment-booking-tool"],"wptc_current_process":["wp-time-capsule"],"gmedia_meta":["grand-media"],"wpsc_checkout_forms":["wp-e-commerce"],"wpsc_claimed_stock":["wp-e-commerce"],"wpsc_coupon_codes":["wp-e-commerce"],"wpsc_currency_list":["wp-e-commerce"],"gmedia_term_meta":["grand-media"],"wpsc_region_tax":["wp-e-commerce"],"gmedia_term_relationships":["grand-media"],"wpsc_download_status":["wp-e-commerce"],"wpsc_meta":["wp-e-commerce"],"wpsc_product_rating":["wp-e-commerce"],"wpsc_purchase_logs":["wp-e-commerce"],"wptc_backups":["wp-time-capsule"],"wptc_backup_names":["wp-time-capsule"],"wpsc_purchase_meta":["wp-e-commerce"],"wpsc_visitor_meta":["wp-e-commerce"],"wppa_albums":["wp-photo-album-plus"],"cfs_forms":["contact-form-by-supsystic"],"wpbackitup_job_items":["wp-backitup"],"wp_pro_quiz_statistic_ref":["wp-pro-quiz"],"wp_pro_quiz_template":["wp-pro-quiz"],"wp_pro_quiz_toplist":["wp-pro-quiz"],"wpuf_subscribers":["wp-user-frontend"],"email_log":["email-log"],"eig_sso":["eig-sso"],"wpbackitup_job_control":["wp-backitup"],"wpbackitup_job_tasks":["wp-backitup"],"wp_pro_quiz_question":["wp-pro-quiz"],"wpbdp_fees":["business-directory-plugin"],"wpbdp_form_fields":["business-directory-plugin"],"wpbdp_listing_fees":["business-directory-plugin"],"gmwd_markers":["wd-google-maps"],"wpbdp_listings":["business-directory-plugin"],"wpbdp_logs":["business-directory-plugin"],"wpbdp_payments":["business-directory-plugin"],"wpbdp_payments_items":["business-directory-plugin"],"wp_pro_quiz_statistic":["wp-pro-quiz"],"wp_pro_quiz_prerequisite":["wp-pro-quiz"],"wpbdp_submit_state":["business-directory-plugin"],"gallery_galleriesslides":["slideshow-gallery"],"frmt_form_entry":["forminator"],"frmt_form_entry_meta":["forminator"],"frmt_form_views":["forminator"],"flag_pictures":["flash-album-gallery"],"flag_gallery":["flash-album-gallery"],"flag_comments":["flash-album-gallery"],"flag_album":["flash-album-gallery"],"gallery_galleries":["slideshow-gallery"],"gallery_slides":["slideshow-gallery"],"wp_pro_quiz_master":["wp-pro-quiz"],"gdbc_attempts":["goodbye-captcha"],"wp125_ads":["wp125"],"fb3d_pages":["interactive-3d-flipbook-powered-physics-engine","unreal-flipbook-addon-for-visual-composer"],"gdpr_consent":["gdpr-framework"],"gdpr_userlogs":["gdpr-framework"],"wp_pro_quiz_category":["wp-pro-quiz"],"wp_pro_quiz_form":["wp-pro-quiz"],"wp_pro_quiz_lock":["wp-pro-quiz"],"wpbdp_plans":["business-directory-plugin"],"dokan_withdraw":["dokan-lite"],"cfs_membership_presets":["contact-form-by-supsystic"],"wppa_iptc":["wp-photo-album-plus"],"crellyslider_sliders":["crelly-slider"],"crellyslider_nonces":["crelly-slider"],"crellyslider_elements":["crelly-slider"],"convertkit_user_history":["convertkit"],"wpmcleaner":["media-cleaner"],"wppa_comments":["wp-photo-album-plus"],"wppa_exif":["wp-photo-album-plus"],"wppa_index":["wp-photo-album-plus"],"wppa_photos":["wp-photo-album-plus"],"cwa":["wp-custom-widget-area"],"wppa_rating":["wp-photo-album-plus"],"wppa_session":["wp-photo-album-plus"],"cftemail_messages":["contact-form-to-email"],"cftemail_forms":["contact-form-to-email"],"cfs_usage_stat":["contact-form-by-supsystic"],"cfs_statistics":["contact-form-by-supsystic"],"cfs_modules_type":["contact-form-by-supsystic"],"cfs_modules":["contact-form-by-supsystic"],"crellyslider_slides":["crelly-slider"],"wpforo_votes":["wpforo"],"adtribes_my_conversions":["woo-product-feed-pro"],"wpforo_likes":["wpforo"],"dokan_vendor_balance":["dokan-lite"],"dokan_refund":["dokan-lite"],"dokan_orders":["dokan-lite"],"dokan_announcement":["dokan-lite"],"wpforo_accesses":["wpforo"],"wpforo_activity":["wpforo"],"wpforo_forums":["wpforo"],"wpforo_languages":["wpforo"],"wpforo_phrases":["wpforo"],"wpforo_visits":["wpforo"],"wpforo_post_revisions":["wpforo"],"wpforo_posts":["wpforo"],"wpforo_profiles":["wpforo"],"wpforo_subscribes":["wpforo"],"wpforo_tags":["wpforo"],"wpforo_topics":["wpforo"],"wpforo_usergroups":["wpforo"],"wpforo_views":["wpforo"],"gmwd_markercategories":["wd-google-maps"],"hsa_plugin":["horizontal-scrolling-announcement"],"gmwd_options":["wd-google-maps"],"yop2_poll_questions":["yop-poll"],"instapage_pages":["instapage"],"iowd_images":["image-optimizer-wd"],"yop2_poll_answermeta":["yop-poll"],"yop2_poll_answers":["yop-poll"],"yop2_poll_bans":["yop-poll"],"yop2_poll_custom_fields":["yop-poll"],"yop2_poll_questionmeta":["yop-poll"],"yop2_poll_results":["yop-poll"],"instapage_options":["instapage"],"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"],"mp_timetable_data":["mp-timetable"],"instapage_debug":["instapage"],"yoppoll_skins":["yop-poll"],"mclean_refs":["media-cleaner"],"gmwd_polygons":["wd-google-maps"],"mlw_quizzes":["quiz-master-next"],"mlw_results":["quiz-master-next"],"mo2f_network_blocked_ips":["miniorange-2-factor-authentication"],"mo2f_network_email_sent_audit":["miniorange-2-factor-authentication"],"mo2f_network_transactions":["miniorange-2-factor-authentication"],"mo2f_network_whitelisted_ips":["miniorange-2-factor-authentication"],"mo2f_user_details":["miniorange-2-factor-authentication"],"mo2f_user_login_info":["miniorange-2-factor-authentication"],"translations":["transposh-translation-filter-for-wordpress"],"mo_campaign_log":["mailoptin"],"mo_campaign_logmeta":["mailoptin"],"mo_conversions":["mailoptin"],"mo_email_campaignmeta":["mailoptin"],"mo_email_campaigns":["mailoptin"],"mo_optin_campaignmeta":["mailoptin"],"mo_optin_campaigns":["mailoptin"],"translations_log":["transposh-translation-filter-for-wordpress"],"irecommendthis_votes":["i-recommend-this"],"yoppoll_subelements":["yop-poll"],"mclean_scan":["media-cleaner"],"lrgawidget_global_settings":["lara-google-analytics"],"page_visit_history":["page-visit-counter"],"page_visit_referer":["page-visit-counter"],"page_visit_wizard":["page-visit-counter"],"vod_player":["vod-infomaniak"],"vod_folder":["vod-infomaniak"],"m_tables":["table-maker"],"logger_ginger":["ginger"],"mailerlite_forms":["official-mailerlite-sign-up-forms"],"subscribe_reloaded_subscribers":["subscribe-to-comments-reloaded"],"econtactform7_lookup":["save-contact-form-7"],"taxonomymeta":["taxonomy-metadata","ultimate-taxonomy-manager","wp-symposium-pro","bulk-photo-to-product-importer-extension-for-woocommerce","ultimate-cms","magic-wp-coupons","manage-issue-based-magazine","seo-plus","multiupload-in-custom-taxonomy","travel-routes"],"ta_link_clicks_meta":["thirstyaffiliates"],"ta_link_clicks":["thirstyaffiliates"],"mainwp_stream_meta":["mainwp-child-reports"],"zerospam_blocked_ips":["zero-spam"],"zerospam_log":["zero-spam"],"mainwp_stream_context":["mainwp-child-reports"],"page_visit":["page-visit-counter"],"p2pmeta":["posts-to-posts","badgeos","gamipress","wp-ticket","employee-scheduler","software-issue-manager","wp-easy-events","campus-directory","rtbiz","open-badge-factory"],"yoppoll_templates":["yop-poll"],"spidercalendar_widget_theme":["spider-event-calendar"],"yoppoll_votes":["yop-poll"],"spidercalendar_calendar":["spider-event-calendar"],"spidercalendar_event":["spider-event-calendar"],"spidercalendar_event_category":["spider-event-calendar"],"itro_plugin_field":["itro-popup"],"itro_plugin_option":["itro-popup"],"oses_clicks":["wp-ses"],"spidercalendar_theme":["spider-event-calendar"],"oses_emails":["wp-ses"],"structuring_markup":["wp-structuring-markup"],"p2p":["posts-to-posts","badgeos","gamipress","wp-ticket","employee-scheduler","campus-directory","wp-easy-events","software-issue-manager","rtbiz","open-badge-factory"],"vod_video":["vod-infomaniak"],"vod_upload":["vod-infomaniak"],"vod_playlist":["vod-infomaniak"],"quotescollection":["quotes-collection"],"qss":["squirrly-seo","quickseo-by-squirrly"],"pz_linkcard":["pz-linkcard"],"stock_log":["woocommerce-stock-manager"],"mlw_questions":["quiz-master-next"],"yop2_poll_logs":["yop-poll"],"mec_dates":["modern-events-calendar-lite"],"rt_rtm_media":["buddypress-media"],"say_what_strings":["say-what"],"rt_rtm_media_meta":["buddypress-media"],"wpuf_transaction":["wp-user-frontend"],"uji_subscriptions":["uji-countdown"],"uji_counter":["uji-countdown"],"rt_rtm_media_interaction":["buddypress-media"],"mlw_qm_audit_trail":["quiz-master-next"],"ulike_activities":["wp-ulike"],"rt_rtm_api":["buddypress-media"],"rt_rtm_activity":["buddypress-media"],"huge_it_reslider_sliders":["slider"],"huge_it_reslider_slides":["slider"],"ab_sub_services":["bookly-responsive-appointment-booking-tool"],"ab_stats":["bookly-responsive-appointment-booking-tool"],"ab_staff_services":["bookly-responsive-appointment-booking-tool"],"ulike":["wp-ulike"],"ulike_comments":["wp-ulike"],"ab_staff_preference_orders":["bookly-responsive-appointment-booking-tool"],"groups_capability":["groups"],"gmwd_polylines":["wd-google-maps"],"gmwd_rectangles":["wd-google-maps"],"gmwd_shortcodes":["wd-google-maps"],"gmwd_themes":["wd-google-maps"],"wfu_userdata":["wp-file-upload"],"wfu_log":["wp-file-upload"],"wfu_dbxqueue":["wp-file-upload"],"groups_group":["groups"],"ulike_forums":["wp-ulike"],"groups_group_capability":["groups"],"groups_user_capability":["groups"],"groups_user_group":["groups"],"unitegallery_galleries":["unite-gallery-lite"],"unitegallery_categories":["unite-gallery-lite"],"unitegallery_items":["unite-gallery-lite"],"sdm_downloads":["simple-download-monitor"],"ab_staff_schedule_items":["bookly-responsive-appointment-booking-tool"],"mainwp_stream":["mainwp-child-reports"],"yasr_multi_set_fields":["yet-another-stars-rating"],"yasr_log":["yet-another-stars-rating"],"ab_payments":["bookly-responsive-appointment-booking-tool"],"yasr_multi_set":["yet-another-stars-rating"],"user_registration_sessions":["user-registration"],"ab_schedule_item_breaks":["bookly-responsive-appointment-booking-tool"],"ab_notifications":["bookly-responsive-appointment-booking-tool"],"ab_messages":["bookly-responsive-appointment-booking-tool"],"ab_holidays":["bookly-responsive-appointment-booking-tool"],"ab_customers":["bookly-responsive-appointment-booking-tool"],"ab_customer_appointments":["bookly-responsive-appointment-booking-tool"],"ab_coupons":["bookly-responsive-appointment-booking-tool"],"ab_coupon_services":["bookly-responsive-appointment-booking-tool"],"ab_categories":["bookly-responsive-appointment-booking-tool"],"ab_appointments":["bookly-responsive-appointment-booking-tool"],"ab_series":["bookly-responsive-appointment-booking-tool"],"ab_staff":["bookly-responsive-appointment-booking-tool"],"mech_statistik":["mechanic-visitor-counter"],"ab_services":["bookly-responsive-appointment-booking-tool"],"mec_events":["modern-events-calendar-lite"],"mediafromftp_log":["media-from-ftp"],"useronline":["wp-useronline","mingle-users-online","usermap"],"yasr_multi_values":["yet-another-stars-rating"],"ab_sent_notifications":["bookly-responsive-appointment-booking-tool"],"cm_popfly_history":["cm-pop-up-banners"],"connections_date":["connections"],"connections_email":["connections"],"connections_link":["connections"],"connections_messenger":["connections"],"ultimate_csv_importer_shortcode_manager":["wp-ultimate-csv-importer"],"connections_meta":["connections"],"connections_phone":["connections"],"ultimate_csv_importer_media":["wp-ultimate-csv-importer"],"connections_social":["connections"],"connections_term_meta":["connections"],"ultimate_csv_importer_mappingtemplate":["wp-ultimate-csv-importer"],"connections_term_relationships":["connections"],"ultimate_csv_importer_manageshortcodes":["wp-ultimate-csv-importer"],"ultimate_csv_importer_log_values":["wp-ultimate-csv-importer"],"ultimate_csv_importer_acf_fields":["wp-ultimate-csv-importer"],"connections_address":["connections"],"ultimate_csv_importer_shortcodes_statusrel":["wp-ultimate-csv-importer"],"connections":["connections"],"wplnst_urls_locations_att":["wp-link-status"],"cmplz_cookiebanners":["complianz-gdpr"],"ea_fields":["easy-appointments"],"participants_database_fields":["participants-database"],"participants_database":["participants-database"],"ea_error_logs":["easy-appointments"],"pantheon_sessions":["wp-native-php-sessions","stripe"],"participants_database_groups":["participants-database"],"wplnst_urls_status":["wp-link-status"],"wplnst_urls_locations":["wp-link-status"],"wpfb_reviews":["wp-google-places-review-slider","wp-facebook-reviews"],"wplnst_urls":["wp-link-status"],"wplnst_scans_objects":["wp-link-status"],"ea_connections":["easy-appointments"],"ea_appointments":["easy-appointments"],"connections_terms":["connections"],"wplnst_scans":["wp-link-status"],"swift_performance_warmup":["swift-performance-lite"],"wpfb_post_templates":["wp-google-places-review-slider","wp-facebook-reviews"],"ea_locations":["easy-appointments"],"connections_term_taxonomy":["connections"],"cimy_uef_wp_fields":["cimy-user-extra-fields"],"contact_bank":["contact-bank"],"crp_portfolios":["portfolio-wp"],"totalsoft_fonts":["gallery-videos","poll-wp","gallery-portfolio","calendar-event","woo-pricing-table","event-calendars"],"totalsoft_galleryv_check":["gallery-videos"],"totalsoft_galleryv_ctpg":["gallery-videos"],"totalsoft_galleryv_dbt":["gallery-videos"],"totalsoft_galleryv_dbt_1":["gallery-videos"],"totalsoft_galleryv_videos":["gallery-videos"],"totalsoft_galleryv_dbt_2":["gallery-videos"],"defender_lockout":["defender-security"],"totalsoft_galleryv_dbt_3":["gallery-videos"],"democracy_q":["democracy-poll"],"totalsoft_galleryv_dbt_4":["gallery-videos"],"crp_projects":["portfolio-wp"],"totalsoft_new_plugin":["gallery-videos","poll-wp","gallery-portfolio","calendar-event"],"totalsoft_galleryv_fg":["gallery-videos"],"totalsoft_galleryv_gvg":["gallery-videos"],"totalsoft_galleryv_hlg":["gallery-videos"],"custom_404_pro_logs":["custom-404-pro"],"custom_404_pro_options":["custom-404-pro"],"totalsoft_galleryv_id":["gallery-videos"],"totalsoft_galleryv_lvg":["gallery-videos"],"totalsoft_galleryv_manager":["gallery-videos"],"democracy_log":["democracy-poll"],"democracy_a":["democracy-poll"],"defender_lockout_log":["defender-security"],"totalsoft_galleryv_sg":["gallery-videos"],"nep_native_emoji":["native-emoji"],"my_custom_php":["my-custom-css"],"contact_bank_meta":["contact-bank"],"countries":["geodirectory","wp-bannerize-pro"],"totalsoft_galleryv_ttvg":["gallery-videos"],"mondula_form_wizards":["multi-step-form"],"testimonial_slider":["testimonial-slider"],"testimonial_slider_meta":["testimonial-slider"],"testimonial_slider_postmeta":["testimonial-slider"],"opanda_stats_v2":["social-locker","opt-in-panda"],"opanda_leads_fields":["social-locker","opt-in-panda"],"opanda_leads":["social-locker","opt-in-panda"],"th_popup":["lead-form-builder"],"ms_my_custom_php":["my-custom-css"],"ddownload_statistics":["delightful-downloads"],"ddp_log":["delete-duplicate-posts"],"ualp_user_activity":["user-activity-log"],"nm_personalized":["woocommerce-product-addon"],"nextend_smartslider_storage":["smart-slider-2"],"nextend_smartslider_slides":["smart-slider-2"],"nextend_smartslider_sliders":["smart-slider-2"],"nextend_smartslider_layouts":["smart-slider-2"],"wpfb_gettwitter_forms":["wp-facebook-reviews"],"cf7_data_entry":["cf7-database"],"cimy_uef_fields":["cimy-user-extra-fields"],"rm_resources":["custom-registration-form-builder-with-submission-manager"],"rm_front_users":["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_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_fields":["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_forms":["custom-registration-form-builder-with-submission-manager"],"rm_custom_status":["custom-registration-form-builder-with-submission-manager"],"rs_exclude":["slider-by-supsystic"],"rich_web_slider_effect8_loader":["slider-images"],"rich_web_slider_effect5_loader":["slider-images"],"rich_web_slider_effect6":["slider-images"],"rich_web_slider_effect6_loader":["slider-images"],"rich_web_slider_effect7":["slider-images"],"rich_web_slider_effect7_loader":["slider-images"],"rich_web_slider_effect8":["slider-images"],"rich_web_slider_effect9":["slider-images"],"richreviews":["rich-reviews"],"bsk_pdf_manager_relationships":["bsk-pdf-manager"],"bsk_pdf_manager_pdfs":["bsk-pdf-manager"],"bsk_pdf_manager_cats":["bsk-pdf-manager"],"rich_web_slider_effect9_loader":["slider-images"],"rich_web_slider_effects_data":["slider-images"],"rich_web_slider_font_family":["slider-images"],"rich_web_slider_id":["slider-images"],"sp_email_logs":["sparkpost"],"rs_folders":["slider-by-supsystic"],"rich_web_slider_effect4_loader":["slider-images"],"seamless_donations_audit":["seamless-donations"],"smuzform_entry_data":["contact-form-add"],"smuzform_entry":["contact-form-add"],"smooth_slider_postmeta":["smooth-slider"],"smooth_slider_meta":["smooth-slider"],"smooth_slider":["smooth-slider"],"sml":["mail-subscribe-list"],"sgmb_widget":["social-media-builder"],"sbb_blacklist":["stopbadbots"],"smackcsv_file_events":["wp-ultimate-csv-importer"],"simple_login_log":["simple-login-log"],"simply_static_pages":["simply-static"],"sm_sessions":["stripe","participants-database","awesome-support","wp-session-manager","content-protector","mz-mindbody-api"],"slp_extendo_meta":["store-locator-le"],"sbb_stats":["stopbadbots"],"sbb_badref":["stopbadbots"],"rs_maps":["slider-by-supsystic"],"rs_sliders":["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_sorting":["slider-by-supsystic"],"sbb_badips":["stopbadbots"],"rs_stats":["slider-by-supsystic"],"rs_tags":["slider-by-supsystic"],"rs_videos":["slider-by-supsystic"],"bannerize":["wp-bannerize"],"badgeos_ranks":["badgeos"],"badgeos_points":["badgeos"],"badgeos_achievements":["badgeos"],"rich_web_slider_effect5":["slider-images"],"rich_web_slider_effect4":["slider-images"],"cimy_uef_data":["cimy-user-extra-fields"],"psninja_amdd":["psn-pagespeed-ninja"],"power_stats_posts":["wp-power-stats"],"power_stats_referers":["wp-power-stats"],"power_stats_searches":["wp-power-stats"],"power_stats_visits":["wp-power-stats"],"private_blog_access_logs":["password-protect-wordpress"],"store_locator":["store-locator-le"],"psninja_amdd_cache":["psn-pagespeed-ninja"],"power_stats_os":["wp-power-stats"],"psninja_urls":["psn-pagespeed-ninja"],"psp":["premium-seo-pack"],"sticky":["wp-sticky"],"pvc_daily":["page-views-count"],"pvc_total":["page-views-count"],"ea_services":["easy-appointments"],"cf7_data":["cf7-database"],"power_stats_pageviews":["wp-power-stats"],"power_stats_browsers":["wp-power-stats"],"srzfb_albums":["srizon-facebook-album"],"supsystic_ss_views":["social-share-buttons-by-supsystic"],"ea_options":["easy-appointments"],"pms_member_subscriptionmeta":["paid-member-subscriptions"],"pms_member_subscriptions":["paid-member-subscriptions"],"pms_paymentmeta":["paid-member-subscriptions"],"pms_payments":["paid-member-subscriptions"],"po_plugins":["plugin-organizer"],"charitable_donors":["charitable"],"postmark_log":["postmark-approved-wordpress-plugin"],"charitable_donormeta":["charitable"],"charitable_campaign_donations":["charitable"],"supsystic_ss_shares_object":["social-share-buttons-by-supsystic"],"supsystic_ss_shares":["social-share-buttons-by-supsystic"],"supsystic_ss_projects":["social-share-buttons-by-supsystic"],"supsystic_ss_project_networks":["social-share-buttons-by-supsystic"],"supsystic_ss_networks":["social-share-buttons-by-supsystic"],"srzfb_galleries":["srizon-facebook-album"],"srs_simple_hits_counter":["srs-simple-hits-counter"],"rich_web_slider_effect3_loader":["slider-images"],"calendar_config":["calendar","calendar-plus"],"spider_video_player_playlist":["player"],"spider_video_player_player":["player"],"rich_web_photo_slider_instal":["slider-images"],"rich_web_photo_slider_instal_video":["slider-images"],"rich_web_photo_slider_manager":["slider-images"],"rich_web_slider_effect1":["slider-images"],"calendar_categories":["calendar","calendar-plus"],"spider_video_player_theme":["player"],"calendar":["calendar","calendar-plus"],"rich_web_slider_effect10":["slider-images"],"rich_web_slider_effect10_loader":["slider-images"],"rich_web_slider_effect1_loader":["slider-images"],"rich_web_slider_effect2":["slider-images"],"rich_web_slider_effect2_loader":["slider-images"],"rich_web_slider_effect3":["slider-images"],"spider_video_player_tag":["player"],"captcha_bank":["captcha-bank"],"rednao_smart_forms_entry":["smart-forms"],"cb_frontend_forms_table":["contact-bank"],"rednao_smart_forms_entry_detail":["smart-forms"],"rednao_smart_forms_table_name":["smart-forms"],"rednao_smart_forms_uploaded_files":["smart-forms"],"reorder_post_rel":["reorder-post-within-categories"],"cb_roles_capability":["contact-bank"],"cb_licensing":["contact-bank"],"cb_layout_settings_table":["contact-bank"],"cb_frontend_data_table":["contact-bank"],"captcha_bank_ip_locations":["captcha-bank"],"cb_form_settings_table":["contact-bank"],"cb_email_template_admin":["contact-bank"],"cb_dynamic_settings":["contact-bank"],"cb_create_control_form":["contact-bank"],"cb_contact_form":["contact-bank"],"spider_video_player_video":["player"],"captcha_bank_meta":["captcha-bank"],"ea_meta_fields":["easy-appointments"],"wpam_paypal_logs":["affiliates-manager"],"ea_staff":["easy-appointments"],"wcfm_marketplace_reverse_withdrawal":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_shipping_zone_locations":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_reviews_response_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_reviews_response":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_reviews":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_review_rating_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_reverse_withdrawal_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_refund_request_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_store_taxonomies":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_refund_request":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_product_multivendor":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_orders_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_orders":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_affiliate_orders_meta":["wc-multivendor-marketplace"],"wcfm_marketplace_affiliate_orders":["wc-multivendor-marketplace"],"wbz404_redirects":["404-redirected"],"wcfm_marketplace_shipping_zone_methods":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wcfm_marketplace_vendor_ledger":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"lead_form":["lead-form-builder"],"forum_polls":["asgaros-forum"],"wcmp_shipping_zone_methods":["dc-woocommerce-multi-vendor"],"forum_topics":["asgaros-forum"],"forum_reports":["asgaros-forum"],"forum_reactions":["asgaros-forum"],"forum_posts":["asgaros-forum"],"forum_polls_votes":["asgaros-forum"],"forum_polls_options":["asgaros-forum"],"forum_forums":["asgaros-forum"],"wcfm_marketplace_withdraw_request":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"forum_ads":["asgaros-forum"],"wcmp_shipping_zone_locations":["dc-woocommerce-multi-vendor"],"wcmp_products_map":["dc-woocommerce-multi-vendor"],"wcmp_cust_questions":["dc-woocommerce-multi-vendor"],"wcmp_cust_answers":["dc-woocommerce-multi-vendor"],"wcfm_membership_subscription":["wc-multivendor-membership"],"wcfm_marketplace_withdraw_request_meta":["wc-multivendor-marketplace","wc-multivendor-marketplace-migration"],"wbz404_logs":["404-redirected"],"lead_form_data":["lead-form-builder"],"wcmp_vendor_orders":["dc-woocommerce-multi-vendor"],"feedmanager_country":["wp-product-feed-manager"],"feedmanager_source":["wp-product-feed-manager"],"feedmanager_product_feedmeta":["wp-product-feed-manager"],"feedmanager_product_feed":["wp-product-feed-manager"],"feedmanager_field_categories":["wp-product-feed-manager"],"feedmanager_feed_status":["wp-product-feed-manager"],"feedmanager_errors":["wp-product-feed-manager"],"feedmanager_channel":["wp-product-feed-manager"],"ff_comments":["flow-flow-social-streams"],"wow_fmp":["float-menu"],"fca_eoi_subscribers":["mailchimp-wp","getresponse","aweber-wp","campaign-monitor-wp","mad-mimi-wp"],"fca_eoi_activity":["mailchimp-wp","getresponse","aweber-wp","campaign-monitor-wp","email-popup","mad-mimi-wp"],"wowslider":["wowslider"],"fa_user_logins":["user-login-history"],"login_log":["login-sidebar-widget","login-log"],"login_security_solution_fail":["login-security-solution"],"ff_cache":["flow-flow-social-streams"],"ff_image_cache":["flow-flow-social-streams"],"lead_form_extension":["lead-form-builder"],"lmtttmpts_failed_attempts":["limit-attempts"],"lead_form_options":["lead-form-builder"],"legal_pages":["wplegalpages"],"linkcategorymeta":["link-library"],"vslider":["vslider"],"links_extrainfo":["link-library"],"lmtttmpts_all_failed_attempts":["limit-attempts"],"lmtttmpts_blacklist":["limit-attempts"],"lmtttmpts_whitelist":["limit-attempts"],"ff_options":["flow-flow-social-streams"],"fileaway_metadata":["file-away"],"fileaway_downloads":["file-away"],"ff_streams_sources":["flow-flow-social-streams"],"ff_streams":["flow-flow-social-streams"],"ff_snapshots":["flow-flow-social-streams"],"ff_posts":["flow-flow-social-streams"],"ff_post_media":["flow-flow-social-streams"],"wcmp_vendor_ledger":["dc-woocommerce-multi-vendor"],"wcmp_visitors_stats":["dc-woocommerce-multi-vendor"],"lps_lockdowns":["login-page-styler"],"huge_it_catalog_products":["product-catalog"],"h5p_tags":["h5p"],"h5p_tmpfiles":["h5p"],"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_rating":["product-catalog"],"h5p_libraries_libraries":["h5p"],"huge_it_catalog_reviews":["product-catalog"],"huge_it_catalogs":["product-catalog"],"huge_it_video_params":["video-player"],"huge_it_video_players":["video-player"],"huge_it_videos":["video-player"],"gigpress_venues":["gigpress"],"gigpress_tours":["gigpress"],"h5p_results":["h5p"],"h5p_libraries_languages":["h5p"],"gigpress_artists":["gigpress"],"weforms_entries":["weforms"],"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"],"weforms_payments":["weforms"],"weforms_entrymeta":["weforms"],"h5p_contents":["h5p"],"h5p_libraries_hub_cache":["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"],"gigpress_shows":["gigpress"],"wise_chat_actions":["wise-chat"],"woo_shippment_provider":["woo-advanced-shipment-tracking"],"inbound_page_views":["landing-pages","cta","leads"],"gdgallerysettings":["photo-gallery-image"],"gdgalleryimages":["photo-gallery-image"],"gdgallerygalleries":["photo-gallery-image"],"inbound_events":["cta","landing-pages","leads"],"inbound_tracked_links":["cta","landing-pages","leads"],"import_log_detail":["wp-ultimate-csv-importer"],"gallery_settings":["gallery-bank"],"gallery_pics":["gallery-bank"],"gallery_bank_meta":["gallery-bank"],"gallery_bank":["gallery-bank"],"gallery_albums":["gallery-bank"],"wonderplugin_slider":["wonderplugin-slider-lite"],"import_postid":["wp-ultimate-csv-importer"],"geodir_api_keys":["geodirectory"],"wise_chat_bans":["wise-chat"],"wise_chat_users":["wise-chat"],"wise_chat_channel_users":["wise-chat"],"image_hover_ultimate_list":["image-hover-effects-ultimate"],"image_hover_ultimate_style":["image-hover-effects-ultimate"],"import_detail_log":["wp-ultimate-csv-importer"],"wise_chat_channels":["wise-chat"],"wise_chat_kicks":["wise-chat"],"wise_chat_messages":["wise-chat"],"geodir_tabs_layout":["geodirectory"],"geodir_attachments":["geodirectory"],"geodir_post_review":["geodirectory"],"geodir_post_icon":["geodirectory"],"geodir_gd_place_detail":["geodirectory"],"geodir_custom_sort_fields":["geodirectory"],"geodir_custom_fields":["geodirectory"],"geodir_countries":["geodirectory"],"geodir_business_hours":["geodirectory"],"lp_popups":["wplegalpages"],"lps_login_fails":["login-page-styler"],"eafl_clicks":["easy-affiliate-links"],"mainwp_wp_settings_backup":["mainwp"],"erp_ac_transactions":["erp"],"erp_ac_transaction_items":["erp"],"erp_ac_tax_items":["erp"],"erp_ac_tax":["erp"],"erp_ac_payments":["erp"],"erp_ac_ledger":["erp"],"erp_ac_journals":["erp"],"erp_acct_bill_details":["erp"],"erp_ac_chart_types":["erp"],"erp_ac_chart_classes":["erp"],"erp_ac_banks":["erp"],"mainwp_wp_sync":["mainwp"],"wpam_actions":["affiliates-manager"],"wpam_affiliates":["affiliates-manager"],"wpam_affiliates_fields":["affiliates-manager"],"erp_acct_bill_account_details":["erp"],"erp_acct_bills":["erp"],"wpam_events":["affiliates-manager"],"erp_acct_invoice_details_tax":["erp"],"erp_acct_ledger_details":["erp"],"erp_acct_ledger_categories":["erp"],"erp_acct_journals":["erp"],"erp_acct_journal_details":["erp"],"erp_acct_invoices":["erp"],"erp_acct_invoice_receipts_details":["erp"],"erp_acct_invoice_receipts":["erp"],"erp_acct_invoice_details":["erp"],"erp_acct_cash_at_banks":["erp"],"erp_acct_invoice_account_details":["erp"],"erp_acct_financial_years":["erp"],"erp_acct_expenses":["erp"],"erp_acct_expense_details":["erp"],"erp_acct_expense_checks":["erp"],"erp_acct_currency_info":["erp"],"erp_acct_chart_of_accounts":["erp"],"wpam_creatives":["affiliates-manager"],"wpam_impressions":["affiliates-manager"],"mainwp_wp_options":["mainwp"],"upcp_catalogue_items":["ultimate-product-catalogue"],"upcp_items":["ultimate-product-catalogue"],"upcp_item_images":["ultimate-product-catalogue"],"upcp_fields_meta":["ultimate-product-catalogue"],"upcp_custom_fields":["ultimate-product-catalogue"],"upcp_categories":["ultimate-product-catalogue"],"upcp_catalogues":["ultimate-product-catalogue"],"easymail_unsubscribed":["alo-easymail"],"upcp_tag_groups":["ultimate-product-catalogue"],"easymail_subscribers":["alo-easymail"],"easymail_stats":["alo-easymail"],"easymail_recipients":["alo-easymail"],"easy_pie_emails":["easy-pie-coming-soon"],"easy_pie_cs_subscribers":["easy-pie-coming-soon"],"easy_pie_cs_entities":["easy-pie-coming-soon"],"easy_pie_contacts":["easy-pie-coming-soon"],"upcp_subcategories":["ultimate-product-catalogue"],"upcp_tagged_items":["ultimate-product-catalogue"],"wpam_messages":["affiliates-manager"],"usces_order":["usc-e-shop"],"wpam_tracking_tokens":["affiliates-manager"],"wpam_tracking_tokens_purchase_logs":["affiliates-manager"],"wpam_transactions":["affiliates-manager"],"media_file_manager_log":["media-file-manager"],"usces_ordercart_meta":["usc-e-shop"],"usces_ordercart":["usc-e-shop"],"usces_order_meta":["usc-e-shop"],"usces_member_meta":["usc-e-shop"],"eemail_newsletter":["email-newsletter"],"usces_member":["usc-e-shop"],"usces_log":["usc-e-shop"],"usces_access":["usc-e-shop"],"micro_revisions":["microthemer"],"upcp_videos":["ultimate-product-catalogue"],"upcp_tags":["ultimate-product-catalogue"],"eemail_newsletter_sub":["email-newsletter"],"erp_acct_ledger_settings":["erp"],"erp_acct_opening_balances":["erp"],"vimeography_gallery_meta":["vimeography"],"erp_hr_leave_requests":["erp"],"erp_peoples":["erp"],"erp_peoplemeta":["erp"],"erp_people_types":["erp"],"erp_people_type_relations":["erp"],"erp_hr_work_exp":["erp"],"erp_hr_leaves":["erp"],"erp_hr_leave_policies":["erp"],"mainwp_wp_backup":["mainwp"],"erp_hr_leave_entitlements":["erp"],"erp_hr_holiday":["erp"],"erp_hr_employees":["erp"],"erp_hr_employee_performance":["erp"],"erp_hr_employee_notes":["erp"],"erp_hr_employee_history":["erp"],"erp_hr_education":["erp"],"mainwp_wp_backup_progress":["mainwp"],"mainwp_wp":["mainwp"],"erp_hr_depts":["erp"],"mainwp_client_report":["mainwp"],"vimeography_gallery":["vimeography"],"lsp_images":["logo-slider","best-local-seo-tools"],"lsp_sliders":["logo-slider"],"wp_quiz_play_data":["wp-quiz"],"expm_maker_pages":["expand-maker"],"expm_maker":["expand-maker","read-more"],"maintenance_page":["maintenance-page"],"mainwp_client_report_client":["mainwp"],"mainwp_users":["mainwp"],"mainwp_client_report_format":["mainwp"],"mainwp_client_report_site_token":["mainwp"],"mainwp_client_report_token":["mainwp"],"mainwp_group":["mainwp"],"mainwp_request_log":["mainwp"],"event_list":["event-list"],"mainwp_tips":["mainwp"],"erp_hr_designations":["erp"],"mainwp_wp_group":["mainwp"],"erp_acct_pay_bill":["erp"],"erp_acct_product_details":["erp"],"erp_acct_tax_agencies":["erp"],"erp_acct_purchase_details":["erp"],"erp_acct_purchase_account_details":["erp"],"erp_acct_purchase":["erp"],"erp_acct_products":["erp"],"erp_acct_product_types":["erp"],"erp_acct_product_categories":["erp"],"erp_acct_tax_cat_agency":["erp"],"erp_acct_people_trn_details":["erp"],"erp_acct_people_trn":["erp"],"erp_acct_people_account_details":["erp"],"erp_acct_payment_methods":["erp"],"erp_acct_pay_purchase_details":["erp"],"erp_acct_pay_purchase":["erp"],"erp_acct_pay_bill_details":["erp"],"erp_acct_tax_agency_details":["erp"],"erp_acct_tax_categories":["erp"],"erp_hr_dependents":["erp"],"erp_crm_campaigns":["erp"],"erp_hr_announcement":["erp"],"erp_crm_save_search":["erp"],"erp_crm_save_email_replies":["erp"],"erp_crm_customer_companies":["erp"],"erp_crm_customer_activities":["erp"],"erp_crm_contact_subscriber":["erp"],"erp_crm_contact_group":["erp"],"erp_crm_campaign_group":["erp"],"erp_acct_tax_pay":["erp"],"erp_crm_activities_task":["erp"],"erp_company_locations":["erp"],"erp_audit_log":["erp"],"erp_acct_voucher_no":["erp"],"erp_acct_trn_status_types":["erp"],"erp_acct_transfer_voucher":["erp"],"erp_acct_taxes":["erp"],"erp_acct_ledgers":["erp"],"sm_advanced_search_temp":["smart-manager-for-wp-e-commerce"],"addonlibrary_addons":["unlimited-addons-for-wpbakery-page-builder","unlimited-elements-for-elementor","addon-library","blox-page-builder"],"ckuci_events":["wp-ultimate-csv-importer"],"rt_forms_uploaded_files":["smart-forms"],"avhec_category_groups":["extended-categories-widget"],"wti_like_post":["wti-like-post"],"wpusb_url_shortener":["wpupper-share-buttons"],"ckuci_history":["wp-ultimate-csv-importer"],"wpusb_report":["wpupper-share-buttons","jogar-mais-social-share-buttons"],"anythingpopup":["anything-popup"],"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"],"wpwc_posts":["wp-word-count"],"awpcp_tasks":["another-wordpress-classifieds-plugin"],"advps_optionset":["advanced-post-slider"],"allowphp_functions":["allow-php-in-posts-and-pages"],"xt_statistic":["xt-visitor-counter"],"addonlibrary_categories":["unlimited-elements-for-elementor","unlimited-addons-for-wpbakery-page-builder","addon-library","blox-page-builder"],"aps_log":["auto-post-scheduler"],"adl_lp_templates":["legal-pages"],"audit_trail":["audit-trail"],"apsl_users_social_profile_details":["accesspress-social-login-lite"],"advps_thumbnail":["advanced-post-slider"],"afap_logs":["accesspress-facebook-auto-post"],"dopbsp_translation_en":["booking-system"],"dopbsp_emails_translation":["booking-system"],"dopbsp_settings_notifications":["booking-system"],"dopbsp_emails":["booking-system"],"dopbsp_discounts_items_rules":["booking-system"],"dopbsp_extras":["booking-system"],"adintegration":["active-directory-integration"],"dopbsp_discounts_items":["booking-system"],"dopbsp_smses_translation":["booking-system"],"dopbsp_extras_groups_items":["booking-system"],"dopbsp_extras_groups":["booking-system"],"dopbsp_models":["booking-system"],"dopbsp_settings":["booking-system"],"waiting":["waiting"],"sliderpatch_blacklist":["patch-for-revolution-slider"],"dopbsp_searches":["booking-system"],"dopbsp_rules":["booking-system"],"dopbsp_reservations":["booking-system"],"dopbsp_settings_payment":["booking-system"],"dopbsp_discounts":["booking-system"],"dopbsp_settings_calendar":["booking-system"],"dopbsp_locations":["booking-system"],"dopbsp_languages":["booking-system"],"dopbsp_forms_select_options":["booking-system"],"dopbsp_forms_fields":["booking-system"],"dopbsp_settings_search":["booking-system"],"dopbsp_smses":["booking-system"],"dopbsp_forms":["booking-system"],"dopbsp_fees":["booking-system"],"fblb":["wp-like-button"],"dopbsp_availability":["booking-system"],"dopbsp_days_unavailable":["booking-system"],"role_scope_rs":["role-scoper"],"lifterlms_api_keys":["lifterlms"],"lifterlms_events":["lifterlms"],"lifterlms_notifications":["lifterlms"],"lifterlms_product_to_voucher":["lifterlms"],"lifterlms_quiz_attempts":["lifterlms"],"lifterlms_user_postmeta":["lifterlms"],"smartgoogleadwords":["smart-google-code-inserter"],"lifterlms_voucher_code_redemptions":["lifterlms"],"lifterlms_vouchers_codes":["lifterlms"],"lifterlms_webhooks":["lifterlms"],"8degree_maintenance":["8-degree-coming-soon-page"],"scroll_news":["vertical-news-scroller"],"wp_floating_menu_custom_templates":["wp-floating-menu"],"wp_floating_menu_details":["wp-floating-menu"],"ihrss_plugin":["image-horizontal-reel-scroll-slideshow"],"email":["wp-email"],"wp_phpmyadmin_extension__errors_log":["wp-phpmyadmin-extension"],"stb_styles":["wp-special-textboxes"],"bs_forms":["wp-booking-system","form-creation-for-bootstrap"],"bs_bookings":["wp-booking-system"],"modalsimple":["modal-window"],"8degree_comingsoon":["8-degree-coming-soon-page"],"dopbsp_days_available":["booking-system"],"referers":["mangboard"],"dopbsp_days":["booking-system"],"dopbsp_coupons":["booking-system"],"dopbsp_calendars":["booking-system"],"dopbsp_availability_price":["booking-system"],"dopbsp_availability_no":["booking-system"],"xyz_cfm_theme_details":["contact-form-manager"],"dopbsp_api_keys":["booking-system"],"meta":["mangboard"],"options":["mangboard"],"users":["mangboard","wp-championship"],"gf_font_post":["free-google-fonts"],"vcp_log":["easy-visitor-counter","simple-visitor-counter-widget","awesome-visitor-counter","vieraslaskuri"],"mlab_popup":["homepage-pop-up"],"hotel_booking_order_itemmeta":["wp-hotel-booking"],"hotel_booking_order_items":["wp-hotel-booking"],"hotel_booking_plans":["wp-hotel-booking"],"mltlngg_terms_translate":["multilanguage"],"_query_cache":["wp-meta-data-filter-and-taxonomy-filter"],"mltlngg_translate":["multilanguage"],"gf_fontlist":["free-google-fonts"],"logs":["mangboard"],"bs_calendars":["wp-booking-system"],"xyz_cfm_sender_email_address":["contact-form-manager"],"wpbs_event_meta":["wp-booking-system"],"access_ip":["mangboard"],"mdf_stat_tmp":["wp-meta-data-filter-and-taxonomy-filter"],"wpbs_booking_meta":["wp-booking-system"],"wpbs_bookings":["wp-booking-system"],"wpbs_calendar_meta":["wp-booking-system"],"wpbs_calendars":["wp-booking-system"],"wpbs_events":["wp-booking-system"],"wppcp_group_users":["wp-private-content-plus"],"wpbs_form_meta":["wp-booking-system"],"wpbs_forms":["wp-booking-system"],"wpbs_legend_item_meta":["wp-booking-system"],"mdf_stat_buffer":["wp-meta-data-filter-and-taxonomy-filter"],"mdf_query_cache":["wp-meta-data-filter-and-taxonomy-filter"],"wpbs_legend_items":["wp-booking-system"],"wppcp_private_page":["wp-private-content-plus"],"mgmlp_folders":["media-library-plus"],"xyz_cfm_form_elements":["contact-form-manager"],"site_cache":["wp-sitemanager"],"sitemanager_device_group":["wp-sitemanager"],"sitemanager_device":["wp-sitemanager"],"photo_gallery_wp_like_dislike":["gallery-and-caption"],"photo_gallery_wp_images":["gallery-and-caption"],"photo_gallery_wp_gallerys":["gallery-and-caption"],"files":["mangboard"],"sitemanager_device_relation":["wp-sitemanager"],"groups_rs":["role-scoper"],"wow_mwp":["modal-window"],"h_editors":["mangboard"],"cookies":["mangboard"],"user2role2object_rs":["role-scoper"],"user2group_rs":["role-scoper"],"boards":["mangboard"],"xyz_cfm_form":["contact-form-manager"],"analytics":["mangboard"],"testimonial_basics":["testimonial-basics"],"adspage":["ads-wp-site-count"],"bsearch":["better-search"],"wpum_registration_formmeta":["wp-user-manager"],"most_popular":["wp-most-popular"],"wpjf3_mr_unrestricted_ips":["jf3-maintenance-mode"],"m_communications":["membership"],"eme_countries":["events-made-easy"],"wpcf7pdf_files":["send-pdf-for-contact-form-7"],"m_coupons":["membership"],"lgp_crons":["content-links"],"woocommerce_ir_sms_archive":["persian-woocommerce-sms"],"woocommerce_ir_sms_contacts":["persian-woocommerce-sms"],"m_levelmeta":["membership"],"eme_members":["events-made-easy"],"eme_dgroups":["events-made-easy"],"eme_discounts":["events-made-easy"],"eme_events":["events-made-easy"],"m_member_payments":["membership"],"bsearch_daily":["better-search"],"sendpress_queue":["sendpress"],"eme_locations_cf":["events-made-easy"],"lgp_log":["content-links"],"eme_mqueue":["events-made-easy"],"eme_memberships_cf":["events-made-easy"],"eme_memberships":["events-made-easy"],"vtprd_purchase_log_product":["pricing-deals-for-woocommerce"],"vtprd_purchase_log_product_rule":["pricing-deals-for-woocommerce"],"gmw_locationmeta":["geo-my-wp"],"lgp_posts":["content-links"],"wpda_form_fields":["contact-forms-builder"],"sendpress_list_subscribers":["sendpress"],"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"],"sendpress_connections":["sendpress"],"sendpress_customfields":["sendpress"],"410_links":["wp-410"],"lgp_linking":["content-links"],"eme_mailings":["events-made-easy"],"wpjf3_mr_access_keys":["jf3-maintenance-mode"],"eme_categories":["events-made-easy"],"iqfm_inquiryform_result_detail":["inquiry-form-creator"],"formbuilder_fields":["formbuilder"],"formbuilder_forms":["formbuilder"],"formbuilder_pages":["formbuilder"],"formbuilder_responses":["formbuilder"],"iqfm_inquiryform_result":["inquiry-form-creator"],"formbuilder_results":["formbuilder"],"formbuilder_tags":["formbuilder"],"iqfm_resultid_sequence":["inquiry-form-creator"],"iqfm_inquiryform_component":["inquiry-form-creator"],"m_pings":["membership"],"pieregister_lockdowns":["pie-register"],"pieregister_code":["pie-register"],"eme_groups":["events-made-easy"],"m_subscription_transaction":["membership"],"m_subscriptionmeta":["membership"],"m_subscriptions":["membership"],"m_subscriptions_levels":["membership"],"iqfm_inquiryform_mail":["inquiry-form-creator"],"eme_holidays":["events-made-easy"],"sendpress_schedules":["sendpress"],"sendpress_subscribers_tracker":["sendpress"],"m_membership_levels":["membership"],"wpum_registration_forms":["wp-user-manager"],"sendpress_subscribers":["sendpress"],"pieregister_redirect_settings":["pie-register"],"sendpress_subscribers_meta":["sendpress"],"sendpress_subscribers_status":["sendpress"],"eme_locations":["events-made-easy"],"sendpress_subscribers_url":["sendpress"],"iqfm_inquiryform":["inquiry-form-creator"],"sendpress_url":["sendpress"],"m_membership_news":["membership"],"eme_events_cf":["events-made-easy"],"eme_fieldtypes":["events-made-easy"],"m_membership_relationships":["membership"],"m_membership_rules":["membership"],"eme_formfields":["events-made-easy"],"m_ping_history":["membership"],"vtprd_purchase_log":["pricing-deals-for-woocommerce"],"sendpress_autoresponders":["sendpress"],"wpgmappity_maps":["wp-gmappity-easy-google-maps"],"wpum_fieldmeta":["wp-user-manager"],"wangguardcronjobs":["wangguard"],"news_announcement":["news-announcement-scroll"],"gmw_locations":["geo-my-wp"],"updater_list":["updater"],"berocket_termmeta":["advanced-product-labels-for-woocommerce"],"wpum_field_groups":["wp-user-manager"],"microblogposter_user_accounts":["microblog-poster"],"wangguardreportqueue":["wangguard"],"eme_usergroups":["events-made-easy"],"microblogposter_old_items":["microblog-poster"],"fep_messages":["front-end-pm","fep-contact-form"],"microblogposter_logs":["microblog-poster"],"eme_templates":["events-made-easy"],"eme_states":["events-made-easy"],"fep_messagemeta":["front-end-pm"],"wangguardquestions":["wangguard"],"wangguardsignupsstatus":["wangguard"],"wll_login_attempts":["when-last-login"],"wap_nex_forms_files":["nex-forms-express-wp-form-builder"],"gmw_forms":["geo-my-wp"],"messages":["wpjam-basic","wp-live-group-chat","personal-chat-room","modalcontact"],"downloads":["wp-downloadmanager","hacklog-downloadmanager"],"tp_special_route":["travelpayouts"],"tp_special_offer":["travelpayouts"],"wap_nex_forms_entries":["nex-forms-express-wp-form-builder"],"tp_search_shortcodes":["travelpayouts"],"tp_hotel_list_shortcode":["travelpayouts"],"likebtn_vote":["likebtn-like-button"],"wap_nex_forms_email_templates":["nex-forms-express-wp-form-builder"],"likebtn_item":["likebtn-like-button"],"tp_auto_replac_links":["travelpayouts"],"wap_nex_forms":["nex-forms-express-wp-form-builder"],"wap_nex_forms_stats_interactions":["nex-forms-express-wp-form-builder"],"wangguarduserstatus":["wangguard"],"wap_nex_forms_views":["nex-forms-express-wp-form-builder"],"fep_attachments":["front-end-pm"],"fep_participants":["front-end-pm"],"microblogposter_items_meta":["microblog-poster"],"cpk_wpcsv_export_queue":["wp-csv"],"eme_payments":["events-made-easy"],"eme_bookings":["events-made-easy"],"wpum_fieldsgroups":["wp-user-manager"],"wpgmappity_markers":["wp-gmappity-easy-google-maps"],"eme_answers":["events-made-easy"],"cpk_wpcsv_log":["wp-csv"],"custom_headers":["dynamic-headers"],"huge_it_share_params":["wp-share-buttons"],"huge_it_share_params_posts":["wp-share-buttons"],"eme_people":["events-made-easy"],"eme_recurrence":["events-made-easy"],"hc_hmw_short_code":["healcode-mindbody-widget"],"m_urlgroups":["membership"],"wpum_search_fields":["wp-user-manager"],"wpum_fields":["wp-user-manager","miniorange-user-manager"],"microblogposter_accounts":["microblog-poster"],"useful_banner_manager_banners":["useful-banner-manager"],"rich_web_vs_effect_7":["slider-video"],"gdformcaptchas":["easy-contact-form-builder"],"cpm_file_relationship":["wedevs-project-manager"],"app_transactions":["appointments"],"cpm_project_items":["wedevs-project-manager"],"sms_subscribes_group":["wp-sms"],"sms_subscribes":["wp-sms"],"wfpklist_template_data":["print-invoices-packing-slip-labels-for-woocommerce"],"cpm_tasks":["wedevs-project-manager"],"app_working_hours":["appointments"],"gdformfieldoptions":["easy-contact-form-builder"],"oiyamaps_cache":["oi-yamaps"],"ptc_logs":["ptypeconverter"],"rich_web_vs_effect_9_loader":["slider-video"],"rich_web_vs_effect_9":["slider-video"],"rich_web_vs_effect_8_loader":["slider-video"],"rich_web_vs_effect_8":["slider-video"],"rich_web_vs_effect_7_loader":["slider-video"],"app_appointments":["appointments"],"aft_cc":["code-snippets-extended"],"app_services":["appointments"],"gdformsettings":["easy-contact-form-builder"],"gdformaddressfieldoptions":["easy-contact-form-builder"],"app_appointmentmeta":["appointments"],"gdformlabelpositions":["easy-contact-form-builder"],"gdformthemes":["easy-contact-form-builder"],"app_workers":["appointments"],"sms_send":["wp-sms"],"content_tabs_ultimate_style":["vc-tabs"],"gdformforms":["easy-contact-form-builder"],"gdformfieldtypes":["easy-contact-form-builder"],"ip2location_country_blocker_log":["ip2location-country-blocker"],"content_tabs_ultimate_list":["vc-tabs"],"adsense_invalid_click_protector":["ad-invalid-click-protector"],"gdformsubmissions":["easy-contact-form-builder"],"content_tabs_ultimate_import":["vc-tabs"],"gdformsubmissionfields":["easy-contact-form-builder"],"app_exceptions":["appointments"],"cpm_user_role":["wedevs-project-manager"],"quoterotator":["flexi-quote-rotator"],"wplx_tracking":["free-sales-funnel-squeeze-pages-landing-page-builder-templates-make"],"gdformonsubmitactions":["easy-contact-form-builder"],"socialsnap_stats":["socialsnap"],"gdformfields":["easy-contact-form-builder"],"formcraft_b_forms":["formcraft-form-builder"],"rich_web_vs_effect_6_loader":["slider-video"],"pm_role_project_users":["wedevs-project-manager"],"easy_gallery":["wp-easy-gallery"],"pm_tasks":["wedevs-project-manager"],"easy_gallery_images":["wp-easy-gallery"],"wp_email_capture_registered_members":["wp-email-capture"],"pm_settings":["wedevs-project-manager"],"cmc_coins":["cryptocurrency-price-ticker-widget"],"pm_roles":["wedevs-project-manager"],"pm_role_user":["wedevs-project-manager"],"wpsp_support_menu":["wp-support-plus-responsive-ticket-system"],"wpsp_panel_custom_menu":["wp-support-plus-responsive-ticket-system"],"wptripadvisor_post_templates":["wp-tripadvisor-review-slider"],"redirect_404_hp_cp_log":["redirect-404-error-page-to-homepage-or-custom-page"],"pm_role_project_capabilities":["wedevs-project-manager"],"pm_role_project":["wedevs-project-manager"],"pm_projects":["wedevs-project-manager"],"pm_meta":["wedevs-project-manager"],"pm_imports":["wedevs-project-manager"],"pm_files":["wedevs-project-manager"],"pm_comments":["wedevs-project-manager"],"pm_category_project":["wedevs-project-manager"],"wptripadvisor_reviews":["wp-tripadvisor-review-slider"],"xyz_em_additional_field_info":["newsletter-manager"],"wp_email_capture_temp_members":["wp-email-capture"],"wpsp_ticket":["wp-support-plus-responsive-ticket-system"],"mapmarker_api":["map-multi-marker"],"wpsp_users":["wp-support-plus-responsive-ticket-system"],"wpsp_ticket_thread":["wp-support-plus-responsive-ticket-system"],"wpsp_ticket_list_order":["wp-support-plus-responsive-ticket-system"],"mapmarker_marker":["map-multi-marker"],"mapmarker_option":["map-multi-marker"],"dtree_cache":["wp-dtree-30"],"wpsp_ticket_form_order":["wp-support-plus-responsive-ticket-system"],"ulogin":["ulogin"],"xyz_em_email_campaign":["newsletter-manager"],"xyz_em_additional_field_value":["newsletter-manager"],"xyz_em_email_template":["newsletter-manager"],"xyz_em_sender_email_address":["newsletter-manager"],"short_links":["mts-url-shortener"],"short_link_replacements":["mts-url-shortener"],"short_link_clicks":["mts-url-shortener"],"xyz_em_email_address":["newsletter-manager"],"rich_web_vs_effect_6":["slider-video"],"xyz_em_attachment":["newsletter-manager"],"xyz_em_address_list_mapping":["newsletter-manager"],"pm_categories":["wedevs-project-manager"],"ev_claves":["envialosimple-email-marketing-y-newsletters-gratis"],"pm_activities":["wedevs-project-manager"],"yumprint_recipe_theme":["recipe-card"],"formcraft_b_submissions":["formcraft-form-builder"],"rich_web_vs_effect_1_loader":["slider-video"],"pm_boards":["wedevs-project-manager"],"rich_web_vs_effect_2":["slider-video"],"rich_web_vs_effect_5":["slider-video"],"formcraft_b_views":["formcraft-form-builder"],"yumprint_recipe_view":["recipe-card"],"wpsp_catagories":["wp-support-plus-responsive-ticket-system"],"rich_web_vs_effect_1":["slider-video"],"wpsp_canned_reply":["wp-support-plus-responsive-ticket-system"],"rich_web_vs_effect_2_loader":["slider-video"],"yumprint_recipe_recipe":["recipe-card"],"rich_web_vs_effect_3":["slider-video"],"wpsp_attachments":["wp-support-plus-responsive-ticket-system"],"rich_web_vs_effect_3_loader":["slider-video"],"rich_web_vs_effect_4":["slider-video"],"rich_web_vs_effect_4_loader":["slider-video"],"rich_web_vs_effect_10":["slider-video"],"rich_web_vs_effect_10_loader":["slider-video"],"pm_boardables":["wedevs-project-manager"],"wpsp_custom_priority":["wp-support-plus-responsive-ticket-system"],"wpsp_agent_assign_data":["wp-support-plus-responsive-ticket-system"],"wpsp_agent_settings":["wp-support-plus-responsive-ticket-system"],"rich_web_video_slider_effects_data":["slider-video"],"pm_capabilities":["wedevs-project-manager"],"rich_web_video_slider_font_family":["slider-video"],"rich_web_video_slider_id":["slider-video"],"wpsp_faq_catagories":["wp-support-plus-responsive-ticket-system"],"rich_web_video_slider_manager":["slider-video"],"wpsp_custom_status":["wp-support-plus-responsive-ticket-system"],"wpsp_faq":["wp-support-plus-responsive-ticket-system"],"wpsp_custom_fields":["wp-support-plus-responsive-ticket-system"],"wce_editor_content":["custom-css-js-php"],"rich_web_video_slider_videos":["slider-video"],"rich_web_vs_effect_5_loader":["slider-video"],"pm_assignees":["wedevs-project-manager"],"wppg_gallery":["simple-photo-gallery"],"wppg_global_meta":["simple-photo-gallery"],"ewd_otp_customers":["order-tracking"],"reservationmeta":["easyreservations"],"un_termmeta":["usernoise"],"wppg_settings":["simple-photo-gallery"],"iconosquare_widget":["instagram-image-gallery"],"reservations":["easyreservations"],"wsm_hourwisefirstvisitors":["wp-stats-manager"],"counterize_pages":["counterizeii"],"wppg_downloads":["simple-photo-gallery"],"rtec_registrations":["registrations-for-the-events-calendar"],"ewd_otp_order_statuses":["order-tracking"],"wsm_hourwisebouncerate":["wp-stats-manager"],"cpappbk_messages":["appointment-hour-booking"],"cpappbk_forms":["appointment-hour-booking"],"ewd_otp_sales_reps":["order-tracking"],"wsm_datewisevisitors":["wp-stats-manager"],"wsm_datewisepageviews":["wp-stats-manager"],"email_user":["wp-email-users"],"ewd_otp_fields_meta":["order-tracking"],"wsm_datewisefirstvisitors":["wp-stats-manager"],"wsm_datewisebouncerate":["wp-stats-manager"],"wsm_datewisebounce":["wp-stats-manager"],"counterize_useragents":["counterizeii"],"counterize_referers":["counterizeii"],"ewd_otp_orders":["order-tracking"],"counterize_keywords":["counterizeii"],"counterize":["counterizeii"],"wppg_album":["simple-photo-gallery"],"wsm_hourwisebounce":["wp-stats-manager"],"wpmlposts":["newsletters-lite"],"responsive_thumbnail_slider":["wp-responsive-thumbnail-slider"],"wpmlbounces":["newsletters-lite"],"wpmlhistorieslists":["newsletters-lite"],"wpmlhistoriesattachments":["newsletters-lite"],"wpmlgroups":["newsletters-lite"],"wpmlforms":["newsletters-lite"],"wpmlfieldslists":["newsletters-lite"],"quick_chat_messages":["quick-chat"],"quick_chat_users":["quick-chat"],"wpmlfieldsforms":["newsletters-lite"],"wpmlfields":["newsletters-lite"],"wpmlemails":["newsletters-lite"],"wpmlcountries":["newsletters-lite"],"wpmlcontents":["newsletters-lite"],"wpmlclicks":["newsletters-lite"],"wpmlautoresponderslists":["newsletters-lite"],"cd_customizations":["client-dash"],"hmp_rating":["html5-jquery-audio-player"],"wpmlautorespondersforms":["newsletters-lite"],"wpmlautoresponders":["newsletters-lite"],"wpmlautoresponderemails":["newsletters-lite"],"cn_track_post":["post-views-stats"],"randomtext":["randomtext"],"wpmltemplates":["newsletters-lite"],"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"],"wpmlhistory":["newsletters-lite"],"wpmllatestposts":["newsletters-lite"],"wpmlmailinglists":["newsletters-lite"],"weu_unsubscriber":["wp-email-users"],"gdpr_data_register":["wp-gdpr-core"],"gdpr_del_requests":["wp-gdpr-core"],"gdpr_log":["wp-gdpr-core"],"gdpr_requests":["wp-gdpr-core","gdpr-personal-data-reports"],"wsm_dailyhourlyreport":["wp-stats-manager"],"twp_logs":["telegram-for-wp"],"emd_sessions":["youtube-showcase"],"wpmloptions":["newsletters-lite"],"wsm_countries":["wp-stats-manager"],"weu_group27":["wp-email-users"],"pto_files":["gourl-bitcoin-payment-gateway-paid-downloads-membership"],"wsm_browsers":["wp-stats-manager"],"wpmlorders":["newsletters-lite"],"weu_user_notification":["wp-email-users"],"wpmlsubscribermetas":["newsletters-lite"],"wpmllatestpostssubscriptions":["newsletters-lite"],"weu_subscribers":["wp-email-users"],"weu_smtp_conf":["wp-email-users"],"wpmlunsubscribes":["newsletters-lite"],"weu_sent_email":["wp-email-users"],"wsm_datewise_report":["wp-stats-manager"],"wpmlthemes":["newsletters-lite"],"pto_membership":["gourl-bitcoin-payment-gateway-paid-downloads-membership"],"rmp_analytics":["rate-my-post"],"pto_payments":["gourl-bitcoin-payment-gateway-paid-downloads-membership"],"wpmlsubscribers":["newsletters-lite"],"wpmlsubscriberslists":["newsletters-lite"],"pto_products":["gourl-bitcoin-payment-gateway-paid-downloads-membership"],"wpmlsubscribersoptions":["newsletters-lite"],"wpmllinks":["newsletters-lite"],"hmp_playlist":["html5-jquery-audio-player"],"ewd_otp_custom_fields":["order-tracking"],"mr_rating_item_entry":["multi-rating"],"wsm_monthwise_report":["wp-stats-manager"],"appbox":["wp-appbox"],"knewsautomatedsel":["knews"],"scs_octo":["coming-soon-by-supsystic"],"knewsextrafields":["knews"],"_projects":["project-supremacy"],"knewskeys":["knews"],"_groups":["project-supremacy","dms"],"wsm_monthwisebouncerate":["wp-stats-manager"],"wsm_monthwisebounce":["wp-stats-manager"],"knewsletters":["knews"],"wpdevart_themes":["booking-calendar"],"knewslists":["knews"],"knewstats":["knews"],"edn_subscriber":["8-degree-notification-bar"],"ps_group_relationships":["contexture-page-security"],"ps_groups":["contexture-page-security"],"wsm_monthlydailyreport":["wp-stats-manager"],"wsm_logvisit":["wp-stats-manager"],"wsm_resolutions":["wp-stats-manager"],"knewsubmits":["knews"],"ps_security":["contexture-page-security"],"_redirects":["project-supremacy"],"wpdevart_reservations":["booking-calendar"],"wsm_hourwisevisitors":["wp-stats-manager"],"knewsautomatedposts":["knews"],"wsm_regions":["wp-stats-manager"],"mr_rating_item":["multi-rating"],"wsm_pageviews":["wp-stats-manager"],"wsm_osystems":["wp-stats-manager"],"wsm_bouncevisits":["wp-stats-manager"],"wpdevart_calendars":["booking-calendar"],"knewsautomated":["knews"],"wpdevart_dates":["booking-calendar"],"aff_user_agents":["affiliates"],"wpdevart_extras":["booking-calendar"],"aff_uris":["affiliates"],"_reviews":["project-supremacy","photo-video-store","star-review-manager"],"scs_usage_stat":["coming-soon-by-supsystic"],"wpdevart_forms":["booking-calendar"],"wsm_searchengines":["wp-stats-manager"],"wpdevart_payments":["booking-calendar"],"mr_rating_item_entry_value":["multi-rating"],"_manage_schedule":["wp-scheduled-posts"],"wsm_monthwisevisitors":["wp-stats-manager"],"mprm_customer":["mp-restaurant-menu"],"wsm_monthwisepageviews":["wp-stats-manager"],"wsm_monthwisefirstvisitors":["wp-stats-manager"],"ipanorama":["ipanorama-360-virtual-tour-builder-lite"],"ps_sessions":["content-protector"],"wsm_loguniquevisit":["wp-stats-manager"],"wsm_hourwisepageviews":["wp-stats-manager"],"wsm_uniquevisitors":["wp-stats-manager"],"knewsuserslists":["knews"],"scs_subscribers":["coming-soon-by-supsystic"],"knewsubmitsdetails":["knews"],"seo_title_tag_tag":["seo-title-tag"],"seo_title_tag_url":["seo-title-tag"],"apmm_custom_theme":["ap-mega-menu"],"scs_octo_blocks_categories":["coming-soon-by-supsystic"],"aff_affiliates_users":["affiliates"],"wsm_toolbars":["wp-stats-manager"],"wsm_url_log":["wp-stats-manager"],"knewsusersevents":["knews"],"wsm_visitorinfo":["wp-stats-manager"],"wsm_yearlymonthlyreport":["wp-stats-manager"],"aff_affiliates":["affiliates"],"scs_octo_blocks":["coming-soon-by-supsystic"],"mr_rating_subject":["multi-rating"],"wsm_yearwise_report":["wp-stats-manager"],"apct_testimonial_detail":["ap-custom-testimonial"],"nggcf_fields_link":["nextgen-gallery-custom-fields"],"nggcf_fields":["nextgen-gallery-custom-fields"],"nggcf_field_values":["nextgen-gallery-custom-fields"],"knewsusersextra":["knews"],"seo_title_tag_category":["seo-title-tag"],"avhfdas_ipcache":["avh-first-defense-against-spam"],"watu_takings":["watu"],"aff_robots":["affiliates"],"jw_easy_logo_slider_setting":["easy-logo-slider"],"jw_easy_logo_slider":["easy-logo-slider"],"aff_referrals":["affiliates"],"way2enjoy_dir_images":["way2enjoy-compress-images","regenerate-thumbnails-in-cloud"],"aff_referral_items":["affiliates"],"pimwick_gift_card_activity":["pw-woocommerce-gift-cards"],"aff_hits":["affiliates"],"knewsusers":["knews"],"pimwick_gift_card":["pw-woocommerce-gift-cards"],"watu_question":["watu"],"sharebar":["sharebar"],"watu_master":["watu"],"watu_grading":["watu"],"scs_modules":["coming-soon-by-supsystic"],"watu_answer":["watu"],"scs_modules_type":["coming-soon-by-supsystic"],"rcl_chat_messagemeta":["wp-recall"],"rcl_chat_messages":["wp-recall"],"podlove_filetype":["podlove-podcasting-plugin-for-wordpress"],"podlove_feed":["podlove-podcasting-plugin-for-wordpress"],"verticalmarquee":["vertical-marquee-plugin"],"podlove_episodeasset":["podlove-podcasting-plugin-for-wordpress"],"podlove_downloadintentclean":["podlove-podcasting-plugin-for-wordpress"],"kpcode_url_posts":["long-url-maker"],"rcl_rating_totals":["wp-recall"],"rcl_feeds":["wp-recall"],"pricepoint":["wp-easycart"],"rcl_chat_users":["wp-recall"],"perpage":["wp-easycart"],"podlove_episode":["podlove-podcasting-plugin-for-wordpress"],"rcl_chats":["wp-recall"],"elp_pluginconfig":["email-posts-to-subscribers"],"p2p_relationships":["awebooking"],"podlove_geoarea":["podlove-podcasting-plugin-for-wordpress"],"promotion":["wp-easycart"],"totalsoft_poll_iminqu_01":["poll-wp"],"totalsoft_poll_iminqu_02":["poll-wp"],"totalsoft_poll_iminqu_1":["poll-wp"],"totalsoft_poll_impoll":["poll-wp"],"totalsoft_poll_impoll_01":["poll-wp"],"totalsoft_poll_impoll_02":["poll-wp"],"promocode":["wp-easycart"],"response":["wp-easycart"],"product_subscriber":["wp-easycart"],"sh_cd_shortcodes":["shortcode-variables"],"post_relationships":["microkids-related-posts"],"totalsoft_poll_impoll_1":["poll-wp"],"fortyfour_logs":["forty-four"],"totalsoft_poll_imwibu":["poll-wp"],"totalsoft_poll_imwibu_01":["poll-wp"],"totalsoft_poll_imwibu_02":["poll-wp"],"totalsoft_poll_iminqu":["poll-wp"],"product_google_attributes":["wp-easycart"],"podlove_geoareaname":["podlove-podcasting-plugin-for-wordpress"],"awebooking_availability":["awebooking"],"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"],"awebooking_booking_itemmeta":["awebooking"],"awebooking_booking":["awebooking"],"wpsp_ips":["wp-splash-page"],"product":["wp-easycart"],"wpmfs_queue":["wp-media-folders"],"tdrd_redirection":["trash-duplicate-and-301-redirect"],"p2p_relationshipmeta":["awebooking"],"pricetier":["wp-easycart"],"totalsoft_poll_answers":["poll-wp"],"totalsoft_poll_dbt":["poll-wp"],"totalsoft_poll_id":["poll-wp"],"rcl_rating_users":["wp-recall"],"kingkongboard_meta":["kingkong-board"],"address":["wp-easycart","wp-google-map"],"spiderfacebook_params":["spider-facebook"],"ebay_auctions":["wp-lister-for-ebay"],"customfielddata":["wp-easycart"],"download":["wp-easycart","download-manager-ms"],"ebay_accounts":["wp-lister-for-ebay"],"wpns_blocked_ips":["miniorange-limit-login-attempts","wp-security-pro"],"giftcard":["wp-easycart"],"jtrt_tables":["jtrt-responsive-tables"],"spiderfacebook_login":["spider-facebook"],"clean_up_optimizer":["wp-clean-up-optimizer"],"ebay_categories":["wp-lister-for-ebay"],"clean_up_optimizer_ip_locations":["wp-clean-up-optimizer"],"clean_up_optimizer_meta":["wp-clean-up-optimizer"],"pluginsl_shorturl":["shorten-url"],"awebooking_tax_rates":["awebooking"],"awebooking_rooms":["awebooking"],"live_rate_cache":["wp-easycart"],"awebooking_relationships":["awebooking"],"awebooking_relationshipmeta":["awebooking"],"wpns_whitelisted_ips":["miniorange-limit-login-attempts","wp-security-pro"],"wpns_transactions":["miniorange-limit-login-attempts","wp-security-pro"],"awebooking_booking_items":["awebooking"],"customfield":["wp-easycart"],"ecp_x_category":["enhanced-category-pages"],"ebay_transactions":["wp-lister-for-ebay"],"ebay_store_categories":["wp-lister-for-ebay"],"ebay_sites":["wp-lister-for-ebay"],"ebay_shipping":["wp-lister-for-ebay"],"ebay_profiles":["wp-lister-for-ebay"],"ebay_payment":["wp-lister-for-ebay"],"ebay_orders":["wp-lister-for-ebay"],"ebay_messages":["wp-lister-for-ebay"],"affiliate_rule_to_product":["wp-easycart"],"ebay_log":["wp-lister-for-ebay"],"wpns_email_sent_audit":["miniorange-limit-login-attempts","wp-security-pro"],"ebay_jobs":["wp-lister-for-ebay"],"country":["wp-easycart","block-country","wp-domain-redirect"],"code":["wp-easycart"],"categoryitem":["wp-easycart"],"category":["wp-easycart","udssl-time-tracker"],"bundle":["wp-easycart"],"awebooking_pricing":["awebooking"],"nel_mask_links":["no-external-links"],"affiliate_rule":["wp-easycart"],"pageoption":["wp-easycart"],"optionitem":["wp-easycart"],"totalsoft_poll_inform":["poll-wp"],"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"],"idget_global_settings":["instagram-for-wordpress"],"idget_widget":["instagram-for-wordpress"],"rcsm_subscribers":["responsive-coming-soon-page"],"bigbluebutton":["bigbluebutton","bbb-administration-panel"],"rcl_user_action":["wp-recall"],"bigbluebutton_logs":["bigbluebutton","bbb-administration-panel"],"twitter_integration":["widget-twitter"],"podlove_downloadintent":["podlove-podcasting-plugin-for-wordpress"],"affiliate_rule_to_affiliate":["wp-easycart"],"rcl_rating_values":["wp-recall"],"kingkongboard_comment_meta":["kingkong-board"],"option_to_product":["wp-easycart"],"nel_links_stats":["no-external-links"],"ums_modules":["ultimate-maps-by-supsystic"],"cfg_forms":["contact-form-generator"],"cfg_fields":["contact-form-generator"],"notification_logs":["notification"],"manufacturer":["wp-easycart"],"ums_usage_stat":["ultimate-maps-by-supsystic"],"ums_options_categories":["ultimate-maps-by-supsystic"],"ums_options":["ultimate-maps-by-supsystic"],"ums_modules_type":["ultimate-maps-by-supsystic"],"ums_markers":["ultimate-maps-by-supsystic"],"option":["wp-easycart"],"ums_marker_groups_relation":["ultimate-maps-by-supsystic"],"menulevel1":["wp-easycart"],"menulevel2":["wp-easycart"],"menulevel3":["wp-easycart"],"ums_marker_groups":["ultimate-maps-by-supsystic"],"ums_maps":["ultimate-maps-by-supsystic"],"ums_icons":["ultimate-maps-by-supsystic"],"thumbnail_slider":["images-thumbnail-sliderv1"],"mv_settings":["mediavine-control-panel","mediavine-create"],"totalsoft_poll_imwibu_1":["poll-wp"],"totalsoft_poll_manager":["poll-wp"],"a3_exclude_email_subject":["wp-email-template"],"mpsl_slides_preview":["motopress-slider-lite"],"events_categories":["wp-events"],"ycd_subscribers":["countdown-builder"],"mpsl_slides":["motopress-slider-lite"],"mpsl_sliders_preview":["motopress-slider-lite"],"mpsl_sliders":["motopress-slider-lite"],"attendeeanswers":["rsvp"],"attendees":["rsvp"],"wp_links_page_free_table":["wp-links-page"],"wpl_locationzips":["real-estate-listing-realtyna-wpl"],"aal_request_cache":["amazon-auto-links"],"wpl_locationtextsearch":["real-estate-listing-realtyna-wpl"],"wpl_location7":["real-estate-listing-realtyna-wpl"],"wpl_location6":["real-estate-listing-realtyna-wpl"],"wpl_location5":["real-estate-listing-realtyna-wpl"],"wpl_location4":["real-estate-listing-realtyna-wpl"],"wpl_location3":["real-estate-listing-realtyna-wpl"],"rsvpcustomquestionanswers":["rsvp"],"rsvpcustomquestionattendees":["rsvp"],"rsvpcustomquestions":["rsvp"],"aal_products":["amazon-auto-links"],"wpl_logs":["real-estate-listing-realtyna-wpl"],"inserimenti_cf":["lw-contact-form"],"wpl_room_types":["real-estate-listing-realtyna-wpl"],"wpl_users":["real-estate-listing-realtyna-wpl"],"wpl_user_group_types":["real-estate-listing-realtyna-wpl"],"lightbox_bank_settings":["wp-lightbox-bank"],"wpl_units":["real-estate-listing-realtyna-wpl"],"wpl_unit_types":["real-estate-listing-realtyna-wpl"],"wpl_sort_options":["real-estate-listing-realtyna-wpl"],"wpl_settings":["real-estate-listing-realtyna-wpl"],"wpl_setting_categories":["real-estate-listing-realtyna-wpl"],"wpl_property_types":["real-estate-listing-realtyna-wpl"],"subscription_plan":["wp-easycart"],"wpl_notifications":["real-estate-listing-realtyna-wpl"],"events":["wp-events","wp-gcalendar"],"copyrightpro":["copyrightpro"],"wdpsslider":["post-slider-wd"],"wdpsslide":["post-slider-wd"],"wdpslayer":["post-slider-wd"],"bp_follow":["buddypress-followers"],"q2w3_inc_manager":["q2w3-inc-manager"],"wpl_menus":["real-estate-listing-realtyna-wpl"],"amazoncache":["amazon-product-in-a-post-plugin","app-store-assistant"],"rsvpquestiontypes":["rsvp"],"abj404_lookup":["404-solution"],"vsbb_v2":["wp-visual-slidebox-builder"],"wpl_addons":["real-estate-listing-realtyna-wpl"],"roleprice":["wp-easycart"],"elp_sentdetails":["email-posts-to-subscribers"],"elp_sendsetting":["email-posts-to-subscribers"],"wpl_addon_idx_users_providers":["real-estate-listing-realtyna-wpl"],"vs_current_online_users":["visits-counter"],"wpl_addon_idx_users":["real-estate-listing-realtyna-wpl"],"vs_overall_counter":["visits-counter"],"wpl_addon_idx_user_wizard_steps":["real-estate-listing-realtyna-wpl"],"vsbb_v2_lic":["wp-visual-slidebox-builder"],"wpl_cronjobs":["real-estate-listing-realtyna-wpl"],"wpl_addon_idx_trial_logs":["real-estate-listing-realtyna-wpl"],"timezone":["wp-easycart"],"tempcart_optionitem":["wp-easycart"],"wpl_addon_idx_tasks":["real-estate-listing-realtyna-wpl"],"wpl_addon_idx_service_logs":["real-estate-listing-realtyna-wpl"],"tempcart_data":["wp-easycart"],"wpl_addon_idx_payments":["real-estate-listing-realtyna-wpl"],"wpl_activities":["real-estate-listing-realtyna-wpl"],"elp_postnotification":["email-posts-to-subscribers"],"elp_templatetable":["email-posts-to-subscribers"],"wpl_dbcat":["real-estate-listing-realtyna-wpl"],"taxrate":["wp-easycart"],"cpabc_appointments":["appointment-booking-calendar"],"wpl_location2":["real-estate-listing-realtyna-wpl"],"wpl_location1":["real-estate-listing-realtyna-wpl"],"wpl_listing_types":["real-estate-listing-realtyna-wpl"],"wpl_kinds":["real-estate-listing-realtyna-wpl"],"wpl_items":["real-estate-listing-realtyna-wpl"],"wpl_item_categories":["real-estate-listing-realtyna-wpl"],"tempcart":["wp-easycart"],"cpabc_appointment_calendars":["appointment-booking-calendar"],"cpabc_appointment_calendars_data":["appointment-booking-calendar"],"cpabc_appointments_discount_codes":["appointment-booking-calendar"],"webhook":["wp-easycart"],"zone_to_location":["wp-easycart"],"wpl_filters":["real-estate-listing-realtyna-wpl"],"wpl_extensions":["real-estate-listing-realtyna-wpl"],"inf_infusionsoft_stats":["infusionsoft-official-opt-in-forms"],"wpl_events":["real-estate-listing-realtyna-wpl"],"wpl_dbst_types":["real-estate-listing-realtyna-wpl"],"wpl_dbst":["real-estate-listing-realtyna-wpl"],"elp_deliverreport":["email-posts-to-subscribers"],"elp_emaillist":["email-posts-to-subscribers"],"zone":["wp-easycart"],"abj404_logsv2":["404-solution"],"wpl_properties":["real-estate-listing-realtyna-wpl"],"user":["wp-easycart"],"lrsync":["wplr-sync"],"caos_webfonts":["host-webfonts-local"],"calp_event_feeds":["calpress-event-calendar"],"calp_event_instances":["calpress-event-calendar"],"3wp_activity_monitor_user_statistics":["threewp-activity-monitor"],"calp_events":["calpress-event-calendar"],"custom_options_plus":["custom-options-plus"],"roleaccess":["wp-easycart"],"statcounter":["stat-counter"],"stock_ticker_data":["stock-ticker"],"funbox":["wp-visual-slidebox-builder"],"role":["wp-easycart"],"abj404_permalink_cache":["404-solution"],"lrsync_collections":["wplr-sync"],"shipping_class":["wp-easycart"],"associatedattendees":["rsvp"],"3wp_activity_monitor_index":["threewp-activity-monitor"],"pp_login_builder":["ppress"],"fsevents_cats":["wp-calendar"],"pp_password_reset_builder":["ppress"],"lrsync_meta":["wplr-sync"],"totalsoft_poll_stwibu":["poll-wp"],"pp_registration_builder":["ppress"],"totalsoft_poll_stwibu_01":["poll-wp"],"totalsoft_poll_stwibu_02":["poll-wp"],"caos_webfonts_subsets":["host-webfonts-local"],"lrsync_relations":["wplr-sync"],"fsevents":["wp-calendar"],"setting":["wp-easycart"],"calp_event_category_colors":["calpress-event-calendar"],"totalsoft_poll_setting":["poll-wp"],"totalsoft_poll_stpoll_02":["poll-wp"],"abj404_redirects":["404-solution"],"totalsoft_poll_stpoll_1":["poll-wp"],"afflctable_track":["affiliate-link-cloaking"],"abj404_spelling_cache":["404-solution"],"afflctable_link":["affiliate-link-cloaking"],"totalsoft_poll_quest_im":["poll-wp"],"geo_mashup_administrative_names":["geo-mashup"],"geo_mashup_location_relationships":["geo-mashup"],"wps_cleaner":["wps-cleaner"],"totalsoft_poll_results":["poll-wp"],"wps_cleaner_queue":["wps-cleaner"],"review":["wp-easycart"],"totalsoft_poll_stwibu_1":["poll-wp"],"state":["wp-easycart"],"shipping_class_to_rate":["wp-easycart"],"afflctable_statistics_daily":["affiliate-link-cloaking"],"totalsoft_poll_stpoll_01":["poll-wp"],"totalsoft_poll_stpoll":["poll-wp"],"geo_mashup_locations":["geo-mashup"],"subscription":["wp-easycart"],"shippingrate":["wp-easycart"],"subscriber":["wp-easycart"],"ppprotect":["pilotpress"],"tsw_log":["traffic-stats-widget"],"paystack_forms_payments":["payment-forms-for-paystack"],"addactionsandfilters_plugin_usercode":["add-actions-and-filters"],"nl_subscriptions":["email-subscribe"],"ppc_exception_items":["press-permit-core"],"photoblocks":["photoblocks-grid-gallery"],"ppc_roles":["press-permit-core"],"ppc_exceptions":["press-permit-core"],"easy_captcha_sessions":["easy-captcha"],"ap_subscribers":["anspress-question-answer"],"cpmp_player":["audio-and-video-player"],"ap_views":["anspress-question-answer"],"gamipress_user_earnings":["gamipress"],"gamipress_logs_meta":["gamipress"],"permalinks_customizer_redirects":["permalinks-customizer"],"gamipress_logs":["gamipress"],"collabnotes":["peters-post-notes"],"collaboration":["peters-collaboration-e-mails"],"collabrules":["peters-collaboration-e-mails"],"collabwriters":["peters-collaboration-e-mails"],"wpfingerprint_checksums":["wp-fingerprint"],"ap_votes":["anspress-question-answer"],"wpfingerprint_diffs":["wp-fingerprint"],"g_tables":["table-generator"],"pp_group_members":["press-permit-core"],"post_notification_posts":["post-notification"],"ps_posts":["woocommerce-predictive-search"],"pp_groups":["press-permit-core"],"orgseriesicons":["organize-series"],"crm_log":["wp-crm"],"post_notification_cats":["post-notification"],"crm_log_meta":["wp-crm"],"ps_product_sku":["woocommerce-predictive-search"],"gdrts_logs":["gd-rating-system"],"cp_orders":["cryptocurrency-prices"],"promag_notification":["profilegrid-user-profiles-groups-and-communities"],"mobilepress":["mobilepress"],"word_balloon":["word-balloon"],"nwm_routes":["nomad-world-map"],"cvg_videos":["cool-video-gallery"],"cvg_gallery":["cool-video-gallery"],"nwm_custom":["nomad-world-map"],"ap_activity":["anspress-question-answer"],"promag_sections":["profilegrid-user-profiles-groups-and-communities"],"gamipress_user_earnings_meta":["gamipress"],"promag_email_templates":["profilegrid-user-profiles-groups-and-communities"],"promag_paypal_log":["profilegrid-user-profiles-groups-and-communities"],"promag_msg_threads":["profilegrid-user-profiles-groups-and-communities"],"pwebcontact_messages":["pwebcontact"],"promag_msg_conversation":["profilegrid-user-profiles-groups-and-communities"],"promag_groups":["profilegrid-user-profiles-groups-and-communities"],"promag_group_requests":["profilegrid-user-profiles-groups-and-communities"],"promag_friends":["profilegrid-user-profiles-groups-and-communities"],"promag_fields":["profilegrid-user-profiles-groups-and-communities"],"gdrts_cache":["gd-rating-system"],"gdrts_itemmeta":["gd-rating-system"],"generalnotes":["peters-post-notes"],"all_in_one_redirection":["all-in-one-redirection"],"gdrts_items":["gd-rating-system"],"srb_blacklist":["spamreferrerblock"],"gdrts_logmeta":["gd-rating-system"],"aelia_dismissed_messages":["woocommerce-eu-vat-assistant"],"ap_qameta":["anspress-question-answer"],"nls_subscribers":["newsletter-subscription-form"],"ps_postmeta":["woocommerce-predictive-search"],"ps_exclude":["woocommerce-predictive-search"],"advanced_booking_calendar_booking_extras":["advanced-booking-calendar"],"popup_banners":["wp-popup-banners","wp-popup-lite"],"advanced_booking_calendar_bookings":["advanced-booking-calendar"],"spiffy_calendar":["spiffy-calendar"],"advanced_booking_calendar_calendars":["advanced-booking-calendar"],"spiffy_calendar_categories":["spiffy-calendar"],"updraftcentral_user_cron":["updraftcentral"],"updraftcentral_sitemeta":["updraftcentral"],"updraftcentral_site_temporary_keys":["updraftcentral"],"advanced_booking_calendar_extras":["advanced-booking-calendar"],"ap_reputations":["anspress-question-answer"],"plgwpavp_config":["wp-antivirus-site-protection","wp-antivirus-website-protection-and-firewall"],"advanced_booking_calendar_requests":["advanced-booking-calendar"],"advanced_booking_calendar_seasons":["advanced-booking-calendar"],"advanced_booking_calendar_seasons_assignment":["advanced-booking-calendar"],"dk_speakout_petitions":["speakout"],"pwebcontact_forms":["pwebcontact"],"dk_speakout_signatures":["speakout"],"wpcsplog":["wp-content-security-policy"],"dprv_posts":["digiproveblog"],"dprv_post_content_files":["digiproveblog"],"dprv_log":["digiproveblog"],"dprv_licenses":["digiproveblog"],"advanced_booking_calendar_rooms":["advanced-booking-calendar"],"updraftcentral_sites":["updraftcentral"],"kontakt_fields":["plugin-kontakt"],"wpss_quizzes_30":["wordpress-simple-survey"],"sm_sync":["wp-stateless"],"sidemenu":["side-menu","mwp-side-menu"],"wpss_results_30":["wordpress-simple-survey"],"automated_links":["wp-auto-affiliate-links"],"lightbox_photoswipe_img":["lightbox-photoswipe"],"bot_block_log":["bot-block-stop-spam-google-analytics-referrals"],"atap_logs":["accesspress-twitter-auto-post"],"wpss_routes_30":["wordpress-simple-survey"],"amelia_providers_to_events":["ameliabooking"],"bot_block_block_list":["bot-block-stop-spam-google-analytics-referrals"],"amelia_providers_to_daysoff":["ameliabooking"],"amelia_payments":["ameliabooking"],"amelia_notifications_sms_history":["ameliabooking"],"wpss_questions_30":["wordpress-simple-survey"],"amelia_providers_to_google_calendar":["ameliabooking"],"wppipes_pipes":["wp-pipes"],"amelia_notifications_log":["ameliabooking"],"amelia_custom_fields_options":["ameliabooking"],"sb_image_hover_effects_style":["sb-image-hover-effects"],"amelia_providers_to_specialdays_periods":["ameliabooking"],"amelia_coupons":["ameliabooking"],"amelia_coupons_to_events":["ameliabooking"],"amelia_coupons_to_services":["ameliabooking"],"amelia_custom_fields":["ameliabooking"],"amelia_providers_to_specialdays":["ameliabooking"],"amelia_providers_to_locations":["ameliabooking"],"amelia_providers_to_services":["ameliabooking"],"amelia_providers_to_periods_services":["ameliabooking"],"amelia_providers_to_periods":["ameliabooking"],"wppipes_items":["wp-pipes"],"wpss_fields_30":["wordpress-simple-survey"],"amelia_notifications":["ameliabooking"],"amelia_providers_to_specialdays_periods_services":["ameliabooking"],"amelia_customer_bookings_to_extras":["ameliabooking"],"captcha_booster_ip_locations":["wp-captcha-booster"],"captcha_booster_meta":["wp-captcha-booster"],"wcs3_schedule":["weekly-class-schedule"],"amelia_events_periods":["ameliabooking"],"amelia_customer_bookings":["ameliabooking"],"amelia_events":["ameliabooking"],"amelia_customer_bookings_to_events_periods":["ameliabooking"],"amelia_events_to_providers":["ameliabooking"],"ytwd_youtube":["wd-youtube"],"ytwd_shortcodes":["wd-youtube"],"wpvgw_posts_extras":["wp-vgwort"],"wpvgw_markers":["wp-vgwort"],"ipblc_blacklist":["ip-blacklist-cloud"],"ipblc_login_failed":["ip-blacklist-cloud"],"amelia_events_tags":["ameliabooking"],"captcha_booster":["wp-captcha-booster"],"amelia_locations_views":["ameliabooking"],"wpsqt_quiz_surveys":["wp-survey-and-quiz-tool"],"wpss_answers_30":["wordpress-simple-survey"],"wpsqt_survey_cache_results":["wp-survey-and-quiz-tool"],"wpsqt_sections":["wp-survey-and-quiz-tool"],"amelia_locations":["ameliabooking"],"amelia_galleries":["ameliabooking"],"uwp_form_extras":["userswp"],"wpsqt_quiz_state":["wp-survey-and-quiz-tool"],"amelia_custom_fields_services":["ameliabooking"],"wpsqt_custom_forms":["wp-survey-and-quiz-tool"],"wpsqt_all_results":["wp-survey-and-quiz-tool"],"wpsqt_all_questions":["wp-survey-and-quiz-tool"],"uwp_form_fields":["userswp"],"uwp_usermeta":["userswp"],"amelia_extras":["ameliabooking"],"kontakt_options":["plugin-kontakt"],"sb_image_hover_effects_list":["sb-image-hover-effects"],"ipblc_usernames":["ip-blacklist-cloud"],"amelia_providers_to_timeouts":["ameliabooking"],"bup_staff_availability":["booking-ultra-pro"],"abc_seasons":["advanced-booking-calendar"],"abc_rooms":["advanced-booking-calendar"],"amelia_appointments":["ameliabooking"],"abc_requests":["advanced-booking-calendar"],"abc_extras":["advanced-booking-calendar"],"bup_orders":["booking-ultra-pro"],"bsl_push":["baidu-submit-link"],"sitemap":["companion-sitemap-generator"],"bup_staff_availability_breaks":["booking-ultra-pro"],"chats_messages":["chats"],"abc_booking_extras":["advanced-booking-calendar"],"amelia_users":["ameliabooking"],"abc_bookings":["advanced-booking-calendar"],"ere_save_search":["essential-real-estate"],"amelia_providers_to_weekdays":["ameliabooking"],"bup_services":["booking-ultra-pro"],"bup_bookings":["booking-ultra-pro"],"bup_service_variable_pricing":["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"],"abc_seasons_assignment":["advanced-booking-calendar"],"abc_calendars":["advanced-booking-calendar"],"bup_service_rates":["booking-ultra-pro"],"amelia_categories":["ameliabooking"],"amelia_providers_views":["ameliabooking"],"amelia_services":["ameliabooking"],"amelia_services_views":["ameliabooking"],"live_weather_station_performance_cache":["live-weather-station"],"live_weather_station_medias":["live-weather-station"],"stm_lms_user_quizzes":["masterstudy-lms-learning-management-system"],"live_weather_station_maps":["live-weather-station"],"live_weather_station_log":["live-weather-station"],"wpappninja_installs":["wpappninja"],"wcsc_error_logs":["wp-cron-status-checker"],"wpappninja_push":["wpappninja"],"totalsoft_portfolio_albums":["gallery-portfolio"],"stm_lms_user_lessons":["masterstudy-lms-learning-management-system"],"totalsoft_portfolio_phe":["gallery-portfolio"],"live_weather_station_performance_cron":["live-weather-station"],"mtouchquiz_answer":["mtouch-quiz"],"live_weather_station_module_detail":["live-weather-station"],"wpappninja_qrcode":["wpappninja"],"live_weather_station_quota_day":["live-weather-station"],"mtouchquiz_question":["mtouch-quiz"],"mtouchquiz_quiz":["mtouch-quiz"],"mtouchquiz_ratings":["mtouch-quiz"],"moodle_enrollment":["edwiser-bridge"],"wcp_useroptions":["wcp-openweather"],"wpappninja_push_perso":["wpappninja"],"totalsoft_portfolio_check":["gallery-portfolio"],"apt_appointments":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"stm_lms_user_quizzes_times":["masterstudy-lms-learning-management-system"],"totalsoft_portfolio_elgrid":["gallery-portfolio"],"oxi_div_import":["image-hover-effects-ultimate-visual-composer","shortcode-addons","team-showcase-ultimate","testimonial-or-reviews"],"ft_http_requests":["fetch-tweets"],"totalsoft_portfolio_dbt_1":["gallery-portfolio"],"totalsoft_portfolio_dbt_2":["gallery-portfolio"],"totalsoft_portfolio_dbt_3":["gallery-portfolio"],"automaticseolinks":["automatic-seo-links"],"totalsoft_portfolio_dbt_4":["gallery-portfolio"],"wpsc_ticket":["supportcandy"],"automaticseolinksstats":["automatic-seo-links"],"apt_category":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"totalsoft_portfolio_dbt":["gallery-portfolio"],"cp_contact_form_paypal_discount_codes":["cp-contact-form-with-paypal"],"gd_lightbox_settings":["responsive-lightbox-popup"],"cp_contact_form_paypal_posts":["cp-contact-form-with-paypal"],"totalsoft_portfolio_filgrid":["gallery-portfolio"],"totalsoft_portfolio_gaanim":["gallery-portfolio"],"totalsoft_portfolio_id":["gallery-portfolio"],"stt2_meta":["recent-search-terms"],"totalsoft_portfolio_images":["gallery-portfolio"],"cp_contact_form_paypal_settings":["cp-contact-form-with-paypal"],"wpsc_ticketmeta":["supportcandy"],"customback":["custom-post-background"],"totalsoft_portfolio_cpopup":["gallery-portfolio"],"totalsoft_portfolio_manager":["gallery-portfolio"],"live_weather_station_notifications":["live-weather-station"],"live_weather_station_datas_year":["live-weather-station"],"apt_appearence":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"sb_stuff":["sermon-browser"],"vstrsnln_detailing":["visitors-online"],"wpappninja_stats":["wpappninja"],"sndr_mail_users_info":["subscriber","sender"],"sb2_crawl":["seo-booster"],"sb2_kw":["seo-booster"],"auto_updater_history":["wp-auto-updater"],"wpi_object_log":["wp-invoice"],"wpie_export_log":["woo-import-export-lite"],"stm_lms_order_items":["masterstudy-lms-learning-management-system"],"mpp_logs":["mediapress"],"sb2_kwdt":["seo-booster"],"sb_tags":["sermon-browser"],"sb_services":["sermon-browser"],"sb2_bl":["seo-booster"],"sb_sermons_tags":["sermon-browser"],"sb_sermons":["sermon-browser"],"sb_series":["sermon-browser"],"mp_product_attributes":["wordpress-ecommerce"],"sb_preachers":["sermon-browser"],"sb_books_sermons":["sermon-browser"],"sb_books":["sermon-browser"],"sb2_urls_meta":["seo-booster"],"crfp_groups":["comment-rating-field-plugin"],"crfp_fields":["comment-rating-field-plugin"],"sb2_urls":["seo-booster"],"sb2_log":["seo-booster"],"mp_product_attributes_terms":["wordpress-ecommerce"],"vstrsnln_general":["visitors-online"],"wpio_images":["imagerecycle-pdf-image-compression"],"amz_assets":["woocommerce-amazon-affiliates-light-version"],"live_weather_station_data_year":["live-weather-station"],"wcsc_logs":["wp-cron-status-checker"],"totalsoft_portfolio_settings":["gallery-portfolio"],"live_weather_station_infos":["live-weather-station"],"amz_cross_sell":["woocommerce-amazon-affiliates-light-version"],"wpal_links":["wp-affiliate-links"],"amz_products":["woocommerce-amazon-affiliates-light-version"],"totalsoft_portfolio_slport":["gallery-portfolio"],"stm_lms_user_conversation":["masterstudy-lms-learning-management-system"],"live_weather_station_datas_day":["live-weather-station"],"live_weather_station_datas":["live-weather-station"],"stm_lms_user_chat":["masterstudy-lms-learning-management-system"],"amz_queue":["woocommerce-amazon-affiliates-light-version"],"live_weather_station_background_process":["live-weather-station"],"wpio_listimages":["imagerecycle-pdf-image-compression"],"amz_report_log":["woocommerce-amazon-affiliates-light-version"],"amz_search":["woocommerce-amazon-affiliates-light-version"],"lionscripts_ip_address_blocker":["ip-address-blocker"],"th_snippets":["thrivehive"],"bp_cron_config":["beepress"],"sb2_404":["seo-booster"],"wpio_queue":["imagerecycle-pdf-image-compression"],"stm_lms_user_cart":["masterstudy-lms-learning-management-system"],"wpappninja_ids":["wpappninja"],"sb2_autolink":["seo-booster"],"wpappninja_home_perso":["wpappninja"],"wpappninja_adserver":["wpappninja"],"stm_lms_user_answers":["masterstudy-lms-learning-management-system"],"bp_profile":["beepress"],"popularitypostswidgetcache":["popularity-posts-widget"],"smart_maintenance_mode":["smart-maintenance-mode"],"totalsoft_cal_3":["calendar-event"],"totalsoft_cal_1":["calendar-event"],"t_passing_answers":["wp-testing"],"t_passings":["wp-testing"],"totalsoft_cal_2":["calendar-event"],"ed_pluginconfig":["email-download-link"],"ed_emaillist":["email-download-link"],"ed_downloadform":["email-download-link"],"t_questions":["wp-testing"],"t_fields":["wp-testing"],"totalsoft_cal_4":["calendar-event"],"t_schema_migrations":["wp-testing"],"t_scores":["wp-testing"],"t_sections":["wp-testing"],"totalsoft_cal_check":["calendar-event"],"js_ticket_attachments":["js-support-ticket"],"js_ticket_config":["js-support-ticket"],"t_formulas":["wp-testing"],"t_field_values":["wp-testing"],"js_ticket_email":["js-support-ticket"],"th_forms":["thrivehive"],"ffi_comments":["insta-flow"],"ess_social_networks":["easy-social-sharing"],"ffi_cache":["insta-flow"],"ess_social_statistics":["easy-social-sharing"],"nodofollow":["dofollow-case-by-case"],"ak_404_log":["404-notifier"],"e_portfolio":["responsive-filterable-portfolio"],"jzzf_option":["jazzy-forms"],"t_computed_variables":["wp-testing"],"jzzf_form":["jazzy-forms"],"jzzf_email":["jazzy-forms"],"pl_data_sections":["pl-platform"],"jzzf_element":["jazzy-forms"],"pl_data_maps":["pl-platform"],"simpleviews":["simple-post-views-counter","juicedmetrics"],"wow_coder":["wp-coder"],"t_answers":["wp-testing"],"js_ticket_departments":["js-support-ticket"],"js_ticket_emailtemplates":["js-support-ticket"],"ffi_options":["insta-flow"],"peepso_activities":["peepso-core"],"peepso_gdpr_request_data":["peepso-core"],"peepso_errors":["peepso-core"],"peepso_cache":["peepso-core"],"peepso_brute_force_attempts_logs":["peepso-core"],"peepso_blocks":["peepso-core"],"peepso_activity_ranking":["peepso-core"],"peepso_activity_hide":["peepso-core"],"fbuilder_sections_order":["estatik"],"peepso_likes":["peepso-core"],"fbuilder_sections":["estatik"],"fbuilder_fields_order":["estatik"],"fbuilder_fields":["estatik"],"totalsoft_cal_p2":["calendar-event"],"totalsoft_cal_events_p2":["calendar-event"],"totalsoft_cal_p1":["calendar-event"],"totalsoft_cal_ids":["calendar-event"],"peepso_hashtags":["peepso-core"],"peepso_login_failed_attempts_logs":["peepso-core"],"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"],"table_statistics":["cystats"],"table_statistics_raw":["cystats"],"fca_lpc_subscribers":["landing-page-cat"],"peepso_users":["peepso-core"],"peepso_mail_queue":["peepso-core"],"peepso_unfollow":["peepso-core"],"peepso_saved_posts":["peepso-core"],"totalsoft_cal_events":["calendar-event"],"th_buttons":["thrivehive"],"peepso_report":["peepso-core"],"peepso_reactions":["peepso-core"],"peepso_notifications":["peepso-core"],"ffi_image_cache":["insta-flow"],"ffi_post_media":["insta-flow"],"smart_donations_transaction_table":["smart-donations"],"egoi_form_subscribers":["smart-marketing-for-wp"],"popupwith_fancybox":["popup-with-fancybox"],"live_weather_station_stations":["live-weather-station"],"popularitypostswidget":["popularity-posts-widget"],"iyzico_card":["iyzico-woocommerce"],"egoi_map_fields":["smart-marketing-for-wp"],"iyzico_order":["iyzico-woocommerce"],"post_right_content":["spider-faq"],"ap_services":["appointment-calendar"],"ap_service_category":["appointment-calendar"],"woocommerce_tpay":["woocommerce-transferujpl-payment-gateway"],"ap_events":["appointment-calendar"],"ap_appointments":["appointment-calendar"],"woocommerce_tpay_clients":["woocommerce-transferujpl-payment-gateway"],"td_terms":["terms-descriptions"],"yrw_yelp_review":["widget-yelp-reviews"],"p_hitinfo":["who-hit-the-page-hit-counter"],"doifd_lab_forms":["double-opt-in-for-download"],"afp_items":["awesome-filterable-portfolio"],"yrw_yelp_business":["widget-yelp-reviews"],"wpappninja_stats_users":["wpappninja"],"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"],"afp_categories":["awesome-filterable-portfolio"],"smart_donations_progress_table":["smart-donations"],"p_hits":["who-hit-the-page-hit-counter"],"smart_donations_donation_item":["smart-donations"],"p_visiting_countries":["who-hit-the-page-hit-counter"],"p_user_agents":["who-hit-the-page-hit-counter"],"smart_donations_campaign_table":["smart-donations"],"oxi_div_list":["image-hover-effects-ultimate-visual-composer","shortcode-addons","team-showcase-ultimate","testimonial-or-reviews"],"p_ip_hits":["who-hit-the-page-hit-counter"],"oxi_div_style":["image-hover-effects-ultimate-visual-composer","shortcode-addons","team-showcase-ultimate","testimonial-or-reviews"],"p_ip2location":["who-hit-the-page-hit-counter"],"doifd_lab_downloads":["double-opt-in-for-download"],"doifd_lab_subscribers":["double-opt-in-for-download"],"ffi_posts":["insta-flow"],"plugin_slickquiz":["slickquiz"],"dps_usage_stat":["digital-publications-by-supsystic"],"totalsoft_cal_types":["calendar-event"],"totalsoft_cal_part1":["calendar-event"],"totalsoft_cal_part":["calendar-event"],"plugin_slickquiz_scores":["slickquiz"],"totalsoft_cal_p4":["calendar-event"],"dps_page_as_img":["digital-publications-by-supsystic"],"totalsoft_cal_p3":["calendar-event"],"backlinks_cron":["incoming-links"],"backlinks_block_ip":["incoming-links"],"backlinks_block_domain":["incoming-links"],"backlinks":["incoming-links"],"ffi_streams_sources":["insta-flow"],"ffi_streams":["insta-flow"],"ffi_snapshots":["insta-flow"],"dps_page_sort_order":["digital-publications-by-supsystic"],"dps_modules_type":["digital-publications-by-supsystic"],"big_contacts_settings":["bigcontact"],"bc_random_banner_options":["random-banner"],"big_contacts_phones":["bigcontact"],"big_contacts_emails":["bigcontact"],"big_contacts":["bigcontact"],"stm_lms_user_courses":["masterstudy-lms-learning-management-system"],"jigoshop_attribute_taxonomies":["jigoshop"],"jigoshop_downloadable_product_permissions":["jigoshop"],"jigoshop_termmeta":["jigoshop"],"bc_random_banner_category":["random-banner"],"dps_modules":["digital-publications-by-supsystic"],"bc_random_banner":["random-banner"],"bbse_popup_agent":["bbs-e-popup"],"bbse_popup":["bbs-e-popup"],"bbpp_thankmelater_schedules":["thank-me-later"],"bbpp_thankmelater_opt_outs":["thank-me-later"],"bbpp_thankmelater_opens":["thank-me-later"],"bbpp_thankmelater_messages":["thank-me-later"],"nd_booking_booking":["nd-booking"],"live_weather_station_quota_year":["live-weather-station"],"apt_staff":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"mailpress_mailmeta":["mailpress"],"sp_cu_project":["sp-client-document-manager"],"xh_social_channel_wechat":["wechat-social-login"],"spbc_scan_frontend":["security-malware-firewall"],"xh_social_channel_qq":["wechat-social-login"],"hms_testimonials_groups":["hms-testimonials"],"apt_coupons":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"sp_cu_meta":["sp-client-document-manager"],"gv_responsive_slider":["wp-responsive-photo-gallery"],"hurrytimer_evergreen":["hurrytimer"],"rp_sessions":["restaurantpress"],"oqey_music":["oqey-gallery"],"oqey_music_rel":["oqey-gallery"],"whtp_visiting_countries":["who-hit-the-page-hit-counter"],"amr_reportcachelogging":["amr-users"],"emailsub_spool":["email-subscription"],"vision":["vision"],"amr_reportcache":["amr-users"],"hms_testimonials_group_meta":["hms-testimonials"],"xh_sessions":["wechat-social-login","wechat-shop-download","wc-china-checkout"],"whtp_user_agents":["who-hit-the-page-hit-counter"],"hms_testimonials_cf_meta":["hms-testimonials"],"emailsub_addresses":["email-subscription"],"mailpress_mails":["mailpress"],"hms_testimonials_cf":["hms-testimonials"],"whtp_hitinfo":["who-hit-the-page-hit-counter"],"whtp_hits":["who-hit-the-page-hit-counter"],"xh_social_channel_weibo":["wechat-social-login"],"oqey_skins":["oqey-gallery"],"whtp_ip2location":["who-hit-the-page-hit-counter"],"apt_holidays":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"address_components":["estatik"],"oqey_video":["oqey-gallery"],"apt_services":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"mailpress_stats":["mailpress"],"wpal_rules":["wp-affiliate-links"],"totalsoft_cal_events_p3":["calendar-event"],"hotelier_reservation_items":["wp-hotelier"],"spectrom_sync_sources":["wpsitesynccontent"],"rconvert-subscriptions":["rock-convert"],"spectrom_sync_media":["wpsitesynccontent"],"spectrom_sync_log":["wpsitesynccontent"],"spbc_firewall_logs":["security-malware-firewall"],"spbc_firewall_data":["security-malware-firewall"],"spbc_backups":["security-malware-firewall"],"mailpress_usermeta":["mailpress"],"apt_settings":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"mailpress_users":["mailpress"],"apt_payment":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"hotelier_rooms_bookings":["wp-hotelier"],"spectrom_sync":["wpsitesynccontent"],"spbc_scan_signatures":["security-malware-firewall"],"hotelier_reservation_itemmeta":["wp-hotelier"],"hotelier_bookings":["wp-hotelier"],"accua_forms_submissions":["contact-forms"],"accua_forms_submissions_values":["contact-forms"],"sp_cu_groups":["sp-client-document-manager"],"spbc_scan_results":["security-malware-firewall"],"sp_cu_groups_assign":["sp-client-document-manager"],"spbc_scan_links_logs":["security-malware-firewall"],"mistape_reports":["mistape"],"hms_testimonials_templates":["hms-testimonials"],"revisr":["revisr"],"xh_social_sessions":["wechat-social-login"],"tweetblender":["tweet-blender"],"wps_shop":["wpshopify"],"th_wysiwyg_buttons":["thrivehive"],"wps_collects":["wpshopify"],"wps_images":["wpshopify"],"spider_faq_category":["spider-faq"],"wtc_log":["traffic-counter-widget"],"wps_settings_syncing":["wpshopify"],"wps_settings_connection":["wpshopify"],"wps_options":["wpshopify"],"spbc_backuped_files":["security-malware-firewall"],"amd_zlrecipe_recipes":["zip-recipes","ziplist-recipe-plugin"],"wps_products":["wpshopify"],"mailerlite_checkouts":["woo-mailerlite"],"sp_cu_cats":["sp-client-document-manager"],"wps_variants":["wpshopify"],"wdp_rules":["advanced-dynamic-pricing-for-woocommerce"],"spider_faq_faq":["spider-faq"],"spider_faq_question":["spider-faq"],"wdp_orders":["advanced-dynamic-pricing-for-woocommerce"],"spider_faq_theme":["spider-faq"],"wdp_order_items":["advanced-dynamic-pricing-for-woocommerce"],"wdm_bidders":["ultimate-auction"],"rjg_gallery":["wp-responsive-photo-gallery"],"spbc_auth_logs":["security-malware-firewall"],"th_theme_options":["thrivehive"],"sp_cu":["sp-client-document-manager"],"wps_tags":["wpshopify"],"wps_collections_smart":["wpshopify"],"wps_settings_license":["wpshopify"],"adsforwp_stats":["ads-for-wp"],"sp_cu_form_entries":["sp-client-document-manager"],"hms_testimonials":["hms-testimonials"],"bws_list_ip":["visitors-online"],"bws_list_countries":["visitors-online"],"apt_clients":["appointment-scheduler-weblizar","appointment-booking-scheduler"],"wp_topbar_data":["wp-topbar"],"bws_country":["visitors-online"],"whtp_ip_hits":["who-hit-the-page-hit-counter"],"oqey_gallery":["oqey-gallery"],"sp_cu_event_log":["sp-client-document-manager"],"hotelier_sessions":["wp-hotelier"],"wpal_stats":["wp-affiliate-links"],"oqey_images":["oqey-gallery"],"wpal_keywords":["wp-affiliate-links"],"wpal_geoipcountry":["wp-affiliate-links"],"wpal_destinations":["wp-affiliate-links"],"wps_settings_general":["wpshopify"],"wpal_automatches":["wp-affiliate-links"],"sp_cu_forms":["sp-client-document-manager"],"wps_collections_custom":["wpshopify"],"joomsport_events":["joomsport-sports-league-results-management"],"esp_price_type":["event-espresso-decaf"],"esp_payment":["event-espresso-decaf"],"esp_message_template_group":["event-espresso-decaf"],"esp_price":["event-espresso-decaf"],"esp_payment_method":["event-espresso-decaf"],"joomsport_config":["joomsport-sports-league-results-management"],"wpportfolio_websites":["wp-portfolio"],"joomsport_box_match":["joomsport-sports-league-results-management"],"joomsport_box_fields":["joomsport-sports-league-results-management"],"ucare_logs":["ucare-support-system"],"wpportfolio_groups_websites":["wp-portfolio"],"wppizza_orders_meta":["wppizza"],"rich_web_font_family":["tabbed","form-forms"],"esp_question_option":["event-espresso-decaf"],"usersultra_videos":["users-ultra"],"who_is_online":["who-is-online"],"wpportfolio_custom_fields":["wp-portfolio"],"comment_uploaded_files":["anycomment"],"esp_question_group_question":["event-espresso-decaf"],"esp_question_group":["event-espresso-decaf"],"nd_donations_donations":["nd-donations"],"draftsforfriends":["wp-draftsforfriends"],"nd_learning_courses":["nd-learning"],"edr_tax_rates":["educator"],"ywrr_email_blocklist":["yith-woocommerce-review-reminder"],"dreamobjects_backup_log":["dreamobjects"],"nova_poshta_area":["woo-shipping-for-nova-poshta"],"esp_question":["event-espresso-decaf"],"watsonconv_actions":["conversation-watson"],"wpportfolio_debuglog":["wp-portfolio"],"facebook_pages":["wp-facebook-portal"],"facebook_likebox_parent":["facebook-likebox"],"cf7db":["database-for-cf7"],"facebook_likebox_meta":["facebook-likebox"],"wpportfolio_groups":["wp-portfolio"],"esp_registration":["event-espresso-decaf"],"word_replacer":["word-replacer"],"premmerce_search_words":["premmerce-search"],"ceceppa_ml_cats":["ceceppa-multilingua"],"hdwplayer":["hdw-player-video-player-video-gallery"],"jackmail_campaigns_urls":["jackmail-newsletters"],"fluentform_form_meta":["fluentform"],"wpdev_crm_customers":["booking-manager"],"fluentform_form_analytics":["fluentform"],"wpsp_subject":["wpschoolpress"],"esp_message":["event-espresso-decaf"],"jackmail_campaigns":["jackmail-newsletters"],"wpsp_teacher":["wpschoolpress"],"cdi":["colissimo-delivery-integration"],"wpdev_crm_orders":["booking-manager"],"jackmail_lists":["jackmail-newsletters"],"ssa_appointments":["simply-schedule-appointments"],"jackmail_lists_contacts_1":["jackmail-newsletters"],"ssa_appointment_types":["simply-schedule-appointments"],"eg_attachments_clicks":["eg-attachments"],"nova_poshta_warehouse":["woo-shipping-for-nova-poshta"],"nova_poshta_region":["woo-shipping-for-nova-poshta"],"jackmail_scenarios":["jackmail-newsletters"],"wpsp_student":["wpschoolpress"],"wpsp_settings":["wpschoolpress"],"jackmail_scenarios_urls":["jackmail-newsletters"],"wpsp_mark_fields":["wpschoolpress"],"fmepco_temp_table":["fma-product-custom-options"],"fmepco_rowoption_table":["fma-product-custom-options"],"iyzico_checkout_form_user":["iyzico-payment-module"],"fmepco_poptions_table":["fma-product-custom-options"],"hl_twitter_tweets":["hl-twitter"],"wpsp_mark":["wpschoolpress"],"wpsp_mark_extract":["wpschoolpress"],"hl_twitter_replies":["hl-twitter"],"fluentform_transactions":["fluentform"],"fluentform_forms":["fluentform"],"hf_submissions":["html-forms"],"wpsp_messages":["wpschoolpress"],"wpsp_messages_delete":["wpschoolpress"],"podlovesubscribebutton_button":["podlove-subscribe-button"],"wpsp_notification":["wpschoolpress"],"iyzico_order_refunds":["iyzico-payment-module"],"fluentform_submissions":["fluentform"],"fluentform_submission_meta":["fluentform"],"jackmail_scenarios_events":["jackmail-newsletters"],"jackmail_templates":["jackmail-newsletters"],"hdwplayer_gallery":["hdw-player-video-player-video-gallery"],"bft_sentmails":["bft-autoresponder"],"shopp_summary":["shopp"],"ceceppa_ml_relations":["ceceppa-multilingua"],"ceceppa_ml_trans":["ceceppa-multilingua"],"wpsp_temp":["wpschoolpress"],"wpsp_timetable":["wpschoolpress"],"wpsp_transport":["wpschoolpress"],"bft_users":["bft-autoresponder"],"bft_newsletters":["bft-autoresponder"],"shopp_purchased":["shopp"],"bft_mails":["bft-autoresponder"],"bft_emaillog":["bft-autoresponder"],"bft_attachments":["bft-autoresponder"],"wpsp_workinghours":["wpschoolpress"],"wpportfolio_websites_meta":["wp-portfolio"],"rich_web_icons":["tabbed","rich-event-timeline"],"hdwplayer_videos":["hdw-player-video-player-video-gallery"],"hdwplayer_playlist":["hdw-player-video-player-video-gallery"],"shopp_shopping":["shopp"],"wpsp_teacher_attendance":["wpschoolpress"],"jackmail_woocommerce_email_notification":["jackmail-newsletters"],"shopp_price":["shopp"],"name_directory":["name-directory"],"esp_message_template":["event-espresso-decaf"],"shopp_address":["shopp"],"shopp_asset":["shopp"],"shopp_customer":["shopp"],"shopp_index":["shopp"],"shopp_meta":["shopp"],"name_directory_name":["name-directory"],"shopp_promo":["shopp"],"wppizza_orders":["wppizza"],"donate_mollie":["doneren-met-mollie"],"donate_mollie_donors":["doneren-met-mollie"],"donate_mollie_subscriptions":["doneren-met-mollie"],"shopp_purchase":["shopp"],"srzyt_albums":["srizon-responsive-youtube-album"],"vertical_thumbnail_slider":["wp-vertical-image-slider"],"ceceppa_ml":["ceceppa-multilingua"],"nova_poshta_city":["woo-shipping-for-nova-poshta"],"joomsport_events_depending":["joomsport-sports-league-results-management"],"usersultra_photo_categories":["users-ultra"],"simple_feed_stats":["simple-feed-stats"],"chat_log":["chat"],"upicrm_fields":["upi-crm-universal-crm-solution"],"spellcheck_words":["wp-spell-check"],"users_ultra_pm":["users-ultra"],"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"],"albopretorio_attimeta":["albo-pretorio-on-line"],"feed_links":["wordpress-feed-statistics"],"upicrm_fields_mapping":["upi-crm-universal-crm-solution"],"upicrm_integrations":["upi-crm-universal-crm-solution"],"wptsaf_security_system_log":["security-antivirus-firewall"],"oih_lists":["opt-in-hound"],"fav_icon_link":["easy-set-favicon"],"pb_banned_ips":["praybox"],"pb_flags":["praybox"],"pb_prayedfor":["praybox"],"feed_clickthroughs":["wordpress-feed-statistics"],"feed_postviews":["wordpress-feed-statistics"],"az_indexes":["azindex"],"wptsaf_security_google_captcha_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"],"wsi_config":["wsi"],"watsonconv_task_runner_queue":["conversation-watson"],"wptsaf_security_google_captcha_blog_settings":["security-antivirus-firewall"],"androapp_stats":["androapp"],"wptsaf_security_login_brute_force_log":["security-antivirus-firewall"],"spellcheck_options":["wp-spell-check"],"usersultra_ajaxrating_votesummary":["users-ultra"],"spellcheck_ignore":["wp-spell-check"],"activity":["wp-activity"],"usersultra_ajaxrating_vote":["users-ultra"],"angelleye_paypal_for_divi_companies":["angelleye-paypal-for-divi"],"feed_subscribers":["wordpress-feed-statistics"],"google_maps":["google-maps-bank"],"google_maps_meta":["google-maps-bank"],"chat_message":["chat"],"watsonconv_watson_outputs":["conversation-watson"],"usersultra_friends":["users-ultra"],"upicrm_webservice_parameters":["upi-crm-universal-crm-solution"],"albopretorio_resprocedura":["albo-pretorio-on-line"],"wsi_splashimage":["wsi"],"upicrm_options":["upi-crm-universal-crm-solution"],"upicrm_users":["upi-crm-universal-crm-solution"],"oih_subscribers":["opt-in-hound"],"upicrm_webservice":["upi-crm-universal-crm-solution"],"mfgigcal":["mf-gig-calendar"],"upicrm_mails":["upi-crm-universal-crm-solution"],"olimometer_olimometers":["olimometer"],"ewd_feup_fields":["front-end-only-users"],"ewd_feup_levels":["front-end-only-users"],"albopretorio_log":["albo-pretorio-on-line"],"ewd_feup_users":["front-end-only-users"],"ewd_feup_user_fields":["front-end-only-users"],"ewd_feup_user_events":["front-end-only-users"],"ewd_feup_payments":["front-end-only-users"],"nginxchampuru":["nginx-champuru"],"albopretorio_enti":["albo-pretorio-on-line"],"upicrm_leads":["upi-crm-universal-crm-solution"],"rfmp_subscriptions":["mollie-forms"],"sl_pages":["mycurator"],"ays_sccp":["secure-copy-content-protection"],"rfmp_customers":["mollie-forms"],"rfmp_payments":["mollie-forms"],"upicrm_leads_campaign":["upi-crm-universal-crm-solution"],"rfmp_registration_fields":["mollie-forms"],"rfmp_registrations":["mollie-forms"],"pb_requests":["praybox"],"upicrm_leads_status":["upi-crm-universal-crm-solution"],"oih_opt_ins":["opt-in-hound"],"albopretorio_categorie":["albo-pretorio-on-line"],"slider_plus_lightbox":["wp-image-slider-with-lightbox"],"upicrm_leads_changes_log":["upi-crm-universal-crm-solution"],"watsonconv_user_inputs":["conversation-watson"],"upicrm_leads_integration":["upi-crm-universal-crm-solution"],"upicrm_leads_route":["upi-crm-universal-crm-solution"],"taxonomyfield":["ultimate-taxonomy-manager"],"wptsaf_security_404_detection_log":["security-antivirus-firewall"],"comment_likes":["anycomment"],"wpsp_import_history":["wpschoolpress"],"esp_ticket":["event-espresso-decaf"],"pluginsl_traffic_manager":["traffic-manager"],"esp_ticket_price":["event-espresso-decaf"],"remove_menu_admin_profiles":["remove-admin-menus-by-role"],"esp_ticket_template":["event-espresso-decaf"],"usersultra_photos":["users-ultra"],"mc_forms":["nmedia-mailchimp-widget"],"esp_transaction":["event-espresso-decaf"],"esp_status":["event-espresso-decaf"],"watsonconv_contexts":["conversation-watson"],"usersultra_photo_cat_rel":["users-ultra"],"edr_payments":["educator"],"edr_payment_lines":["educator"],"edr_members":["educator"],"edr_grades":["educator"],"replace_mandegarweb":["replace-default-words"],"usersultra_packages":["users-ultra"],"usersultra_stats":["users-ultra"],"edr_questions":["educator"],"usersultra_likes":["users-ultra"],"joomsport_season_table":["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_seasons":["joomsport-sports-league-results-management"],"usersultra_stats_raw":["users-ultra"],"joomsport_squad":["joomsport-sports-league-results-management"],"wpc_users_voted":["woodiscuz-woocommerce-comments"],"wpc_phrases":["woodiscuz-woocommerce-comments"],"esp_registration_payment":["event-espresso-decaf"],"esp_state":["event-espresso-decaf"],"ajax_chat":["simple-ajax-chat"],"related_post_stats":["related-post"],"wpc_comments_subscription":["woodiscuz-woocommerce-comments"],"usersultra_orders":["users-ultra"],"watsonconv_debug_log":["conversation-watson"],"watsonconv_sessions":["conversation-watson"],"easy2map_maps":["easy2map"],"wblm_log":["broken-link-manager"],"anycomment_likes":["anycomment"],"anycomment_email_queue":["anycomment"],"wblm":["broken-link-manager"],"albopretorio_allegati":["albo-pretorio-on-line"],"spellcheck_grammar_options":["wp-spell-check"],"easy2map_map_points":["easy2map"],"easy2map_pin_templates":["easy2map"],"spellcheck_grammar":["wp-spell-check"],"easy2map_templates":["easy2map"],"easy2map_themes":["easy2map"],"albopretorio_atti":["albo-pretorio-on-line"],"responsive_video_grid":["video-grid"],"spellcheck_html":["wp-spell-check"],"mdp_reviews":["mdp-local-business-seo"],"watsonconv_output_intents":["conversation-watson"],"watsonconv_requests":["conversation-watson"],"anycomment_rating":["anycomment"],"spellcheck_empty":["wp-spell-check"],"watsonconv_entities":["conversation-watson"],"edr_entries":["educator"],"ywrr_email_schedule":["yith-woocommerce-review-reminder"],"esp_venue_meta":["event-espresso-decaf"],"watsonconv_input_entities":["conversation-watson"],"watsonconv_input_intents":["conversation-watson"],"usersultra_galleries":["users-ultra"],"responsive_slider_plus_responsive_lightbox":["wp-responsive-slider-with-lightbox"],"edr_entry_meta":["educator"],"edr_choices":["educator"],"anycomment_subscriptions":["anycomment"],"swp_category":["wp-testimonial-widget"],"edr_answers":["educator"],"zotpress":["zotpress"],"spellcheck_dictionary":["wp-spell-check"],"watsonconv_intents":["conversation-watson"],"watsonconv_output_entities":["conversation-watson"],"swp_testimonial":["wp-testimonial-widget"],"anycomment_uploaded_files":["anycomment"],"wpsp_leavedays":["wpschoolpress"],"mystickyelement_contact_lists":["mystickyelements"],"hl_twitter_users":["hl-twitter"],"zotpress_oauth":["zotpress"],"oauth_access_tokens":["oauth2-provider","wpdrift-io-worker"],"amazon_btg":["wp-lister-for-amazon"],"sc_eventmeta":["sugar-calendar-lite"],"errors_404_logs":["404-error-monitor"],"sc_events":["sugar-calendar-lite"],"zbs_sys_email_hist":["zero-bs-crm"],"zbs_tags":["zero-bs-crm"],"bp_group_documents":["bp-group-documents"],"amazon_categories":["wp-lister-for-amazon"],"amazon_accounts":["wp-lister-for-amazon"],"zbs_tags_links":["zero-bs-crm"],"zotpress_cache":["zotpress"],"zbs_temphash":["zero-bs-crm"],"tinycarousel":["tiny-carousel-horizontal-slider"],"camera":["camera-slideshow"],"cubiq_add_to_home":["official-add-to-homescreen"],"mpprecipe_tags":["blockonomics-bitcoin-payments","meal-planner-pro"],"mollie_forms_price_options":["mollie-forms"],"oauth_clients":["oauth2-provider"],"mphb_sync_queue":["motopress-hotel-booking-lite"],"mphb_sync_stats":["motopress-hotel-booking-lite"],"mphb_sync_urls":["motopress-hotel-booking-lite"],"tpcmem_checkpoints":["tpc-memory-usage","tpc-memory-usage-updated"],"wctofb":["woo-to-facebook-shop"],"psn_rules":["post-status-notifier-lite"],"mpprecipe_ratings":["blockonomics-bitcoin-payments","meal-planner-pro"],"amazon_feeds":["wp-lister-for-amazon"],"oauth_authorization_codes":["oauth2-provider","wpdrift-io-worker"],"mpprecipe_recipes":["blockonomics-bitcoin-payments","meal-planner-pro"],"amazon_feed_tpl_values":["wp-lister-for-amazon"],"mollie_forms_registration_price_options":["mollie-forms"],"amazon_feed_tpl_data":["wp-lister-for-amazon"],"cta_ip_failed_atts":["captcha-them-all"],"wpia_calendars":["wp-ical-availability"],"mollie_forms_registration_fields":["mollie-forms"],"amazon_feed_templates":["wp-lister-for-amazon"],"tinycarousel_gallery":["tiny-carousel-horizontal-slider-plus"],"cup_cp_profiles":["contact-us-page-contact-people"],"amazon_jobs":["wp-lister-for-amazon"],"comment_notifier":["comment-notifier","comment-notifier-no-spammers"],"_submitlogs":["zoho-crm-forms"],"sections":["my-posts-order"],"securimagewp":["securimage-wp","securimage-wp-fixed"],"_contactformrelation":["zoho-crm-forms"],"wswebinars_questions":["wp-webinarsystem"],"stoutgc":["stout-google-calendar"],"stray_quotes":["stray-quotes","xv-random-quotes"],"esp_currency":["event-espresso-decaf"],"topic":["mycurator"],"captured_wc_fields":["woo-save-abandoned-carts"],"fullstripe_payments":["wp-full-stripe-free"],"fullstripe_payment_forms":["wp-full-stripe-free"],"rm_log":["easy-redirect-manager"],"esp_currency_payment_method":["event-espresso-decaf"],"asq_result_templates":["ari-stream-quiz"],"asq_quizzes":["ari-stream-quiz"],"comments_fbseo":["seo-facebook-comments"],"_zohocrm_assignmentrule":["zoho-crm-forms"],"zbs_tracking":["zero-bs-crm"],"zbscrm_api_keys":["zero-bs-crm"],"esp_answer":["event-espresso-decaf"],"esp_attendee_meta":["event-espresso-decaf"],"esp_checkin":["event-espresso-decaf"],"esp_country":["event-espresso-decaf"],"bounced_email_logs":["bounce-handler-mailpoet"],"mollie_forms_payments":["mollie-forms"],"mollie_forms_customers":["mollie-forms"],"appointy_calendar":["appointy-appointment-scheduler"],"web_paceportfolio_images":["photo-portfolio-gallery"],"mobiloud_pages":["mobiloud-mobile-app-plugin"],"mobiloud_notifications":["mobiloud-mobile-app-plugin"],"mobiloud_notification_categories":["mobiloud-mobile-app-plugin"],"mobiloud_categories":["mobiloud-mobile-app-plugin"],"robo_maps":["robo-maps"],"wpsp_grade":["wpschoolpress"],"wswebinars_subscribers":["wp-webinarsystem"],"tinycarousel_image":["tiny-carousel-horizontal-slider-plus"],"mphb_sync_logs":["motopress-hotel-booking-lite"],"zbs_meta":["zero-bs-crm"],"wpls_online":["wp-live-statistics"],"alert_notice_boxes":["alert-notice-boxes"],"bup_options":["backup-by-supsystic"],"cpf_custom_products":["purple-xmls-google-product-feed-for-woocommerce"],"cpf_customfeeds":["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"],"exporttopdfrecord":["wp-advanced-pdf"],"bup_modules_type":["backup-by-supsystic"],"termsmeta":["wp-category-meta","wp-custom-taxonomy-meta","custom-taxonomy-category-and-term-fields"],"bup_modules":["backup-by-supsystic"],"bup_htmltype":["backup-by-supsystic"],"continuous_image_carousel":["continuous-image-carousel-with-lightbox"],"oauth_refresh_tokens":["oauth2-provider","wpdrift-io-worker"],"yendif_player_media":["yendif-player"],"zbs_object_links":["zero-bs-crm"],"oauth_scopes":["oauth2-provider","wpdrift-io-worker"],"bup_options_categories":["backup-by-supsystic"],"gcf":["simple-contact-form"],"amazon_shipping":["wp-lister-for-amazon"],"_zohoshortcode_manager":["zoho-crm-forms"],"pw_gcmusers":["androapp"],"openid_identities":["openid"],"amazon_stock_log":["wp-lister-for-amazon"],"imagelinks":["imagelinks-interactive-image-builder-lite"],"image_compression_settings":["wp-image-compression"],"image_compression_details":["wp-image-compression"],"gd_manager":["wp-google-drive"],"_zohocrmform_field_manager":["zoho-crm-forms"],"q2w3_post_order":["q2w3-post-order"],"_zohocrm_list_module":["zoho-crm-forms"],"zotpress_zoteroitemimages":["zotpress"],"_zohocrm_formfield_manager":["zoho-crm-forms"],"cp_easy_form_settings":["cp-easy-form-builder"],"cp_feeds":["purple-xmls-google-product-feed-for-woocommerce"],"ig_caticons":["category-icons"],"iframepopup":["iframe-popup"],"oauth_public_keys":["oauth2-provider","wpdrift-io-worker"],"oauth_jwt":["oauth2-provider","wpdrift-io-worker"],"wpap_cache":["wp-associate-post-r2"],"crony_jobs":["crony"],"qb_conversions":["quickiebar"],"qb_views":["quickiebar"],"amazon_listings":["wp-lister-for-amazon"],"zbs_sys_email":["zero-bs-crm"],"qcld_slider_hero_sliders":["slider-hero"],"qcld_slider_hero_slides":["slider-hero"],"mollie_forms_subscriptions":["mollie-forms"],"crony_logs":["crony"],"contactic_st":["contactic"],"loginlog":["login-logger"],"mollie_forms_registrations":["mollie-forms"],"wpinv_subscriptions":["invoicing"],"pta_sus_tasks":["pta-volunteer-sign-up-sheets"],"pta_sus_signups":["pta-volunteer-sign-up-sheets"],"pta_sus_sheets":["pta-volunteer-sign-up-sheets"],"wr_contactform_form_pages":["wr-contactform"],"wr_contactform_fields":["wr-contactform"],"contactic_notices":["contactic"],"tpcmem_log":["tpc-memory-usage","tpc-memory-usage-updated"],"amazon_reports":["wp-lister-for-amazon"],"yendif_player_settings":["yendif-player"],"amazon_payment":["wp-lister-for-amazon"],"amazon_orders":["wp-lister-for-amazon"],"wr_contactform_submission_data":["wr-contactform"],"zbs_notifications":["zero-bs-crm"],"amazon_markets":["wp-lister-for-amazon"],"amazon_log":["wp-lister-for-amazon"],"yendif_player_playlists":["yendif-player"],"satl_galleries":["slideshow-satellite"],"contactic_submits":["contactic"],"satl_slides":["slideshow-satellite"],"zbs_segments":["zero-bs-crm"],"zbs_segments_conditions":["zero-bs-crm"],"zbs_segments_rules":["zero-bs-crm"],"zbs_settings":["zero-bs-crm"],"atbdp_review":["directorist"],"qb_bars":["quickiebar"],"zbs_sys_cronmanagerlogs":["zero-bs-crm"],"wpls":["wp-live-statistics"],"geot_countries":["geotargeting","geo-redirects"],"asq_questions":["ari-stream-quiz"],"hostnet_mailer":["hostnet-mailer"],"mv_shapes":["mediavine-create"],"cntctfrmtdb_field_selection":["contact-form-to-db"],"postsread":["mycurator"],"cntctfrmtdb_blogname":["contact-form-to-db"],"mv_supplies":["mediavine-create"],"lctr2_searchlog":["locatoraid"],"cntctfrmtdb_hosted_site":["contact-form-to-db"],"horizontal_scrolling_hsas":["horizontal-scrolling-announcements"],"hndtst_saved":["handsome-testimonials"],"mwd_display_options":["wd-mailchimp"],"lctr2_relations":["locatoraid"],"mwd_forms":["wd-mailchimp"],"mwd_forms_backup":["wd-mailchimp"],"wpshop_selected_items":["wp-shop-original"],"cntctfrmtdb_message":["contact-form-to-db"],"mwd_forms_sessions":["wd-mailchimp"],"mv_nutrition":["mediavine-create"],"leaguemanager_leagues":["leaguemanager"],"esp_event_question_group":["event-espresso-decaf"],"mv_creations":["mediavine-create"],"wpshop_orders":["wp-shop-original"],"mv_images":["mediavine-create"],"woocommerce_p24_data":["woo-przelewy24-payment-gateway"],"mv_products":["mediavine-create"],"cntctfrmtdb_message_status":["contact-form-to-db"],"mv_products_map":["mediavine-create"],"postview":["wp-post-view","yg-popular","anppopular-post"],"cntctfrmtdb_to_email":["contact-form-to-db"],"mv_relations":["mediavine-create"],"mv_reviews":["mediavine-create"],"cntctfrmtdb_refer":["contact-form-to-db"],"mwd_forms_blocked":["wd-mailchimp"],"sfba_subscribers_lists":["wp-subscribe-form"],"rich_web_tabs_fields":["tabbed"],"lctr2_conf":["locatoraid"],"ai_logs":["mycurator"],"vxcf_leads_detail":["contact-form-entries"],"yumpu_documents":["yumpu-epaper-publishing"],"wpsp_attendance":["wpschoolpress"],"rich_web_tabs_manager":["tabbed"],"lctr2_locations":["locatoraid"],"ssa_availability":["simply-schedule-appointments"],"shashin_album":["shashin"],"vw_lwsessions":["videowhisper-live-streaming-integration"],"vw_sessions":["videowhisper-live-streaming-integration"],"vxcf_leads":["contact-form-entries"],"vw_vwls_chatlog":["videowhisper-live-streaming-integration"],"esp_event_meta":["event-espresso-decaf"],"esp_extra_join":["event-espresso-decaf"],"ai_contact":["responsive-contact-form"],"lctr2_migrations":["locatoraid"],"rich_web_tabs_id":["tabbed"],"wpsp_class_mapping":["wpschoolpress"],"esp_log":["event-espresso-decaf"],"esp_line_item":["event-espresso-decaf"],"sfba_subscription_lists":["wp-subscribe-form"],"followme_links":["follow-me"],"esp_extra_meta":["event-espresso-decaf"],"sfbap_subscribers_lists":["wp-subscribe-form"],"wpsp_class":["wpschoolpress"],"sfm_redirects":["feedburner-alternative-and-rss-redirect"],"mwd_forms_submits":["wd-mailchimp"],"sfbap_subscription_lists":["wp-subscribe-form"],"vxcf_leads_notes":["contact-form-entries"],"mwd_forms_views":["wd-mailchimp"],"mwd_themes":["wd-mailchimp"],"shashin_photo":["shashin"],"leaguemanager_matches":["leaguemanager"],"esp_event_venue":["event-espresso-decaf"],"wpsp_fees_payment":["wpschoolpress"],"booking_package_coursedata":["booking-package"],"radioforge_radio":["radio-forge"],"wprmm_icons":["easy-restaurant-menu-manager"],"rich_web_tabs_effect_2":["tabbed"],"rich_web_tabs_effect_1":["tabbed"],"zbs_logs":["zero-bs-crm"],"wpshop_ordered":["wp-shop-original"],"wprmm_items":["easy-restaurant-menu-manager"],"leaguemanager_teams":["leaguemanager"],"esp_datetime":["event-espresso-decaf"],"404_log":["404-error-logger"],"wprmm_menus":["easy-restaurant-menu-manager"],"booking_package_calendaraccount":["booking-package"],"web_paceportfolio_portfolios":["photo-portfolio-gallery"],"booking_package_userpraivatedata":["booking-package"],"polls_users":["polls-widget"],"booking_package_emailsetting":["booking-package"],"booking_package_webhook":["booking-package"],"booking_package_form":["booking-package"],"booking_package_guests":["booking-package"],"booking_package_regular_holidays":["booking-package"],"booking_package_schedule":["booking-package"],"booking_package_subscriptions":["booking-package"],"booking_package_users":["booking-package"],"booking_package_taxes":["booking-package"],"polls_question":["polls-widget"],"booking_package_templateschedule":["booking-package"],"vw_lsrooms":["videowhisper-live-streaming-integration"],"freshmail_forms":["freshmail-integration"],"fpropdf_tmp":["formidablepro-2-pdf"],"api_setting":["wp-gcalendar"],"wswebinars_notifications":["wp-webinarsystem"],"amazon_profiles":["wp-lister-for-amazon"],"zbs_admlog":["zero-bs-crm"],"zbs_aka":["zero-bs-crm"],"rich_web_tabs_effects_data":["tabbed"],"ssa_async_actions":["simply-schedule-appointments"],"asq_answers":["ari-stream-quiz"],"polls":["polls-widget"],"zbs_contacts":["zero-bs-crm"],"zbs_customfields":["zero-bs-crm"],"cas_plugin":["continuous-announcement-scroller"],"fpropdf_fields":["formidablepro-2-pdf"],"qwall_monitor":["querywall"],"wpsp_events":["wpschoolpress"],"freshmail_stats":["freshmail-integration"],"wpsp_exam":["wpschoolpress"],"esp_datetime_ticket":["event-espresso-decaf"],"wpsp_fees":["wpschoolpress"],"esp_event_message_template":["event-espresso-decaf"],"wpsp_fee_payment_history":["wpschoolpress"],"zbs_externalsources":["zero-bs-crm"],"wprmm_categories":["easy-restaurant-menu-manager"],"zbs_dbmigration_posts":["zero-bs-crm"],"fpropdf_layouts":["formidablepro-2-pdf"],"senderqueue":["elastic-email-sender"],"zbs_dbmigration_meta":["zero-bs-crm"],"polls_templates":["polls-widget"],"events_qst_group":["event-espresso-free"],"events_qst_group_rel":["event-espresso-free"],"events_question":["event-espresso-free"],"wp_sap_answers":["wp-survey-and-poll"],"events_prices":["event-espresso-free"],"events_locale":["event-espresso-free"],"events_discount_rel":["event-espresso-free"],"fb_comments_image_data":["fb-comments-importer"],"tfwctool_wishlist_lists":["woo-tools"],"events_personnel_rel":["event-espresso-free"],"events_venue_rel":["event-espresso-free"],"exportsreports_groups":["exports-and-reports"],"torro_result_values":["torro-forms"],"wp_fb_social_stream":["facebook-social-stream","botnet-attack-blocker","jquery-drop-down-menu-plugin","flattr"],"nggv_settings":["nextgen-gallery-voting"],"events_locale_rel":["event-espresso-free"],"events_personnel":["event-espresso-free"],"nggv_votes":["nextgen-gallery-voting"],"events_multi_event_registration_id_group":["event-espresso-free"],"torro_participants":["torro-forms"],"torro_email_notifications":["torro-forms"],"exportsreports_log":["exports-and-reports"],"exportsreports_reports":["exports-and-reports"],"events_meta":["event-espresso-free"],"onclick_show_popup":["onclick-show-popup"],"wp_optimisation_sizes_info":["cache-performance"],"ez_adsense_options":["adsense-now-lite","google-adsense-lite","ajax-adsense"],"wpa_auctions":["wp-auctions"],"wp_video_gallery_tags":["wp-video-gallery-free"],"wp_copy":["copy-link"],"torro_submissions":["torro-forms"],"wp_seo_groups":["404-redirection-manager"],"wp_video_gallery_params":["wp-video-gallery-free"],"wp_video_gallery_grids_videos":["wp-video-gallery-free"],"events_attendee_meta":["event-espresso-free"],"events_attendee":["event-espresso-free"],"events_answer":["event-espresso-free"],"eventer_users":["eventer"],"wp_cache_gravatars":["cache-performance"],"wp_video_gallery":["wp-video-gallery-free"],"notify":["jazz-popups"],"torro_submission_values":["torro-forms"],"torro_submissionmeta":["torro-forms"],"wp_video_gallery_grids":["wp-video-gallery-free"],"tla_data":["text-link-ads"],"obr_humancaptcha_admin":["humancaptcha"],"obr_humancaptcha_qanda":["humancaptcha"],"torro_containers":["torro-forms"],"novomap_marker_logo":["novo-map"],"torro_element_choices":["torro-forms"],"wpa_bids":["wp-auctions"],"events_venue":["event-espresso-free"],"ezfc_forms_options":["ez-form-calculator"],"events_discount_codes":["event-espresso-free"],"wp_sap_questions":["wp-survey-and-poll"],"torro_results":["torro-forms"],"ezfc_debug":["ez-form-calculator"],"ezfc_files":["ez-form-calculator"],"ezfc_forms":["ez-form-calculator"],"torro_elements":["torro-forms"],"events_start_end":["event-espresso-free"],"events_detail":["event-espresso-free"],"torro_element_settings":["torro-forms"],"wp_sap_surveys":["wp-survey-and-poll"],"ezfc_forms_elements":["ez-form-calculator"],"ezfc_options":["ez-form-calculator"],"wp_mpdf_posts":["wp-mpdf"],"ezfc_preview":["ez-form-calculator"],"wp_ada_compliance_basic":["wp-ada-compliance-check-basic"],"novomap_gmap":["novo-map"],"ezfc_submissions":["ez-form-calculator"],"ezfc_templates":["ez-form-calculator"],"novomap_marker":["novo-map"],"ezoic_endpoints":["ezoic-integration","bloomly-integration"],"torro_element_answers":["torro-forms"],"events_category_rel":["event-espresso-free"],"total_security_log":["total-security"],"events_category_detail":["event-espresso-free"],"events_email":["event-espresso-free"],"ecommercewd_options":["ecommerce-wd"],"fbthumbnails":["easy-facebook-share-thumbnails"],"mapsvg_schema":["mapsvg-lite-interactive-vector-maps"],"utubevideo_video":["utubevideo-gallery"],"utubevideo_playlist":["utubevideo-gallery"],"webpages_data":["wp-hosting-performance-check"],"ck_field_types_xml":["wp-advanced-importer"],"plenewsletter_subscriptions":["simple-newsletter-br"],"utubevideo_dataset":["utubevideo-gallery"],"webwinkelkeur_invite_error":["webwinkelkeur"],"utubevideo_album":["utubevideo-gallery"],"mapsvg_r2d":["mapsvg-lite-interactive-vector-maps"],"mbdb_books":["mooberry-book-manager"],"hermit":["hermit"],"ha_user_event":["hotspots"],"ha_user_environment":["hotspots"],"ha_user":["hotspots"],"ha_custom_event":["hotspots"],"mcwp_coins":["cryptocurrency-widgets-pack"],"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"],"hermit_cat":["hermit"],"media_folders_lists":["wp-media-manager-lite"],"hypeanimations":["tumult-hype-animations"],"ic_queue":["wp-compress-image-optimizer"],"ic_log":["wp-compress-image-optimizer"],"ic_compressed":["wp-compress-image-optimizer"],"volunteer_rsvps":["wired-impact-volunteer-management"],"volunteer_emails":["wired-impact-volunteer-management"],"lme_areas":["local-market-explorer"],"k_breaker_tasks":["taskbreaker-project-management"],"k_breaker_task_meta":["taskbreaker-project-management"],"k_breaker_comments":["taskbreaker-project-management"],"login_attempt_log":["wp-login-attempt-log"],"ckuci_events_xml":["wp-advanced-importer"],"loginsecurity_logs":["rename-wp-loginphp-to-anything-you-want"],"hugeit_colorbox":["colorbox"],"accordionslider_accordions":["accordion-slider-lite"],"accordionslider_layers":["accordion-slider-lite"],"accordionslider_panels":["accordion-slider-lite"],"ltw_testimonial_groups":["ltw-testimonials"],"ltw_testimonials":["ltw-testimonials"],"ckxml_pie_log":["wp-advanced-importer"],"ckxml_line_log":["wp-advanced-importer"],"ckuci_history_xml":["wp-advanced-importer"],"media_folder_file_relationship":["wp-media-manager-lite"],"usermeta_geo":["wp-mapbox-gl-js","wp-geometa"],"yapbimage":["yet-another-photoblog"],"xmt_acc":["xhanch-my-twitter"],"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"],"ada_compliance_basic":["wp-ada-compliance-check-basic"],"slug_history":["wp-seo-redirect-301"],"acym_queue":["acymailing"],"umbrella_sp_log":["umbrella-antivirus-hack-protection"],"ultimate_csv_importer_shortcodes_statusrel_xml":["wp-advanced-importer"],"ultimate_csv_importer_mappingtemplate_xml":["wp-advanced-importer"],"gktpp_table":["pre-party-browser-hints"],"gktpp_ajax_domains":["pre-party-browser-hints"],"gks_slides":["yoo-slider"],"gks_sliders":["yoo-slider"],"ultimate_csv_importer_manageshortcodes_xml":["wp-advanced-importer"],"acym_rule":["acymailing"],"gravatars":["fv-gravatar-cache"],"melipayamak_gfverification":["melipayamak"],"acym_automation_has_step":["acymailing"],"melipayamak_groups":["melipayamak","melipayamak-woocommerce-sms"],"melipayamak_members":["melipayamak","melipayamak-woocommerce-sms"],"melipayamak_messages":["melipayamak","melipayamak-woocommerce-sms"],"memberful_mapping":["memberful-wp"],"user_info":["resume-upload-form"],"xmt_twt":["xhanch-my-twitter"],"xmt_ath":["xhanch-my-twitter"],"acym_action":["acymailing"],"acym_automation":["acymailing"],"acym_campaign":["acymailing"],"messagebox_embed_cache":["simple-ajax-shoutbox"],"acym_condition":["acymailing"],"acym_configuration":["acymailing"],"acym_field":["acymailing"],"acym_history":["acymailing"],"acym_list":["acymailing"],"acym_mail":["acymailing"],"urls":["staticpress"],"acym_mail_has_list":["acymailing"],"acym_mail_stat":["acymailing"],"messagebox":["simple-ajax-shoutbox"],"ic_stats":["wp-compress-image-optimizer"],"llp_templates":["wp-landing-pages"],"tz_plusgallery_type":["tz-plus-gallery"],"ivrss_plugin":["image-vertical-reel-scroll-slideshow"],"_coupons":["webba-booking-lite","photo-video-store"],"_days_on_off":["webba-booking-lite"],"_email_templates":["webba-booking-lite"],"_gg_calendars":["webba-booking-lite"],"_locked_time_slots":["webba-booking-lite"],"_service_categories":["webba-booking-lite"],"_services":["webba-booking-lite"],"l24bd_wpcounter_visitors":["wp-counter"],"lana_downloads_manager_logs":["lana-downloads-manager"],"langselrel_posts":["language-selector-related"],"_appointments":["webba-booking-lite"],"langselrel_terms":["language-selector-related"],"vxcf_hubspot_log":["cf7-hubspot"],"vxcf_hubspot_accounts":["cf7-hubspot"],"vxcf_hubspot":["cf7-hubspot"],"lazyestfiles":["lazyest-gallery"],"iq_testimonials_settings":["iq-testimonials"],"iq_testimonials":["iq-testimonials"],"ipages_flipbook":["ipages-flipbook"],"lic_key_tbl":["software-license-manager"],"lic_reg_domain_tbl":["software-license-manager"],"_cancelled_appointments":["webba-booking-lite"],"kcc_clicks":["kama-clic-counter"],"interlinker_times":["cross-linker"],"kanban_statuses":["kanban"],"jsdelivr_files":["jsdelivr-wordpress-cdn-plugin"],"jssor_slider_sliders":["jssor-slider"],"jssor_slider_trans":["jssor-slider"],"kanban_boards":["kanban"],"kanban_estimates":["kanban"],"kanban_log_comments":["kanban"],"kanban_log_status_changes":["kanban"],"kanban_options":["kanban"],"kanban_projects":["kanban"],"kanban_task_hours":["kanban"],"itor":["visitor-map"],"kanban_taskmeta":["kanban"],"kanban_tasks":["kanban"],"jquery_newsticker":["jquery-news-ticker"],"jot_messages":["joy-of-text"],"jot_messagequeue":["joy-of-text"],"jot_groups":["joy-of-text"],"jot_groupmeta":["joy-of-text"],"jot_groupmemxref":["joy-of-text"],"jot_groupmembers":["joy-of-text"],"jot_groupinvites":["joy-of-text"],"internalinks":["internal-links-generator"],"interlinker_stats_main":["cross-linker"],"llm":["link-list-manager"],"importer_files":["jc-importer"],"indica_econo":["widget-indicadores-economicos-chile"],"indeed_job_importer":["indeed-job-importer"],"_taboola_settings":["taboola"],"vspfw":["very-simple-password"],"impressum_manager_content":["impressum-manager"],"voucherpress_vouchers":["voucherpress"],"voucherpress_templates":["voucherpress"],"voucherpress_downloads":["voucherpress"],"importer_log":["jc-importer"],"liveforms_addons":["liveforms"],"information_reel":["information-reel"],"liveforms_addons_active":["liveforms"],"liveforms_addons_form_details":["liveforms"],"liveforms_conreqs":["liveforms"],"image_hover_with_carousel_style":["image-hover-effects-with-carousel"],"image_hover_with_carousel_list":["image-hover-effects-with-carousel"],"liveforms_payments":["liveforms"],"liveforms_stats":["liveforms"],"ilj_linkindex":["internal-links"],"il_local":["inlocation"],"iire_social":["iire-social-icons"],"infopopup":["infopopup"],"limb_gallery_themes":["limb-gallery"],"interlinker_stats_details":["cross-linker"],"intel_value_str":["intelligence"],"interlinker_special_chars":["cross-linker"],"interlinker_settings":["cross-linker"],"interlinker_multilang":["cross-linker"],"interlinker_lng_wds":["cross-linker"],"interlinker_divide_chars":["cross-linker"],"interlinker_backups":["cross-linker"],"interlinker_attributes":["cross-linker"],"interlinker":["cross-linker"],"intel_visitor_identifier":["intelligence"],"intel_visitor":["intelligence"],"intel_submission":["intelligence"],"limb_gallery_shortcodes":["limb-gallery"],"intel_entity_attr":["intelligence"],"integrity_checker_files":["integrity-checker"],"yesno_set":["yesno"],"yesno_question":["yesno"],"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"],"ultimate_csv_importer_log_values_xml":["wp-advanced-importer"],"tz_plusgallery_options":["tz-plus-gallery"],"fc_action":["oasis-workflow"],"nbs_newsletters":["newsletter-by-supsystic"],"namaste_visits":["namaste-lms"],"flgallery_settings":["global-flash-galleries"],"flgallery_images":["global-flash-galleries"],"flgallery_galleries":["global-flash-galleries"],"flgallery_albums":["global-flash-galleries"],"nbs_countries":["newsletter-by-supsystic"],"nbs_forms":["newsletter-by-supsystic"],"nbs_modules":["newsletter-by-supsystic"],"nbs_modules_type":["newsletter-by-supsystic"],"nbs_newsletters_to_lists":["newsletter-by-supsystic"],"namaste_student_lessons":["namaste-lms"],"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"],"wordable":["wordable"],"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"],"namaste_student_modules":["namaste-lms"],"namaste_student_homeworks":["namaste-lms"],"nbs_usage_stat":["newsletter-by-supsystic"],"mystatsize":["wp-mystat"],"mwp_countdown_free":["mwp-countdown"],"formlift_submissions":["formlift"],"formlift_sessions":["formlift"],"formlift_impressions":["formlift"],"mwp_side_menu_free":["mwp-side-menu"],"mylocation":["my-loginlogout"],"mylogin":["my-loginlogout"],"mystatclick":["wp-mystat"],"mystatdata":["wp-mystat"],"mywebtonetperfstatsresults":["mywebtonet-performancestats"],"namaste_student_courses":["namaste-lms"],"mywebtonetqtest":["mywebtonet-performancestats"],"namaste_certificates":["namaste-lms"],"fmera_meta":["fma-additional-registration-attributes"],"fmera_fields":["fma-additional-registration-attributes"],"namaste_history":["namaste-lms"],"namaste_homework_notes":["namaste-lms"],"namaste_homeworks":["namaste-lms"],"namaste_payments":["namaste-lms"],"namaste_solution_files":["namaste-lms"],"namaste_student_certificates":["namaste-lms"],"nbs_subscribers_to_lists_prev":["newsletter-by-supsystic"],"k_breaker_tasks_user_assignment":["taskbreaker-project-management"],"agodapartnertextlink":["agoda-affiliate-partners-text-link-generator"],"l_wp_leagues":["football-pool"],"fed_menu_meta":["frontend-dashboard"],"fed_menu":["frontend-dashboard"],"wow_countdowns_free":["mwp-countdown"],"l_wp_rankings_bonusquestions":["football-pool"],"featured_posts":["select-featured-posts"],"l_wp_rankings":["football-pool"],"l_wp_predictions":["football-pool"],"l_wp_matchtypes":["football-pool"],"l_wp_matches":["football-pool"],"l_wp_league_users":["football-pool"],"fed_user_profile":["frontend-dashboard"],"l_wp_groups":["football-pool"],"l_wp_bonusquestions_useranswers":["football-pool"],"l_wp_bonusquestions_type":["football-pool"],"fc_workflows":["oasis-workflow"],"fc_workflow_steps":["oasis-workflow"],"fc_lists":["frontend-checklist"],"fc_items":["frontend-checklist"],"fc_emails":["oasis-workflow"],"l_wp_bonusquestions":["football-pool"],"fc_action_history":["oasis-workflow"],"fed_post":["frontend-dashboard"],"l_wp_rankings_matches":["football-pool"],"nd_travel_booking":["nd-travel"],"newsman_lists":["wpnewsman-newsletters"],"newsletter_users":["wordpress-newsletter"],"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_locks":["wpnewsman-newsletters"],"l_wp_scorehistory_s1_t1":["football-pool"],"newsman_lst_default":["wpnewsman-newsletters"],"newsman_lst_wp_users":["wpnewsman-newsletters"],"newsman_sentlog":["wpnewsman-newsletters"],"newsman_workers":["wpnewsman-newsletters"],"l_wp_teams":["football-pool"],"feedly_insight_history":["feedly-insight"],"l_wp_stadiums":["football-pool"],"l_wp_shoutbox":["football-pool"],"l_wp_seasons":["football-pool"],"l_wp_scorehistory_s1_t2":["football-pool"],"ah_stats":["antihacker"],"agm_maps":["wordpress-google-maps"],"tz_plusgallery_item":["tz-plus-gallery"],"moo_item_tag":["clover-online-orders"],"monalisa":["wp-monalisa"],"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_tax_rate":["clover-online-orders"],"wtbp_modules":["woo-product-tables"],"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"],"gc_uniqid":["gnucommerce"],"gc_shop_wish":["gnucommerce"],"gc_shop_sendcost":["gnucommerce"],"wtbp_columns":["woo-product-tables"],"advsh":["wp-advanced-search"],"gc_shop_order_delete":["gnucommerce"],"gigs_gig":["gigs-calendar"],"tz_plusgallery_images":["tz-plus-gallery"],"giveasap_meta":["giveasap"],"giveasap_entries":["giveasap"],"giveasap_actions":["giveasap"],"mk_newsletter_data":["newsletter-popup"],"mk_newsletter_local_records":["newsletter-popup"],"gigs_venue":["gigs-calendar"],"gigs_tour":["gigs-calendar"],"gigs_performance":["gigs-calendar"],"ads_banners":["wpads"],"etd_manager":["email-to-download"],"tutor_withdraws":["tutor"],"tutor_quiz_questions":["tutor"],"tutor_quiz_question_answers":["tutor"],"tutor_quiz_attempts":["tutor"],"tutor_quiz_attempt_answers":["tutor"],"tutor_earnings":["tutor"],"ww_extras":["widget-wrangler"],"wtbp_usage_stat":["woo-product-tables"],"wtbp_tables":["woo-product-tables"],"wtbp_modules_type":["woo-product-tables"],"gc_shop_personalpay":["gnucommerce"],"gc_shop_order_data":["gnucommerce"],"afi_types":["attachment-file-icons"],"fv_digiwidgetsloghistory":["digiwidgets-image-editor"],"g5_write":["gnucommerce","gnupress"],"g5_term_taxonomy":["gnucommerce","gnupress"],"g5_term_relationships":["gnucommerce","gnupress"],"g5_scrap":["gnucommerce","gnupress"],"tp_image_optimizer":["tp-image-optimizer"],"g5_point":["gnucommerce","gnupress"],"g5_board_good":["gnucommerce","gnupress"],"g5_board":["gnucommerce","gnupress"],"fv_digiwidgetstemplates":["digiwidgets-image-editor"],"fv_digiwidgetslog":["digiwidgets-image-editor"],"g5_writemeta":["gnucommerce","gnupress"],"fv_digiwidgetsdata":["digiwidgets-image-editor"],"msdb_post_data":["music-store","sell-downloads"],"msdb_purchase":["music-store","sell-downloads"],"fsg_galleries":["flickr-set-slideshows"],"fs_visits":["feedstats-de"],"fs_data":["feedstats-de"],"mt_plugin":["message-ticker"],"mts_locker_stats":["content-locker"],"fr_post":["fat-rat-collect"],"fr_options":["fat-rat-collect"],"g5_write_comment":["gnucommerce","gnupress"],"wof_lite_optins":["wp-optin-wheel"],"gc_shop_order":["gnucommerce"],"moove_activity_log":["user-activity-tracking-and-log"],"gc_shop_mileage":["gnucommerce"],"gc_shop_item_stocksms":["gnucommerce"],"gc_shop_item_qa":["gnucommerce"],"gc_shop_item":["gnucommerce"],"gc_shop_coupon_log":["gnucommerce"],"gc_shop_coupon":["gnucommerce"],"gc_shop_cart":["gnucommerce"],"gc_item_use":["gnucommerce"],"gc_item_option":["gnucommerce"],"gc_inicis_log":["gnucommerce"],"gc_cert_history":["gnucommerce"],"wm_ya_texts":["webmaster-yandex"],"most_read_hits":["most-read-posts-in-xx-days"],"gallery_master_settings":["gallery-master"],"gallery_master_meta":["gallery-master"],"gallery_master_licensing":["gallery-master"],"gallery_master":["gallery-master"],"mpd_log":["multisite-post-duplicator"],"wm_ya_stat_texts":["webmaster-yandex"],"tfwctool_wishlist_items":["woo-tools"],"jsdelivr_cdn_packages":["jsdelivr-wordpress-cdn-plugin"],"realbig_settings":["realbig-media"],"apexnb_subscriber":["apex-notification-bar-lite"],"supsystic_membership_groups_tags":["membership-by-supsystic"],"supsystic_membership_groups_settings":["membership-by-supsystic"],"supsystic_membership_groups_invites":["membership-by-supsystic"],"supsystic_membership_groups_images":["membership-by-supsystic"],"wpf_usage_stat":["woo-product-filter"],"supsystic_membership_groups_followers":["membership-by-supsystic"],"sola_nl_css_options":["sola-newsletters"],"supsystic_membership_groups_category":["membership-by-supsystic"],"supsystic_membership_groups_blacklists":["membership-by-supsystic"],"supsystic_membership_groups_albums":["membership-by-supsystic"],"postmeta_geo":["wp-mapbox-gl-js","wp-geometa"],"sola_nl_link_tracking":["sola-newsletters"],"supsystic_membership_groups":["membership-by-supsystic"],"dc_releases":["wp-download-codes"],"dc_downloads":["wp-download-codes"],"dc_codes":["wp-download-codes"],"dc_code_groups":["wp-download-codes"],"sola_nl_list":["sola-newsletters"],"sola_nl_subscribers":["sola-newsletters"],"sola_nl_subscribers_list":["sola-newsletters"],"sola_nl_campaigns":["sola-newsletters"],"supsystic_membership_groups_users":["membership-by-supsystic"],"postviews_plus":["wp-postviews-plus"],"supsystic_membership_messages_attachments":["membership-by-supsystic"],"wpf_modules_type":["woo-product-filter"],"supsystic_membership_photo_gallery":["membership-by-supsystic"],"supsystic_membership_notifications":["membership-by-supsystic"],"buddykit_user_files":["buddykit"],"sola_nl_advanced_link_tracking":["sola-newsletters"],"sola_nl_campaign_lists":["sola-newsletters"],"post_views_count__spvc":["simple-post-views-count"],"supsystic_membership_messages_users":["membership-by-supsystic"],"sola_nl_campaign_subscribers":["sola-newsletters"],"post_widget_layouts":["wp-posts-master"],"supsystic_membership_images":["membership-by-supsystic"],"post_widget_rules":["wp-posts-master"],"supsystic_membership_messages":["membership-by-supsystic"],"supsystic_membership_links":["membership-by-supsystic"],"supsystic_membership_images_thumbnails":["membership-by-supsystic"],"delipress_subscriber_meta":["delipress"],"delipress_subscriber":["delipress"],"delipress_optin_stats":["delipress"],"delipress_meta":["delipress"],"delipress_list_subscriber":["delipress"],"supsystic_membership_google_maps_easy":["membership-by-supsystic"],"supsystic_membership_friends":["membership-by-supsystic"],"supsystic_membership_photo_gallery_images":["membership-by-supsystic"],"prflxtrflds_field_values":["profile-extra-fields"],"cwp_poll_logs":["cardoza-wordpress-poll"],"cwp_poll_answers":["cardoza-wordpress-poll"],"cwp_poll":["cardoza-wordpress-poll"],"premmerce_bundles":["premmerce-woocommerce-product-bundles"],"premmerce_bundles_products":["premmerce-woocommerce-product-bundles"],"premmerce_price_types":["premmerce-woocommerce-wholesale-pricing"],"premmerce_price_types_roles":["premmerce-woocommerce-wholesale-pricing"],"premmerce_redirects":["premmerce-redirect-manager"],"premmerce_wishlist":["premmerce-woocommerce-wishlist"],"prflxtrflds_fields_id":["profile-extra-fields"],"supsystic_membership_activity_attachments":["membership-by-supsystic"],"prflxtrflds_fields_meta":["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"],"stock_widgets":["custom-stock-widget"],"stock_tickers":["custom-stock-ticker"],"rps_marks":["easy-student-results"],"rps_grade":["easy-student-results"],"supsystic_membership_activity":["membership-by-supsystic"],"supsystic_membership_activity_images":["membership-by-supsystic"],"wpfd_statistics":["wp-smart-editor"],"supsystic_membership_attachments_all":["membership-by-supsystic"],"supsystic_membership_followers":["membership-by-supsystic"],"supsystic_membership_fields_data":["membership-by-supsystic"],"supsystic_membership_fields":["membership-by-supsystic"],"supsystic_membership_conversations_users_blocks":["membership-by-supsystic"],"supsystic_membership_conversations_users":["membership-by-supsystic"],"sola_nl_themes":["sola-newsletters"],"rsvpmaker_event":["rsvpmaker"],"supsystic_membership_conversations":["membership-by-supsystic"],"supsystic_membership_badge":["membership-by-supsystic"],"supsystic_membership_attachments":["membership-by-supsystic"],"supsystic_membership_activity_links":["membership-by-supsystic"],"supsystic_membership_attachment_type":["membership-by-supsystic"],"rsvpmaker":["rsvpmaker"],"bw_pricing_items":["boxtal-connect"],"supsystic_membership_albums_images":["membership-by-supsystic"],"rsvp_volunteer_time":["rsvpmaker"],"pprh_table":["pre-party-browser-hints"],"eneric_phmm_comments":["photography-management"],"rs_slider":["m-vslider"],"supsystic_membership_albums":["membership-by-supsystic"],"supsystic_membership_activity_tags":["membership-by-supsystic"],"wpf_modules":["woo-product-filter"],"wpf_filters":["woo-product-filter"],"rps_exam_records":["easy-student-results"],"bp_messages_messages":["bp-better-messages"],"ap_sessions":["blue-captcha"],"botnetblocker":["botnet-attack-blocker"],"scormcloudinvitations":["scormcloud"],"scormcloudinvitationregs":["scormcloud"],"schreikasten_blacklist":["schreikasten"],"wpshop__attribute_set":["wpshop"],"schreikasten":["schreikasten"],"wpshop__attribute":["wpshop"],"sc_log":["google-translate-widget","link-to-us","share-buttons-widget","simple-google-translate-widget"],"bp_messages_meta":["bp-better-messages"],"ap_ips":["blue-captcha"],"wpda_logging":["wp-data-access"],"wpda_media":["wp-data-access"],"wpda_menu_items":["wp-data-access"],"wpda_menus":["wp-data-access"],"wpda_publisher":["wp-data-access"],"wpda_table_design":["wp-data-access"],"bp_messages_notices":["bp-better-messages"],"bp_messages_recipients":["bp-better-messages"],"wpyelp_post_templates":["wp-yelp-review-slider"],"ap_log":["blue-captcha"],"donations":["donate-plus","donate-extra"],"documentor_feedback":["documentor-lite"],"wpshop__attribute_set_section_details":["wpshop"],"pmlc_links":["wp-dynamic-links","wp-wizard-cloak"],"pmlc_rules":["wp-dynamic-links","wp-wizard-cloak"],"wpshop__attribute_value_integer":["wpshop"],"pmlc_stats":["wp-dynamic-links","wp-wizard-cloak"],"wpshop__attribute_value_decimal":["wpshop"],"wpshop__attribute_value_datetime":["wpshop"],"wpshop__attribute_value__histo":["wpshop"],"wpwox_responsive_css":["responsive-css-editor"],"wpshop__attribute_set_section":["wpshop"],"avartan_slides":["avartan-slider-lite"],"avartan_sliders":["avartan-slider-lite"],"dpc_statistics":["delucks-seo"],"dpc_404_redirects":["delucks-seo"],"avartan_preset":["avartan-slider-lite"],"availability":["availability"],"autosuggest":["wp-advanced-search","fancy-search"],"wpwox_custom_css":["responsive-css-editor"],"documentor_sections":["documentor-lite"],"documentor":["documentor-lite"],"post_styling_library":["wp-post-styling"],"wpdp_project":["wp-data-access"],"supsystic_membership_tags":["membership-by-supsystic"],"wpdp_page":["wp-data-access"],"sampro_zones_rules":["sam-pro-free"],"supsystic_membership_slider_images":["membership-by-supsystic"],"supsystic_membership_slider":["membership-by-supsystic"],"supsystic_membership_settings":["membership-by-supsystic"],"sampro_zones":["sam-pro-free"],"sampro_stats":["sam-pro-free"],"sampro_places_ads":["sam-pro-free"],"wpdp_table":["wp-data-access"],"supsystic_membership_users_badges_points":["membership-by-supsystic"],"sampro_places":["sam-pro-free"],"sampro_errors":["sam-pro-free"],"sampro_blocks":["sam-pro-free"],"sampro_ads":["sam-pro-free"],"supsystic_membership_roles":["membership-by-supsystic"],"wpex_stats":["wp-experiments-free"],"wpex_titles":["wp-experiments-free"],"supsystic_membership_reports":["membership-by-supsystic"],"post_sorting":["wp-post-sorting"],"supsystic_membership_users_albums":["membership-by-supsystic"],"supsystic_membership_users_images":["membership-by-supsystic"],"wpda_table_settings":["wp-data-access"],"wpdevart_gallery_popup_theme":["gallery-album"],"realbig_plugin_settings":["realbig-media"],"dmm_menu":["different-menu-in-different-pages"],"wpyelp_reviews":["wp-yelp-review-slider"],"dls_sus_tasks":["sign-up-sheets"],"dls_sus_signups":["sign-up-sheets"],"dls_sus_sheets":["sign-up-sheets"],"bpm_categories":["portfolio-manager-powered-by-behance"],"wpdevart_gallery":["gallery-album"],"bpm_projects":["portfolio-manager-powered-by-behance"],"wpdevart_gallery_theme":["gallery-album"],"wpdoctor_configuration":["wp-doctor"],"wpdevart_images":["gallery-album"],"dk_speakup_signatures":["speakup-email-petitions"],"dk_speakup_petitions":["speakup-email-petitions"],"disclosure_userlabels":["wp-access-areas"],"supsystic_membership_users_statuses":["membership-by-supsystic"],"popup4phone_leads":["popup4phone"],"popup_manager":["popup-manager"],"popup_manager_templates":["popup-manager"],"supsystic_membership_users_roles":["membership-by-supsystic"],"rps_exams":["easy-student-results"],"rps_exam_record_meta":["easy-student-results"],"pmlc_geoipcountry":["wp-wizard-cloak","wp-dynamic-links","prosociate-amazon"],"arete_buddypress_smileys_manage":["activity-reactions-for-buddypress"],"_object_properties":["dms"],"_object_properties_sb":["dms"],"contact_form_7":["contact-form-8"],"_object_version_comments":["dms"],"_object_versions":["dms"],"_objects":["dms"],"arete_buddypress_smiley_settings":["activity-reactions-for-buddypress"],"arete_buddypress_smileys":["activity-reactions-for-buddypress"],"ql":["quick-localization"],"_object_misc":["dms"],"_routing_data":["dms"],"_subscriptions":["dms"],"_user_doc_history":["dms"],"_user_prefs":["dms"],"query_override_terms":["query-wrangler"],"query_wrangler":["query-wrangler"],"cf_access":["cfiltering"],"cf_number":["cfiltering"],"_object_perms":["dms"],"arplite_arprice_analytics":["arprice-responsive-pricing-table"],"contest_gal1ery_create_user_form":["contest-gallery"],"contest_gal1ery_options":["contest-gallery"],"contest_gal1ery_mails_collected":["contest-gallery"],"contest_gal1ery_mail_confirmation":["contest-gallery"],"contest_gal1ery_mail_admin":["contest-gallery"],"contest_gal1ery_mail":["contest-gallery"],"contest_gal1ery_ip":["contest-gallery"],"contest_gal1ery_f_output":["contest-gallery"],"contest_gal1ery_f_input":["contest-gallery"],"contest_gal1ery_entries":["contest-gallery"],"contest_gal1ery_create_user_entries":["contest-gallery"],"_notify":["dms"],"contest_gal1ery_comments":["contest-gallery"],"contest_gal1ery_categories":["contest-gallery"],"contest_gal1ery":["contest-gallery"],"contentreports":["report-content"],"_help_system":["dms"],"_lifecycle_stages":["dms"],"_lifecycles":["dms"],"ccf_value":["categorycustomfields"],"ccpo_post_order_rel":["custom-post-order-category"],"arplite_arprice_options":["arprice-responsive-pricing-table"],"arplite_arprice":["arprice-responsive-pricing-table"],"contest_gal1ery_options_visual":["contest-gallery"],"spr_rating":["simple-rating"],"cis_sliders":["creative-image-slider"],"spidercatalog_product_votes":["catalog"],"spidercatalog_products":["catalog"],"spiderfc_calendar":["flash-calendar"],"spiderfc_events":["flash-calendar"],"randomize":["randomize"],"spiderfc_theme":["flash-calendar"],"codeneric_uam_events":["ultimate-ads-manager"],"responsive_video_gallery_plus_responsive_lightbox":["wp-responsive-video-gallery-with-lightbox"],"reportedlinks":["report-broken-links"],"cis_categories":["creative-image-slider"],"spr_votes":["simple-rating"],"eg_galleries":["everest-gallery-lite"],"rednao_wc_invoices_custom_field":["woo-pdf-invoice-builder"],"rednao_wc_invoices_created":["woo-pdf-invoice-builder"],"rednao_wc_invoice":["woo-pdf-invoice-builder"],"cloaker_clicks":["wp-cloaker"],"raysgrid_setting":["rays-grid"],"cloudwok":["cloudwok-file-upload"],"cms2cms_connector_options":["cms2cms-connector"],"cis_images":["creative-image-slider"],"circle_image_carousel":["circle-image-slider-with-lightbox"],"wppen_subscribers":["wp-post-email-notification"],"coming_soon_booster_meta":["wp-coming-soon-booster"],"commentmeta_geo":["wp-mapbox-gl-js","wp-geometa"],"wppen_jobs":["wp-post-email-notification"],"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"],"coming_soon_booster_ip_locations":["wp-coming-soon-booster"],"cip_rules":["country-ip-specific-redirections"],"coming_soon_booster":["wp-coming-soon-booster"],"spidercatalog_id":["catalog"],"spidercatalog_params":["catalog"],"spidercatalog_product_categories":["catalog"],"spidercatalog_product_reviews":["catalog"],"wpms":["shortcode-gallery-for-matterport-showcase"],"cip_logs":["country-ip-specific-redirections"],"contest_gal1ery_options_input":["contest-gallery"],"contest_gal1ery_pro_options":["contest-gallery"],"rps_departments":["easy-student-results"],"rp_event_cite":["rootspersona"],"rp_header":["rootspersona"],"rp_fam_seq":["rootspersona"],"rp_fam_note":["rootspersona"],"rp_fam_event":["rootspersona"],"rp_fam_cite":["rootspersona"],"rp_fam_child":["rootspersona"],"rp_fam":["rootspersona"],"rp_event_note":["rootspersona"],"rp_event_detail":["rootspersona"],"rp_address":["rootspersona"],"rp_indi_cite":["rootspersona"],"wpinventory_category":["wp-inventory-manager"],"wpinventory_image":["wp-inventory-manager"],"wpinventory_item":["wp-inventory-manager"],"stax_zones":["stax"],"stax_templates":["stax"],"wsecure_params":["wsecure"],"canva_images":["canva"],"_active_folder":["dms"],"_audit_log":["dms"],"rp_indi":["rootspersona"],"rp_indi_event":["rootspersona"],"_config":["dms"],"rp_source":["rootspersona"],"rps_batches":["easy-student-results"],"ctsop_plugin":["content-text-slider-on-post"],"bwwc_btc_addresses":["bitcoin-payments-for-woocommerce"],"rp_submitter_note":["rootspersona"],"caa_profile_db":["custom-about-author"],"cackle_channel":["cackle"],"rp_submitter":["rootspersona"],"rp_source_note":["rootspersona"],"rp_source_cite":["rootspersona"],"rp_repo_note":["rootspersona"],"rp_indi_fam":["rootspersona"],"rp_repo":["rootspersona"],"rp_note":["rootspersona"],"rp_name_personal":["rootspersona"],"rp_name_note":["rootspersona"],"rp_name_name":["rootspersona"],"rp_name_cite":["rootspersona"],"rp_indi_seq":["rootspersona"],"rp_indi_option":["rootspersona"],"rp_indi_note":["rootspersona"],"rp_indi_name":["rootspersona"],"_auto_folder_creation":["dms"],"wpinventory_item_backup":["wp-inventory-manager"],"conwr_stats":["content-writer"],"rich_web_timeline_manager":["rich-event-timeline"],"wps_awesome_logos":["awesome-logos"],"rich_web_timeline_style_options_2":["rich-event-timeline"],"stax_container_viewport":["stax"],"stax_container_items":["stax"],"stax_components":["stax"],"rich_web_timeline_style_options":["rich-event-timeline"],"pv_am_activities":["plainview-activity-monitor"],"rich_web_timeline_short_options":["rich-event-timeline"],"rich_web_timeline_options":["rich-event-timeline"],"cp":["cubepoints"],"push_viewed":["push-notifications-for-wp"],"stax_columns":["stax"],"stax_active_headers":["stax"],"_groups_users_link":["dms"],"ccf_fields":["categorycustomfields"],"corner_ad_img":["corner-ad"],"corner_ad":["corner-ad"],"copyscape_tbl":["copyscape-premium"],"conwr_titles":["content-writer"],"wps_awesome_logos_meta":["awesome-logos"],"push_tokens":["push-notifications-for-wp"],"wpinventory_label":["wp-inventory-manager"],"push_encryption_keys":["push-notifications-for-wp"],"wpinventory_media":["wp-inventory-manager"],"wpinventory_status":["wp-inventory-manager"],"_exp_folders":["dms"],"cas_count":["peters-custom-anti-spam-image"],"wsecure_config":["wsecure"],"cas_image":["peters-custom-anti-spam-image"],"wpjoan":["joan"],"stax_headers":["stax"],"stax_grp_header_items":["stax"],"push_excluded_categories":["push-notifications-for-wp"],"push_sent":["push-notifications-for-wp"],"wsdesk_ticketsmeta":["wsdesk"],"wsdesk_tickets":["wsdesk"],"wsdesk_settingsmeta":["wsdesk"],"wsdesk_settings":["wsdesk"],"push_logs":["push-notifications-for-wp"],"_file_sys_counters":["dms"],"stax_grp_header":["stax"],"stax_elements":["stax"],"stax_containers":["stax"],"pmlc_keywords":["wp-wizard-cloak"],"smtpmail_data":["smtp-mail"],"bar_info":["banner-ads-rotator"],"task_breaker_tasks_user_assignment":["taskbreaker-project-management"],"smack_ecom_info":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"wptm_charttypes":["wp-smart-editor"],"wptm_charts":["wp-smart-editor"],"paypal_wp_button_manager_companies":["paypal-wp-button-manager"],"wptm_categories":["wp-smart-editor"],"wsko_cache":["wp-seo-keyword-optimizer"],"edge_suite_composition_definition":["edge-suite"],"simple_contact_messages":["simplecontact"],"simple_contact_subjects":["simplecontact"],"simple_events":["simple-events-calendar"],"termmeta_geo":["wp-mapbox-gl-js","wp-geometa"],"simple_locator_history":["simple-locator"],"task_breaker_tasks":["taskbreaker-project-management"],"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"],"simple_post_views_count__errors_log":["simple-post-views-count"],"awp_contact_form":["new-contact-form-widget"],"amoforms_amo_user":["amoforms"],"tc_shortcodes":["tiempocom"],"teachpress_user":["teachpress"],"teachpress_tags":["teachpress"],"wsko_cache_rows":["wp-seo-keyword-optimizer"],"bbp_messages_2p0":["bbp-messages"],"os_diagnosis_generator_detail_data":["os-diagnosis-generator"],"ecommercewd_orderproducts":["ecommerce-wd"],"shwcatalogs":["showcaster"],"ec_stars_votes":["ec-stars-rating"],"shwcategories":["showcaster"],"shwproductoptions":["showcaster"],"shwthemes":["showcaster"],"bccf_reservation_calendars_data":["booking-calendar-contact-form"],"bccf_reservation_calendars":["booking-calendar-contact-form"],"bccf_dex_season_prices":["booking-calendar-contact-form"],"bccf_dex_discount_codes":["booking-calendar-contact-form"],"ecommercewd_currencies":["ecommerce-wd"],"osefirewall_fwscannerv7config":["ose-firewall"],"wsko_options":["wp-seo-keyword-optimizer"],"teachpress_rel_pub_auth":["teachpress"],"ecommercewd_orders":["ecommerce-wd"],"task_breaker_task_meta":["taskbreaker-project-management"],"ecommercewd_orderstatuses":["ecommerce-wd"],"smackformrelation":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"ecommercewd_parametertypes":["ecommerce-wd"],"ecommercewd_payments":["ecommerce-wd"],"ecommercewd_ratings":["ecommerce-wd"],"ecommercewd_shippingclasses":["ecommerce-wd"],"bbp_messages_2p0_meta":["bbp-messages"],"ecommercewd_shippingzones":["ecommerce-wd"],"ecommercewd_tax_rates":["ecommerce-wd"],"ecommercewd_themes":["ecommerce-wd"],"ecommercewd_tools":["ecommerce-wd"],"task_breaker_comments":["taskbreaker-project-management"],"ecp_data":["easy-code-placement"],"ecp_options":["easy-code-placement"],"os_diagnosis_generator_data":["os-diagnosis-generator"],"os_diagnosis_generator_form_options":["os-diagnosis-generator"],"belegung_daten":["occupancyplan"],"wpanything_settings":["wp-anything-slider"],"osefirewall_scanhist":["ose-firewall"],"teachpress_assessments":["teachpress"],"wpbannerizeclicks":["wp-bannerize-pro"],"teachpress_authors":["teachpress"],"teachpress_course_capabilites":["teachpress"],"osefirewall_versioninfo":["ose-firewall"],"teachpress_course_documents":["teachpress"],"wpanything_content":["wp-anything-slider"],"wsko_cache_data_an":["wp-seo-keyword-optimizer"],"teachpress_course_meta":["teachpress"],"osefirewall_versions":["ose-firewall"],"teachpress_courses":["teachpress"],"teachpress_pub":["teachpress"],"osefirewall_vlscanner":["ose-firewall"],"backup_and_move":["backup-and-move"],"osefirewall_vshash":["ose-firewall"],"osefirewall_whitelistmgmt":["ose-firewall"],"teachpress_signup":["teachpress"],"teachpress_settings":["teachpress"],"teachpress_relation":["teachpress"],"wpuser_login_log":["wp-user"],"wpuser_loginattempts":["wp-user"],"wpuser_notification":["wp-user"],"wpuser_views":["wp-user"],"teachpress_pub_capabilites":["teachpress"],"teachpress_pub_documents":["teachpress"],"teachpress_pub_imports":["teachpress"],"teachpress_pub_meta":["teachpress"],"b_testimo_slide":["easy-testimonial-rotator"],"teachpress_artefacts":["teachpress"],"jsdelivr_cdn_files":["jsdelivr-wordpress-cdn-plugin"],"os_diagnosis_generator_question_data":["os-diagnosis-generator"],"wsko_cache_days":["wp-seo-keyword-optimizer"],"teachpress_stud_meta":["teachpress"],"amoforms_entries":["amoforms"],"amoforms_forms":["amoforms"],"backup_bank_restore":["wp-backup-bank"],"backup_bank_meta":["wp-backup-bank"],"teachpress_stud":["teachpress"],"osefirewall_adminemails":["ose-firewall"],"osefirewall_aiscan":["ose-firewall"],"osefirewall_cronsettings":["ose-firewall"],"wpuser_group_meta":["wp-user"],"wpuser_groups":["wp-user"],"osefirewall_dbconfiggit":["ose-firewall"],"osefirewall_domains":["ose-firewall"],"page_generator_keywords":["page-generator"],"wpbannerizeimpressions":["wp-bannerize-pro"],"wsko_cache_data_social":["wp-seo-keyword-optimizer"],"effecto":["instant-feedback"],"pafw_transaction":["pgall-for-woocommerce"],"wsko_cache_data_se_d":["wp-seo-keyword-optimizer"],"pafw_statistics":["pgall-for-woocommerce"],"osefirewall_emailnotificationmgmtv7":["ose-firewall"],"osefirewall_fileuploadext":["ose-firewall"],"wsko_cache_data_se":["wp-seo-keyword-optimizer"],"osefirewall_fileuploadlogv7":["ose-firewall"],"wsko_cache_data_onpage":["wp-seo-keyword-optimizer"],"osefirewall_gitlog":["ose-firewall"],"backup_bank":["wp-backup-bank"],"wpshop__attribute_value_options":["wpshop"],"osefirewall_ipmanagement":["ose-firewall"],"belegung_config":["occupancyplan"],"bccf_dex_bccf_submissions":["booking-calendar-contact-form"],"belegung_objekte":["occupancyplan"],"bodi0_bot_counter":["bodi0s-bots-visits-counter"],"opalestate_usersearch":["opal-estate"],"plgsggeo_stats":["wp-geo-website-protection"],"dwul_disable_user_email":["wp-users-disable"],"plgsggeo_ip":["wp-geo-website-protection"],"plgsggeo_config":["wp-geo-website-protection"],"bookacti_events":["booking-activities"],"bookacti_event_groups":["booking-activities"],"bookacti_bookings":["booking-activities"],"opalhotel_order_itemmeta":["opal-hotel-room-booking"],"bookacti_booking_groups":["booking-activities"],"wpbooklist_jre_users_table":["wpbooklist"],"bookacti_activities":["booking-activities"],"book_review_custom_links":["book-review"],"book_review_custom_link_urls":["book-review"],"sgpt_pricing_table":["pricing-table-builder"],"bookacti_exceptions":["booking-activities"],"sgpt_pt_feature":["pricing-table-builder"],"sgpt_pt_plan":["pricing-table-builder"],"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"],"wpbooklist_jre_user_options":["wpbooklist"],"wpbooklist_jre_storytime_stories_settings":["wpbooklist"],"shwcatalogproductthumbnails":["showcaster"],"wpbooklist_jre_storytime_stories":["wpbooklist"],"wpbooklist_jre_saved_page_post_log":["wpbooklist"],"wpbooklist_jre_saved_books_for_featured":["wpbooklist"],"es_advanced_form":["email-subscribers-advanced-form"],"aysquiz_questions":["quiz-maker"],"plgwap2_config":["wp-website-antivirus-protection"],"bookacti_form_fields":["booking-activities"],"pl_logins":["wp-persistent-login"],"seo_hostindex":["seo-consultant"],"wpshop__attribute_value_text":["wpshop"],"pmlc_destinations":["wp-wizard-cloak","wp-dynamic-links"],"wpcp_logs":["wp-content-pilot"],"wpcp_links":["wp-content-pilot"],"pmlc_automatches":["wp-wizard-cloak","wp-dynamic-links"],"pm":["private-messages-for-wordpress","cryptopoints-manager"],"wpshop__attribute_value_varchar":["wpshop"],"wpshop__attributes_unit":["wpshop"],"dsfaq_name":["wp-ds-faq","wp-ds-faq-plus"],"wpshop__attributes_unit_groups":["wpshop"],"seo_automated_link_building":["seo-automated-link-building"],"seo_automated_link_building_statistic":["seo-automated-link-building"],"seo_hostlog":["seo-consultant"],"plgwpgcp_config":["wp-graphic-captcha-protection"],"dsfaq_quest":["wp-ds-faq","wp-ds-faq-plus"],"bookacti_templates_activities":["booking-activities"],"pluginsl_spam_captcha":["spam-captcha"],"bookacti_templates":["booking-activities"],"bookacti_permissions":["booking-activities"],"skrill_transaction_log":["official-skrill-woocommerce"],"plugin_papercite_url":["papercite"],"plugin_papercite":["papercite"],"plugin_notes_plus":["plugin-notes-plus"],"bookacti_meta":["booking-activities"],"bookacti_groups_events":["booking-activities"],"aysquiz_answers":["quiz-maker"],"bookacti_group_categories":["booking-activities"],"bookacti_forms":["booking-activities"],"wpbooklist_jre_saved_book_log":["wpbooklist"],"aysquiz_categories":["quiz-maker"],"shop_ct_cart":["shopconstruct"],"aysquiz_reports":["quiz-maker"],"shop_ct_shipping_zone_countries":["shopconstruct"],"optionspage_fields":["custom-settings"],"optinrev":["optin-revolution"],"shop_ct_sessions":["shopconstruct"],"shareasale_wc_tracker_datafeeds":["shareasale-wc-tracker"],"shop_ct_product_meta":["shopconstruct"],"bingmappro_map_pins":["api-bing-map-2018"],"bingmappro_maps":["api-bing-map-2018"],"shareasale_wc_tracker_logs":["shareasale-wc-tracker"],"smackleadbulider_shortcode_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"],"shop_ct_attributes":["shopconstruct"],"birthdays":["birthdays-widget"],"bingmappro_pins":["api-bing-map-2018"],"shop_ct_download_permissions":["shopconstruct"],"wptm_styles":["wp-smart-editor"],"shop_ct_order_meta":["shopconstruct"],"ph_email_log":["propertyhive"],"aysquiz_themes":["quiz-maker"],"sirv_shortcodes":["sirv"],"sirv_images":["sirv"],"easytimetable_planning":["easytimetable-responsive-schedule-management-system"],"siq_sync":["searchiq"],"wptm_tables":["wp-smart-editor"],"shop_ct_order_products":["shopconstruct"],"wpbooklist_jre_active_extensions":["wpbooklist"],"aysquiz_rates":["quiz-maker"],"shop_ct_shipping_zones":["shopconstruct"],"shwattributes":["showcaster"],"shwcatalogproducts":["showcaster"],"shwcatalogproductoptions":["showcaster"],"shwcatalogproductcategories":["showcaster"],"wpspro_log":["wp-smart-security"],"wpbooklist_jre_post_options":["wpbooklist"],"wpbooklist_jre_page_options":["wpbooklist"],"easy_amazon_product_information_data":["easy-amazon-product-information"],"wpspro_lockouts":["wp-smart-security"],"aysquiz_quizcategories":["quiz-maker"],"aysquiz_quizes":["quiz-maker"],"smackthirdpartyformfieldrelation":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"shwcatalogproductattributes":["showcaster"],"amd_yrecipe_recipes":["yummly-rich-recipes"],"wpbooklist_jre_list_dynamic_db_names":["wpbooklist"],"smackleadbulider_field_manager":["wp-leads-builder-any-crm","wp-zoho-crm","wp-tiger","wp-sugar-free"],"wpbooklist_jre_book_quotes":["wpbooklist"],"persistent_logins":["wp-persistent-login"],"shopmagic_log_data":["shopmagic-for-woocommerce"],"wpbooklist_jre_color_options":["wpbooklist"],"shortcodes":["shortbus","shortcode-generator","scode-by-mojwp"],"optionspage_section":["custom-settings"],"rj_quickcharts":["rj-quickcharts"],"mcgfuidgen_data":["gf-mc-unique-id-generator-field"],"rmmuc_subscribers":["maintenance-mode-and-under-construction-page"],"slider":["wp-slider"],"simpleecommcart_shipping_weight_rate":["simple-e-commerce-shopping-cart"],"cart_meta":["wp-olivecart"],"slider_element":["wp-slider"],"olb_timetable":["online-lesson-booking-system"],"emailbroadcasting":["e-mail-broadcasting"],"ewd_uasp_exceptions":["ultimate-appointment-scheduling"],"olb_logs":["online-lesson-booking-system"],"simpleecommcart_tax_rates":["simple-e-commerce-shopping-cart"],"wsdays":["weekly-schedule"],"aeidn_blacklist":["affiliateimporteral"],"meow2_log":["apocalypse-meow"],"urpro":["uptime-robot-monitor"],"ura_fields":["user-registration-aide"],"aeidn_account":["affiliateimporteral"],"wscategories":["weekly-schedule"],"ewd_uasp_appointments":["ultimate-appointment-scheduling"],"ewd_uasp_custom_fields":["ultimate-appointment-scheduling"],"ewd_uasp_custom_fields_meta":["ultimate-appointment-scheduling"],"aeidn_goods":["affiliateimporteral"],"olb_history":["online-lesson-booking-system"],"wp_qiniu_files":["wp-qiniu"],"thequoterotator":["quote-rotator"],"mnm_spider_tracker_log":["spider-tracker"],"wpai_settings":["wp-advertize-it"],"aeidn_goods_archive":["affiliateimporteral"],"aeidn_log":["affiliateimporteral"],"aeidn_price_formula":["affiliateimporteral"],"aeidn_stats":["affiliateimporteral"],"wpai_placements":["wp-advertize-it"],"wpai_blocks":["wp-advertize-it"],"rfr2b_target":["readers-from-rss-2-blog"],"rfr2b_options":["readers-from-rss-2-blog"],"star_testimonial_settings":["stars-testimonials-with-slider-and-masonry-grid"],"mnm_spider_tracker":["spider-tracker"],"erima_donate":["erima-zarinpal-donate"],"ycf_fields":["contact-form-master"],"simpleecommcart_shipping_variation":["simple-e-commerce-shopping-cart"],"simpleecommcart_cart_settings":["simple-e-commerce-shopping-cart"],"ketchup_rr_bookings":["ketchup-restaurant-reservations"],"daisycon_tools":["daisycon"],"simmer_recipe_itemmeta":["simmer"],"simmer_recipe_items":["simmer"],"prayer_comment":["wp-prayer"],"prayer_engine":["wp-prayer"],"prayer_users":["wp-prayer"],"simple_subscription_popup":["simple-signup-form"],"tcp_addresses":["thecartpress"],"tcp_countries":["thecartpress"],"ya_turbo_adnetwork":["ya-turbo"],"prevent_direct_access":["prevent-direct-access"],"image_refresh":["wp-image-refresh"],"a3_rslider_images":["a3-responsive-slider"],"ycf_form":["contact-form-master"],"prevent_direct_access_free":["prevent-direct-access"],"tcp_orders":["thecartpress"],"ftcalendar_events":["ft-calendar"],"tcp_orders_costs":["thecartpress"],"simpleecommcart_downloads":["simple-e-commerce-shopping-cart"],"tcp_orders_costsmeta":["thecartpress"],"tcp_orders_details":["thecartpress"],"tcp_orders_detailsmeta":["thecartpress"],"tcp_ordersmeta":["thecartpress"],"tcp_rel_entities":["thecartpress"],"tcp_tax_rates":["thecartpress"],"wsitems":["weekly-schedule"],"paytm_donation":["paytm-donation","wp-paytm-pay"],"atkp_additionaloffers":["affiliate-toolkit-starter"],"sgrb_template":["review-builder"],"ip_based_login":["ip-based-login"],"select_post":["button-maker"],"wooexim_export_archive":["wooexim"],"e_fw_slider":["full-width-responsive-slider-wp"],"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"],"t_cartedit":["wp-olivecart"],"t_commission":["wp-olivecart"],"sgrb_template_design":["review-builder"],"ketchup_rr_tables":["ketchup-restaurant-reservations"],"t_postage":["wp-olivecart"],"wcu_modules":["woo-currency"],"easy_query":["easy-query"],"phone_orders_log":["phone-orders-for-woocommerce"],"wcu_modules_type":["woo-currency"],"wcu_usage_stat":["woo-currency"],"wow_hep":["mwp-herd-effect"],"dfrcs_compsets":["datafeedr-comparison-sets"],"vrcalandar_bookings":["vr-calendar-sync"],"vrcalandar":["vr-calendar-sync"],"pf_relationships":["pressforward"],"mwp_herd_free":["mwp-herd-effect"],"posts_relations":["relation-post-types"],"tcp_taxes":["thecartpress"],"tcp_currencies":["thecartpress"],"simpleecommcart_product_categories":["simple-e-commerce-shopping-cart"],"simpleecommcart_inventory":["simple-e-commerce-shopping-cart"],"simpleecommcart_shipping_table_rate":["simple-e-commerce-shopping-cart"],"simpleecommcart_order_items":["simple-e-commerce-shopping-cart"],"simpleecommcart_shipping_rules":["simple-e-commerce-shopping-cart"],"simpleecommcart_shipping_rates":["simple-e-commerce-shopping-cart"],"looksee3_scan_files":["look-see-security-scanner"],"looksee3_core":["look-see-security-scanner"],"login_access":["login-security"],"looksee2_files":["look-see-security-scanner"],"login_access_blacklist":["login-security"],"ya_turbo_feed":["ya-turbo"],"looksee2_core":["look-see-security-scanner"],"simpleecommcart_shipping_methods":["simple-e-commerce-shopping-cart"],"simpleecommcart_sessions":["simple-e-commerce-shopping-cart"],"simpleecommcart_promotions":["simple-e-commerce-shopping-cart"],"simpleecommcart_products":["simple-e-commerce-shopping-cart"],"looksee3_scans":["look-see-security-scanner"],"looksee3_scan_warnings":["look-see-security-scanner"],"custom_btns":["button-maker"],"spidercontacts_messages":["spider-contacts"],"js_job_ages":["js-jobs"],"sph_counter":["wordpress-sphinx-plugin"],"user_profile_follow":["user-profile"],"jtl_connector_product_checksum":["woo-jtl-connector"],"ws_ls_data_targets":["weight-loss-tracker"],"user_profile_reactions":["user-profile"],"social_links":["social-links","about-me"],"ws_ls_data_user_preferences":["weight-loss-tracker"],"meetup_groups":["wp-meetup"],"meetup_events":["wp-meetup"],"js_job_activitylog":["js-jobs"],"jtl_connector_link_category_level":["woo-jtl-connector"],"sph_stats":["wordpress-sphinx-plugin"],"jtl_connector_link_category":["woo-jtl-connector"],"jtl_connector_category_level":["woo-jtl-connector"],"vxcf_sales":["cf7-salesforce"],"vxcf_sales_accounts":["cf7-salesforce"],"js_job_careerlevels":["js-jobs"],"vxcf_sales_log":["cf7-salesforce"],"slider_pro_layers":["slider-pro-lite"],"slider_pro_sliders":["slider-pro-lite"],"slider_pro_slides":["slider-pro-lite"],"clsfy_uploads":["closify-maestro-image-uploader-gallery-builder"],"jtl_connector_link_crossselling":["woo-jtl-connector"],"wpoi_users":["wp-opt-in"],"spidercontacts_contacts_categories":["spider-contacts"],"jtl_connector_link_product":["woo-jtl-connector"],"jtl_connector_link_shipping_class":["woo-jtl-connector"],"jtl_connector_link_shipping_method":["woo-jtl-connector"],"jtl_connector_link_specific":["woo-jtl-connector"],"avatar_privacy":["avatar-privacy"],"spidercontacts_params":["spider-contacts"],"ws_ls_awards":["weight-loss-tracker"],"script_optimizer":["wp-script-optimizer"],"ws_ls_awards_given":["weight-loss-tracker"],"zara4_file_compression_metadata_r1":["zara-4"],"zara4_exclude_from_bulk_compression_r1":["zara-4"],"ws_ls_data":["weight-loss-tracker"],"spatialmatch_maps":["spatialmatch-free-lifestyle-search"],"jtl_connector_link_specific_value":["woo-jtl-connector"],"jtl_connector_link_payment":["woo-jtl-connector"],"jtl_connector_link_order":["woo-jtl-connector"],"jtl_connector_link_measurement_unit":["woo-jtl-connector"],"jtl_connector_link_manufacturer":["woo-jtl-connector"],"jtl_connector_link_language":["woo-jtl-connector"],"jtl_connector_link_image":["woo-jtl-connector"],"jtl_connector_link_customer_group":["woo-jtl-connector"],"chronoengine_extensions":["chronoforms"],"chronoengine_chronoforms":["chronoforms"],"jtl_connector_link_customer":["woo-jtl-connector"],"jtl_connector_link_currency":["woo-jtl-connector"],"js_job_resume":["js-jobs"],"ws_ls_meta_fields":["weight-loss-tracker"],"js_job_categories":["js-jobs"],"iconpresslite_icons":["iconpress-lite"],"js_job_jobapply":["js-jobs"],"hook_list":["debug-objects"],"ibeducator_members":["ibeducator"],"js_job_jobcities":["js-jobs"],"js_job_jobs":["js-jobs"],"ibeducator_payment_lines":["ibeducator"],"votes_post_entry_contestant":["wp-voting-contest"],"votes_post_contestant_track":["wp-voting-contest"],"votes_custom_registeration_contestant":["wp-voting-contest"],"votes_custom_field_contestant":["wp-voting-contest"],"ibeducator_payments":["ibeducator"],"js_job_users":["js-jobs"],"js_job_system_errors":["js-jobs"],"js_job_jobstatus":["js-jobs"],"iconpresslite_collections":["iconpress-lite"],"ws_ls_data_user_stats":["weight-loss-tracker"],"ibeducator_questions":["ibeducator"],"js_job_jobtypes":["js-jobs"],"js_job_states":["js-jobs"],"js_job_slug":["js-jobs"],"js_job_shifts":["js-jobs"],"js_job_salaryrangetypes":["js-jobs"],"js_job_salaryrange":["js-jobs"],"js_job_resumereferences":["js-jobs"],"js_job_resumelanguages":["js-jobs"],"js_job_resumeinstitutes":["js-jobs"],"ibeducator_tax_rates":["ibeducator"],"js_job_resumefiles":["js-jobs"],"ccf":["woo-custom-checkout-field"],"js_job_resumeemployers":["js-jobs"],"votes_tbl":["wp-voting-contest"],"js_job_heighesteducation":["js-jobs"],"js_job_cities":["js-jobs"],"wblib_keystore":["weeblramp"],"js_job_resumeaddresses":["js-jobs"],"ws_ls_meta_entry":["weight-loss-tracker"],"js_job_companies":["js-jobs"],"ws_ls_groups_user":["weight-loss-tracker"],"ws_ls_groups":["weight-loss-tracker"],"ws_ls_error_log":["weight-loss-tracker"],"ws_ls_email_templates":["weight-loss-tracker"],"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"],"liveoptim_balise_ignore":["liveoptim"],"liveoptim_capping":["liveoptim"],"simplehitcounter_hits":["simplehitcounter","visit-counter"],"js_job_fieldsordering":["js-jobs"],"liveoptim_pattern":["liveoptim"],"ibeducator_grades":["ibeducator"],"votes_user_entry_contestant":["wp-voting-contest"],"ibeducator_entries":["ibeducator"],"liveoptim_pattern_cible":["liveoptim"],"ibeducator_answers":["ibeducator"],"js_job_experiences":["js-jobs"],"simpledocumentation":["client-documentation"],"liveoptim_mot_cle":["liveoptim"],"attmgr_schedule":["attendance-manager"],"liveoptim_parametres":["liveoptim"],"js_job_emailtemplates_config":["js-jobs"],"js_job_emailtemplates":["js-jobs"],"js_job_departments":["js-jobs"],"liveoptim_page_restriction":["liveoptim"],"ibeducator_choices":["ibeducator"],"mwp_skype_free":["mwp-skype"],"timetable":["daily-prayer-time-for-mosques"],"tnt_videos_type":["video-list-manager"],"plugmatter_ab_stats":["plugmatter-optin-feature-box-lite"],"plugin_bota":["seo-crawlytics"],"elementor_splittest":["split-test-for-elementor"],"fadeintext_plugin":["wp-fade-in-text-news"],"swc_crawler_type":["stop-web-crawlers"],"quiz_quiz":["quizzin","jibu-pro"],"wow_fp":["wpcalc"],"swc_crawlers":["stop-web-crawlers"],"elementor_splittest_interactions":["split-test-for-elementor"],"swc_crawlers_log":["stop-web-crawlers"],"elementor_splittest_post":["split-test-for-elementor"],"nl_email":["sendit"],"elementor_splittest_variations":["split-test-for-elementor"],"dbox_slider_postmeta":["dbox-slider-lite"],"dbox_slider_meta":["dbox-slider-lite"],"amazonfeed_cache":["amazonfeed"],"dbox_slider":["dbox-slider-lite"],"amazonfeed_log":["amazonfeed"],"cunjoshare":["share-social"],"fv_enteries":["form-vibes"],"amazonfeed_products":["amazonfeed"],"currencyr":["currencyr"],"fv_entry_meta":["form-vibes"],"nl_liste":["sendit"],"_connector_link_customer":["woo-jtl-connector"],"ssr_studentinfo":["simple-student-result"],"comments_antispam_log":["antispam"],"plugmatter_templates":["plugmatter-optin-feature-box-lite"],"plugmatter_ab_test":["plugmatter-optin-feature-box-lite"],"spidercontacts_contacts":["spider-contacts"],"_connector_link_image":["woo-jtl-connector"],"ssg_superb_gallery":["superb-slideshow-gallery"],"quiz_question":["quizzin","jibu-pro"],"nh_locations":["yournewsapp"],"cstmdmnpg_pages":["custom-admin-page"],"galleryvotes":["gallery-voting","voting-for-a-photo"],"wow_skype_free":["mwp-skype"],"zmseo_support":["zmseo"],"tmve_allowed_elements":["tinymce-valid-elements"],"tnt_videos":["video-list-manager"],"quiz_answer":["quizzin","jibu-pro"],"tnt_videos_cat":["video-list-manager"],"dmec":["dm-confirm-email"],"livelychatsupport_triggers":["lively-chat-support"],"_bookings":["row-seats"],"_booking_seats_relation":["row-seats"],"_shows":["row-seats"],"_seats":["row-seats"],"wp_linkbuilder_backlink":["wp-linkbuilder"],"cest_uiform_visitor":["zigaform-calculator-cost-estimation-form-builder-lite"],"rich_web_forms_mails":["form-forms"],"rich_web_forms_themes1":["form-forms"],"rich_web_forms_manager":["form-forms"],"rich_web_forms_options":["form-forms"],"harrys_gravatar_cache":["harrys-gravatar-cache"],"rich_web_forms_saved":["form-forms"],"_seat_colors":["row-seats"],"_payment_transactions":["row-seats"],"haw_mautic_form_fields":["wp-mautic-form-integrator"],"_customer_session":["row-seats"],"haw_mautic_forms":["wp-mautic-form-integrator"],"haw_mautic_integration_form":["wp-mautic-form-integrator"],"livelychatsupport_messages":["lively-chat-support"],"rich_web_forms_themes2":["form-forms"],"rich_web_forms_themes3":["form-forms"],"cest_uiform_visitor_error":["zigaform-calculator-cost-estimation-form-builder-lite"],"livelychatsupport_surveys":["lively-chat-support"],"rtcl_sessions":["classified-listing"],"rich_web_forms_info":["form-forms"],"btev_events":["bluetrait-event-viewer"],"skystats_cache":["skystats"],"salon_photo":["salon-booking"],"spbcta":["coupon-reveal-button"],"salon_position":["salon-booking"],"salon_promotion":["salon-booking"],"salon_reservation":["salon-booking"],"salon_sales":["salon-booking"],"wrc_caches":["wp-rest-cache"],"salon_item":["salon-booking"],"salon_staff":["salon-booking"],"post_notif_subscriber_stage":["post-notif"],"salon_working":["salon-booking"],"post_notif_subscriber":["post-notif"],"post_notif_sub_cat_stage":["post-notif"],"post_notif_sub_cat":["post-notif"],"post_notif_post":["post-notif"],"salon_log":["salon-booking"],"salon_customer_record":["salon-booking"],"livelychatsupport_hours":["lively-chat-support"],"cest_uiform_pay_records":["zigaform-calculator-cost-estimation-form-builder-lite"],"livelychatsupport_convos":["lively-chat-support"],"rich_web_forms_id":["form-forms"],"daily_quotes":["cleverwise-daily-quotes"],"rich_web_forms_fields":["form-forms"],"rich_web_forms_cust_id":["form-forms"],"fotomoto_categorymeta":["fotomoto"],"wshop_email":["wechat-shop-download"],"ai_album":["ai-responsive-gallery-album"],"salon_customer":["salon-booking"],"ai_photos":["ai-responsive-gallery-album"],"wrc_relations":["wp-rest-cache"],"imgslider_plugin":["image-slider-with-description"],"salon_branch":["salon-booking"],"salon_category":["salon-booking"],"cest_uiform_settings":["zigaform-calculator-cost-estimation-form-builder-lite"],"bc_import_queue":["bigcommerce"],"audima_plugin_audio":["audima"],"wpreport_comments":["wp-reportpost"],"woo_compare_categories":["woocommerce-compare-products"],"woo_compare_fields":["woocommerce-compare-products"],"cpasettings":["cpaleadcom-wordpress-plugin"],"vikbooking_fests_dates":["vikbooking"],"vikbooking_einvoicing_data":["vikbooking"],"vikbooking_einvoicing_config":["vikbooking"],"vikbooking_dispcost":["vikbooking"],"wpairbnb_post_templates":["wp-airbnb-review-slider"],"vikbooking_gpayments":["vikbooking"],"wpairbnb_reviews":["wp-airbnb-review-slider"],"vikbooking_customers_orders":["vikbooking"],"vikbooking_customers":["vikbooking"],"vikbooking_custfields":["vikbooking"],"vikbooking_cronjobs":["vikbooking"],"vikbooking_coupons":["vikbooking"],"vikbooking_countries":["vikbooking"],"vikbooking_config":["vikbooking"],"woo_compare_cat_fields":["woocommerce-compare-products"],"vikbooking_invoices":["vikbooking"],"weblib_holditems":["weblibrarian"],"vikbooking_restrictions":["vikbooking"],"vikbooking_wpshortcodes":["vikbooking"],"vikbooking_translations":["vikbooking"],"vikbooking_trackings":["vikbooking"],"vikbooking_tracking_infos":["vikbooking"],"vikbooking_tmplock":["vikbooking"],"vikbooking_texts":["vikbooking"],"vikbooking_seasons":["vikbooking"],"vikbooking_rooms":["vikbooking"],"vikbooking_receipts":["vikbooking"],"vikbooking_iva":["vikbooking"],"vikbooking_prices":["vikbooking"],"vikbooking_packages_rooms":["vikbooking"],"vikbooking_packages":["vikbooking"],"vikbooking_ordersrooms":["vikbooking"],"vikbooking_ordersbusy":["vikbooking"],"vikbooking_orders":["vikbooking"],"vikbooking_orderhistory":["vikbooking"],"vikbooking_optionals":["vikbooking"],"vikbooking_operators":["vikbooking"],"weblib_collection":["weblibrarian"],"cpalead_gateways":["cpaleadcom-wordpress-plugin"],"amwscp_template_values":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"cw_css":["super-simple-custom-css"],"helpful_feedback":["helpful"],"helpful":["helpful"],"vagaro":["vagaro-booking-widget"],"aas_logged":["advanced-advertising-system"],"amwscp_orders":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"cest_addon":["zigaform-calculator-cost-estimation-form-builder-lite"],"amwscp_feeds":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"cest_addon_details":["zigaform-calculator-cost-estimation-form-builder-lite"],"wppano_hotspots":["wp-pano"],"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_log":["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"],"stock_quote_data":["stock-quote"],"terms_hit":["2d-tag-cloud-widget-by-sujin"],"weblib_keywords":["weblibrarian"],"vikbooking_characteristics":["vikbooking"],"weblib_outitems":["weblibrarian"],"weblib_patrons":["weblibrarian"],"weblib_statistics":["weblibrarian"],"wpreport_archive":["wp-reportpost"],"wpreport":["wp-reportpost"],"weblib_types":["weblibrarian"],"vikbooking_adultsdiff":["vikbooking"],"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_feed_product_record":["exportfeed-woocommerce-data-feed-for-amazon-marketplace"],"vikbooking_categories":["vikbooking"],"vikbooking_busy":["vikbooking"],"cest_addon_details_log":["zigaform-calculator-cost-estimation-form-builder-lite"],"cgss_insight":["complete-google-seo-scan"],"rencontre_prison":["rencontre"],"wp_criticalcss_template_log":["wp-criticalcss"],"wordpoints_hook_hits":["wordpoints"],"wordpoints_hook_periods":["wordpoints"],"ukuu_favorites":["ukuupeople-the-simple-crm"],"vxcf_zoho_log":["cf7-zoho"],"wordpoints_points_log_meta":["wordpoints"],"wordpoints_points_logs":["wordpoints"],"vxcf_zoho_accounts":["cf7-zoho"],"church_admin_smallgroup":["church-admin"],"wp_criticalcss_processed_items":["wp-criticalcss"],"wp_criticalcss_api_queue":["wp-criticalcss"],"onedrive_storage":["pwebonedrive"],"wp_criticalcss":["wp-criticalcss"],"onedrive_access":["pwebonedrive"],"plgwpap_config":["wp-admin-protection"],"church_admin_tickets":["church-admin"],"adamlabsgallery_navigation_skins":["photo-gallery-portfolio"],"sw_ips":["author-and-post-statistic-widgets"],"church_admin_services":["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"],"wordpoints_hook_hitmeta":["wordpoints"],"downloadstats":["wp-downloadcounter"],"downloadtracking":["wp-downloadcounter"],"church_admin_session_meta":["church-admin"],"church_admin_sites":["church-admin"],"adamlabsgallery_grids":["photo-gallery-portfolio"],"adamlabsgallery_item_elements":["photo-gallery-portfolio"],"adamlabsgallery_item_skins":["photo-gallery-portfolio"],"wshop_order_sn":["wechat-shop-download"],"sw_statistics":["author-and-post-statistic-widgets"],"church_admin_ministries":["church-admin"],"rencontre_dbip":["rencontre"],"onclick_popup_plugin":["onclick-popup"],"tabulate_changesets":["tabulate"],"wow_bmp":["bubble-menu"],"tabulate_changes":["tabulate"],"gml_locations":["google-map-locations"],"gml_settings":["google-map-locations"],"res_forms":["responder"],"wshop_shopping_cart":["wechat-shop-download"],"share_logins_log":["share-logins"],"rencontre_liste":["rencontre"],"rencontre_users_profil":["rencontre"],"rencontre_msg":["rencontre"],"rencontre_users":["rencontre"],"rencontre_profil":["rencontre"],"wshop_shopping_carts":["wechat-shop-download"],"e2pdf_templates":["e2pdf"],"giftvouchers_activity":["gift-voucher"],"ultimate_subscribe":["ultimate-subscribe"],"vxcf_zoho":["cf7-zoho"],"giftvouchers_list":["gift-voucher"],"wshop_product":["wechat-shop-download"],"e2pdf_datasets":["e2pdf"],"giftvouchers_setting":["gift-voucher"],"giftvouchers_template":["gift-voucher"],"quoterotator_plus":["flexible-quote-rotator-plus"],"e2pdf_revisions":["e2pdf"],"e2pdf_elements":["e2pdf"],"ultimate_subscribe_lists":["ultimate-subscribe"],"tabulate_reports":["tabulate"],"e2pdf_entries":["e2pdf"],"tabulate_report_sources":["tabulate"],"gmwfb_mapdetails":["google-map-with-fancybox-popup"],"e2pdf_pages":["e2pdf"],"church_admin_new_rota":["church-admin"],"church_admin_session":["church-admin"],"church_admin_member_types":["church-admin"],"church_admin_kidswork":["church-admin"],"est_cta_settings":["easy-side-tab-cta"],"nav2me_maps":["nav2me"],"wshop_order":["wechat-shop-download"],"church_admin_email_build":["church-admin"],"wshop_order_note":["wechat-shop-download"],"church_admin_email":["church-admin"],"church_admin_custom_fields":["church-admin"],"church_admin_comments":["church-admin"],"church_admin_classes":["church-admin"],"wshop_order_item":["wechat-shop-download"],"wct_list":["custom-tables"],"church_admin_cell_structure":["church-admin"],"cm_campaigns":["cm-ad-changer"],"bc_variants":["bigcommerce"],"mj_contact_fields":["mj-contact-us"],"church_admin_calendar_date":["church-admin"],"church_admin_calendar_category":["church-admin"],"wct_form":["custom-tables"],"wct_fields":["custom-tables"],"mj_contact_forms":["mj-contact-us"],"church_admin_brplan":["church-admin"],"wct_cron":["custom-tables"],"church_admin_bookings":["church-admin"],"est_settings":["easy-side-tab-cta"],"church_admin_bible_books":["church-admin"],"church_admin_attendance":["church-admin"],"church_admin_app_visits":["church-admin"],"mj_contact_saved_forms":["mj-contact-us"],"wct_relations":["custom-tables"],"church_admin_app":["church-admin"],"flipping_cards":["flipping-cards"],"church_admin_individual_attendance":["church-admin"],"church_admin_household":["church-admin"],"church_admin_hope_team":["church-admin"],"wshop_order_session":["wechat-shop-download"],"church_admin_funnels":["church-admin"],"ecs_subscribers":["everest-coming-soon-lite"],"church_admin_follow_up":["church-admin"],"church_admin_facilities":["church-admin"],"urlkeywordsmapping":["inlinks"],"bc_products":["bigcommerce"],"bc_reviews":["bigcommerce"],"church_admin_events":["church-admin"],"wp_criticalcss_web_check_queue":["wp-criticalcss"],"cm_campaign_images":["cm-ad-changer"],"flipping_cards_images":["flipping-cards"],"wct_setup":["custom-tables"],"booter_404s":["booter-bots-crawlers-manager"],"tweetshare_post_view_click":["tweetshare-click-to-tweet"],"srzmrt_instances":["reactive-mortgage-calculator"],"wpbegpay_orders":["bank-mellat"],"wct1":["custom-tables"],"emtr_track_email_link_master":["email-tracker"],"accordeonmenuck_styles":["accordeon-menu-ck"],"wphr_peoples":["wp-hr-manager"],"emtr_email":["email-tracker"],"list_item_instance":["pre-publish-post-checklist"],"emtr_track_email_open_log":["email-tracker"],"emtr_track_email_link_click_log":["email-tracker"],"wsi_logs":["wp-social-invitations"],"wpsc_haet_purchase_details":["wp-ecommerce-shop-styling"],"wphr_peoplemeta":["wp-hr-manager"],"wphr_hr_designations":["wp-hr-manager"],"wphr_people_type_relations":["wp-hr-manager"],"bepro_listings":["bepro-listings"],"bepro_listing_typesmeta":["bepro-listings"],"bepro_listing_orders":["bepro-listings"],"logincount":["user-login-count"],"wphr_hr_leaves":["wp-hr-manager"],"wallets_adds":["wallets"],"wphr_hr_leave_requests":["wp-hr-manager"],"wallets_txs":["wallets"],"wphr_hr_work_exp":["wp-hr-manager"],"list_item":["pre-publish-post-checklist"],"wsi_stats":["wp-social-invitations","wp-social-broadcast"],"wphr_hr_leave_policies":["wp-hr-manager"],"wphr_hr_education":["wp-hr-manager"],"wsi_queue":["wp-social-invitations","wp-social-broadcast"],"wphr_hr_leave_entitlements":["wp-hr-manager"],"lookbook_sliders_free":["altima-lookbook-free-for-woocommerce"],"wphr_hr_holiday":["wp-hr-manager"],"lookbook_slides_free":["altima-lookbook-free-for-woocommerce"],"wphr_people_types":["wp-hr-manager"],"wm_trees":["tree-website-map"],"woo_file_dropzone":["woo-file-dropzone"],"wphr_hr_employees":["wp-hr-manager"],"abd_adblocker_stats":["ad-blocking-detector"],"wphr_hr_employee_performance":["wp-hr-manager"],"wphr_hr_employee_notes":["wp-hr-manager"],"wphr_hr_employee_history":["wp-hr-manager"],"fma_currency":["fma-woo-multi-currency"],"vosl_tags_locations":["vo-locator-the-wp-store-locator"],"wphr_hr_depts":["wp-hr-manager"],"ezinearticles_diagnostic_log":["ezinearticles-plugin"],"rsfirewall_hashes":["rsfirewall"],"rsfirewall_ignored":["rsfirewall"],"rsfirewall_offenders":["rsfirewall"],"rsfirewall_signatures":["rsfirewall"],"dailytipdata":["st-daily-tip"],"multifeedreader_feedcollection":["multi-feed-reader"],"banner":["wp-banner","banner-slider","wpadcenter-lite"],"ezinearticles_posts_to_articles":["ezinearticles-plugin"],"invisible_optin_settings":["invisible-optin"],"sd_updates":["sarbacane-desktop","mailify"],"wcs_selection_data":["homepage-product-organizer-for-woocommerce"],"sd_subscribers":["sarbacane-desktop","mailify"],"defensio":["defensio-anti-spam"],"ezinearticles_post_settings":["ezinearticles-plugin"],"tsi_docs":["fulltext-search"],"lg_tools":["button-generation"],"numix_post_slider_lite":["numix-post-slider"],"inf_volunteer":["infunding"],"inf_orders":["infunding"],"inf_logs":["infunding"],"oder_paypal":["paypal-express-checkout"],"tsi_vectors":["fulltext-search"],"inf_donors":["infunding"],"wpda_contdown_extend_timer":["countdown-wpdevart-extended"],"tsi_index":["fulltext-search"],"wpda_contdown_extend_theme":["countdown-wpdevart-extended"],"impact_widgets":["impact-template-editor"],"impact_templates":["impact-template-editor"],"impact_hooks":["impact-template-editor"],"tsi_stops":["fulltext-search"],"multifeedreader_feed":["multi-feed-reader"],"a4barcode_custom_formats":["a4-barcode-generator"],"shipworks_bridge":["shipworks-e-commerce-bridge"],"wphr_audit_log":["wp-hr-manager"],"bap_schemes":["book-a-place"],"l_people":["vo-locator-the-wp-store-locator"],"vw_vcrooms":["videowhisper-video-conference-integration"],"vw_vcsessions":["videowhisper-video-conference-integration"],"wsi_accepted_invites":["wp-social-invitations"],"wow_button_generator":["button-generation"],"wphr_company_locations":["wp-hr-manager"],"bap_orders":["book-a-place"],"wphr_hr_announcement":["wp-hr-manager"],"sh_slides":["sh-slideshow"],"sh_slideshow":["sh-slideshow"],"wphr_hr_dependents":["wp-hr-manager"],"wsi_invites":["wp-social-invitations"],"nme_gmaps_data":["google-maps-route-plugin"],"bap_places":["book-a-place"],"bap_events":["book-a-place"],"a4barcode_custom_templates":["a4-barcode-generator"],"pluginsl_sociallinkz":["social-linkz"],"a4barcode_paper_formats":["a4-barcode-generator"],"ft_lua_userlogins":["log-user-access"],"find_me_on":["find-me-on"],"lg_mails":["button-generation"],"booked_appointments":["fastbook-responsive-appointment-booking-and-scheduling-system"],"note_press":["note-press"],"vostore_locator":["vo-locator-the-wp-store-locator"],"bap_carts":["book-a-place"],"tsi_words":["fulltext-search"],"vosl_tags":["vo-locator-the-wp-store-locator"],"vosl_store_custom_fields":["vo-locator-the-wp-store-locator"],"vosl_setting":["vo-locator-the-wp-store-locator"],"vosl_custom_fields":["vo-locator-the-wp-store-locator"],"appointment_settings":["fastbook-responsive-appointment-booking-and-scheduling-system"],"wm_maps":["tree-website-map"],"gabcaptchasecret":["gab-captcha-2"],"cjl_bdemail_unsubscribe":["birthday-emails"],"ts_tracks":["trackserver"],"wpmlm_paypal":["wp-mlm"],"wpmlm_level_commission":["wp-mlm"],"ad_buttons_stats_hst":["ad-buttons"],"ad_buttons_stats":["ad-buttons"],"wpmlm_leg_amount":["wp-mlm"],"ad_buttons":["ad-buttons"],"wpmlm_general_information":["wp-mlm"],"wpmlm_fund_transfer_details":["wp-mlm"],"wpmlm_transaction_id":["wp-mlm"],"wpmlm_registration_packages":["wp-mlm"],"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_circles":["web-pace-google-map"],"webpace_maps_polylines":["web-pace-google-map"],"cleverreach_queue":["cleverreach-wp"],"mb_relationships":["mb-relationships"],"wpmlm_ewallet_history":["wp-mlm"],"wpmlm_tran_password":["wp-mlm"],"wpmlm_reg_type":["wp-mlm"],"gtwbundle_webinars":["gotowp"],"mail_booster_meta":["wp-mail-booster"],"unisender_contact_list":["unisender-integration"],"wp_ticker":["wp-ticker"],"mollom":["mollom"],"unisender_field":["unisender-integration"],"xlutm":["utm-leads-tracker-lite"],"xlutmmeta":["utm-leads-tracker-lite"],"spbtbl":["superb-tables"],"tradetracker_xml":["tradetracker-store"],"mail_booster_logs":["wp-mail-booster"],"menu_manager_plus":["advance-menu-manager"],"mail_booster_email_logs":["wp-mail-booster"],"mail_booster":["wp-mail-booster"],"wp_ticker_content":["wp-ticker"],"cp_donations":["custom-post-donations"],"wl_relation_instances":["wordlift"],"ts_locations":["trackserver"],"ch_participants":["contesthopper"],"ch_participants_meta":["contesthopper"],"regenerate_dir_images":["regenerate-thumbnails-in-cloud"],"cleverreach_process":["cleverreach-wp"],"wpmlm_user_balance_amount":["wp-mlm"],"gtwbundle_meetings":["gotowp"],"zd_ml_trans":["zdmultilang"],"ainterlock_wp_note_press":["note-press"],"tracking_clicks":["wp-click-track"],"twofas_session_variables":["2fas"],"purehtml_functions":["pure-html"],"twofas_migrations":["2fas"],"crrntl_currency":["car-rental"],"crrntl_extras_order":["car-rental"],"at_meta":["table-creator"],"at_table_creator":["table-creator"],"tracking_links":["wp-click-track"],"crrntl_locations":["car-rental"],"crrntl_orders":["car-rental"],"quotes_llama":["quotes-llama"],"crrntl_statuses":["car-rental"],"wpmlm_users":["wp-mlm"],"math_quiz_problems":["math-quiz"],"wpmlm_country":["wp-mlm"],"wpmlm_configuration":["wp-mlm"],"lws_wr_historic":["woorewards"],"es_download_counter":["electric-studio-download-counter"],"zd_ml_langs":["zdmultilang"],"randomyoutube":["random-youtube-video"],"twofas_trusted_devices":["2fas"],"zd_ml_comments":["zdmultilang"],"twofas_sessions":["2fas"],"tradetracker_cat":["tradetracker-store"],"cleverreach_config":["cleverreach-wp"],"zd_ml_linktrans":["zdmultilang"],"zd_ml_termtrans":["zdmultilang"],"rdp_wiki_embed":["rdp-wiki-embed"],"cleverreach_entity":["cleverreach-wp"],"wpis_plugin":["wp-image-slideshow"],"tradetracker_store":["tradetracker-store"],"webpace_maps_stores":["web-pace-google-map"],"tradetracker_multi":["tradetracker-store"],"tradetracker_layout":["tradetracker-store"],"tradetracker_item":["tradetracker-store"],"tradetracker_extra":["tradetracker-store"],"comwp_ultimate_csv_importer_log_values":["import-woocommerce"],"comsmackuci_history":["import-woocommerce"],"wpm_6310_member":["team-showcase-supreme"],"wpm_6310_icons":["team-showcase-supreme"],"comsmackuci_events":["import-woocommerce"],"gp_translations":["glotpress"],"comwp_ultimate_csv_importer_manageshortcodes":["import-woocommerce"],"gp_glossary_entries":["glotpress"],"plugin_websters_kalendar":["kalendar-cz"],"comwp_ultimate_csv_importer_shortcodes_statusrel":["import-woocommerce"],"gp_translation_sets":["glotpress"],"gp_projects":["glotpress"],"paymill_cache_offers":["paymill"],"gp_glossaries":["glotpress"],"paymill_clients":["paymill"],"paymill_subscriptions":["paymill"],"comwp_ultimate_csv_importer_mappingtemplate":["import-woocommerce"],"wpm_6310_style":["team-showcase-supreme"],"gp_originals":["glotpress"],"gp_meta":["glotpress"],"gp_permissions":["glotpress"],"mpesa_trx":["woo-m-pesa-payment-gateway"],"wpm_6310_icon":["team-showcase-supreme"],"grid_nodes":["grid"],"_faucet_refs":["bitcoin-faucet"],"_faucet_settings":["bitcoin-faucet"],"sddb_reviews":["sell-downloads"],"grid_container":["grid"],"grid_container2slot":["grid"],"grid_container_style":["grid"],"grid_container_type":["grid"],"grid_grid":["grid"],"grid_grid2container":["grid"],"grid_schema":["grid"],"grid_box_style":["grid"],"grid_slot":["grid"],"domain_check_ssl":["domain-check"],"domain_check_domains":["domain-check"],"domain_check_coupons":["domain-check"],"grid_slot2box":["grid"],"grid_slot_style":["grid"],"l_crm_map_fields":["wp-widget-sugarcrm-lead-module"],"nsaa_xed_comments":["no-spam-at-all"],"gh_form_impressions":["groundhogg"],"gh_events":["groundhogg"],"grid_box_type":["grid"],"grid_box":["grid"],"etcpf_custom_feed_products":["exportfeed-for-woocommerce-product-to-etsy"],"gh_submissionmeta":["groundhogg"],"sentry_groups":["wp-sentry"],"vtwpr_purchase_log_product_rule":["wholesale-pricing-for-woocommerce"],"worthy_markers":["wp-worthy"],"adce_config":["exchange-rates-adce"],"gh_tags":["groundhogg"],"vtwpr_purchase_log_product":["wholesale-pricing-for-woocommerce"],"vtwpr_purchase_log":["wholesale-pricing-for-woocommerce"],"gh_tag_relationships":["groundhogg"],"gh_superlinks":["groundhogg"],"etcpf_shipping_template":["exportfeed-for-woocommerce-product-to-etsy"],"gh_steps":["groundhogg"],"_faucet_pages":["bitcoin-faucet"],"gh_stepmeta":["groundhogg"],"gh_sms":["groundhogg"],"firme_circolari":["gestione-circolari","gestione-circolari-groups"],"_faucet_address_locks":["bitcoin-faucet"],"_faucet_addresses":["bitcoin-faucet"],"_faucet_ip_locks":["bitcoin-faucet"],"wpwbot_index":["chatbot"],"_faucet_ips":["bitcoin-faucet"],"gh_funnels":["groundhogg"],"gh_submissions":["groundhogg"],"lcs_modules_type":["live-chat-by-supsystic"],"google_markers":["google-map-professional"],"w2dc_content_fields":["web-directory-free"],"w2dc_locations_relationships":["web-directory-free"],"w2dc_locations_levels":["web-directory-free"],"wpbi_queries3":["wp-business-intelligence-lite"],"w2dc_levels_relationships":["web-directory-free"],"w2dc_levels":["web-directory-free"],"w2dc_directories":["web-directory-free"],"w2dc_content_fields_groups":["web-directory-free"],"cmm_subscriber":["custom-maintenance-mode"],"shortcodes_groups":["scode-by-mojwp"],"etcpf_orders":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_listings":["exportfeed-for-woocommerce-product-to-etsy"],"shopbop_category_assignments":["shopbop-widget"],"shopbop_cache":["shopbop-widget"],"etcpf_listing_variations":["exportfeed-for-woocommerce-product-to-etsy"],"reflex_gallery_images":["reflex-gallery"],"wpbi_tables":["wp-business-intelligence-lite"],"wpbi_tb_cols":["wp-business-intelligence-lite"],"wpbi_queries":["wp-business-intelligence-lite"],"wpbi_pie_charts":["wp-business-intelligence-lite"],"wpbiker_tool":["popups-creator","forms-creator","subscription-creator"],"fc_captcha_store":["flexible-captcha"],"cmeb_email_list":["cm-email-blacklist"],"pd_downloadlinks":["paid-downloads","zarinpal-paid-downloads"],"pd_files":["paid-downloads","zarinpal-paid-downloads"],"pd_orders":["zarinpal-paid-downloads"],"pd_transactions":["paid-downloads","zarinpal-paid-downloads"],"cmeb_free_domains":["cm-email-blacklist"],"wpbi_phinx_log":["wp-business-intelligence-lite"],"wpbi_bar_charts":["wp-business-intelligence-lite"],"cmeb_userlist":["cm-email-blacklist"],"etcpf_resolved_product_data":["exportfeed-for-woocommerce-product-to-etsy"],"opafti_history":["transaction-integration-for-affiliatewp-and-optimizepress"],"wpbi_ch_cols":["wp-business-intelligence-lite"],"wpbi_charts":["wp-business-intelligence-lite"],"wpbi_database_connections":["wp-business-intelligence-lite"],"wpbi_databases":["wp-business-intelligence-lite"],"wpbi_datatables":["wp-business-intelligence-lite"],"wpbi_vars":["wp-business-intelligence-lite"],"wpbooking_availability":["wp-booking-management-system"],"comsmack_field_types":["import-woocommerce"],"lcs_statistics":["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_usage_stat":["live-chat-by-supsystic"],"lcs_chat_engines":["live-chat-by-supsystic"],"e_gallery":["video-slider-with-thumbnails"],"e_franchise":["bbs-e-franchise"],"e_franchise_config":["bbs-e-franchise"],"paymill_transactions":["paymill"],"rank_math_schema":["schema-markup-rich-snippets"],"comcsv_line_log":["import-woocommerce"],"omega_index_status":["omega-instant-search"],"comcsv_pie_log":["import-woocommerce"],"google_marker_settings":["google-map-professional"],"lcs_chat_engines_show_pages":["live-chat-by-supsystic"],"omega_sync_status":["omega-instant-search"],"wpbooking_availability_tour":["wp-booking-management-system"],"ravpage_urls":["ravpage"],"wpbooking_favorite":["wp-booking-management-system"],"wpbooking_order":["wp-booking-management-system"],"wpbooking_order_hotel_room":["wp-booking-management-system"],"etcpf_feeds":["exportfeed-for-woocommerce-product-to-etsy"],"wpbooking_payment":["wp-booking-management-system"],"wpbooking_review_helpful":["wp-booking-management-system"],"wpbooking_service":["wp-booking-management-system"],"pi_hit_counter":["wiloke-most-popular-widget"],"gmtr_data":["google-maps-travel-route"],"etcpf_etsy_configuration":["exportfeed-for-woocommerce-product-to-etsy"],"bmc_plugin":["buymeacoffee"],"bmibmr":["bmi-bmr-calculator"],"rank_math_schema_cache":["schema-markup-rich-snippets"],"etcpf_feedproducts":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_etsy_sync":["exportfeed-for-woocommerce-product-to-etsy"],"etcpf_etsy_product_count":["exportfeed-for-woocommerce-product-to-etsy"],"al_urls_index":["anylink"],"al_urls":["anylink"],"hat_subscribers_lite_history":["wechat-subscribers-lite"],"etcpf_category_mappings":["exportfeed-for-woocommerce-product-to-etsy"],"arm_forms":["armember-membership"],"gh_emails":["groundhogg"],"bwge_pricelists":["gallery-ecommerce"],"bwge_parameters":["gallery-ecommerce"],"competition_entries":["competition-form"],"competition_entries_meta":["competition-form"],"bwge_payment_systems":["gallery-ecommerce"],"bwge_pricelist_items":["gallery-ecommerce"],"contact_manager_forms":["contact-manager"],"contact_manager_forms_categories":["contact-manager"],"contact_manager_messages":["contact-manager"],"bwge_pricelist_parameters":["gallery-ecommerce"],"bwge_shortcode":["gallery-ecommerce"],"bwge_order_images":["gallery-ecommerce"],"bwge_theme":["gallery-ecommerce"],"qa_notification":["question-answer"],"qa_follow":["question-answer"],"emailoctopus_custom_fields":["emailoctopus"],"emailoctopus_forms":["emailoctopus"],"thanks_counters":["thanks-you-counter-button"],"pronamic_domain_posts":["pronamic-domain-mapping"],"cp_project_users":["collabpress"],"bwge_orders":["gallery-ecommerce"],"bwge_option":["gallery-ecommerce"],"ps_advertisers":["wp-profitshare"],"bwge_ecommerceoptions":["gallery-ecommerce"],"alcud_options":["aeroleads-contact-us-details"],"premmerce_attributes":["premmerce-woocommerce-variation-swatches"],"msdb_shopping_cart":["sell-downloads"],"bwge_album":["gallery-ecommerce"],"bwge_album_gallery":["gallery-ecommerce"],"gh_emailmeta":["groundhogg"],"st_social_widgets":["socialize-this"],"bwge_image_tag":["gallery-ecommerce"],"bwge_gallery":["gallery-ecommerce"],"pricing_detail":["easy-pricing-table-manager"],"pricing_table":["easy-pricing-table-manager"],"bwge_image":["gallery-ecommerce"],"stw_error_log":["shrinktheweb-website-preview-plugin"],"idea_factory":["idea-factory"],"customizeadmin":["customize-wpadmin"],"bwge_image_comment":["gallery-ecommerce"],"bwge_image_rate":["gallery-ecommerce"],"emailoctopus_forms_meta":["emailoctopus"],"emb_embeds":["embedder"],"wp_photo_50":["wp-photo-text-slider-50"],"psp_web_directories":["premium-seo-pack-light-version"],"mpwd_sessions":["magic-password"],"cppolls_forms":["cp-polls"],"mpwd_session_variables":["magic-password"],"wps_logins":["wp-sentinel"],"mpwd_migrations":["magic-password"],"g_aths_plugin":["announcement-ticker-highlighter-scroller"],"wps_logs":["wp-sentinel"],"cppolls_messages":["cp-polls"],"hs_brand_logo":["hs-brand-logo-slider"],"thanks_readers":["thanks-you-counter-button"],"iaposter_queue":["iaposter"],"ps_keywords":["wp-profitshare"],"psp_serp_reporter2rank":["premium-seo-pack-light-version"],"ps_shorted_links":["wp-profitshare"],"ps_tag_images":["wp-profitshare"],"sticky_social_bar":["sticky-social-bar"],"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"],"iaposter_logs":["iaposter"],"wps_bans":["wp-sentinel"],"ps_campaigns":["wp-profitshare"],"all_pushnotification_token":["all-push-notification"],"rpc_regioni":["regione-provincia-comune"],"rpc_province":["regione-provincia-comune"],"rpc_comuni":["regione-provincia-comune"],"ps_conversions":["wp-profitshare"],"cbpress_tree":["cbpress"],"cbpress_prod":["cbpress"],"vls_gf_nodes":["gallery-factory-lite"],"vls_gf_images":["gallery-factory-lite"],"all_pushnotification_logs":["all-push-notification"],"cbpress_parse_user":["cbpress"],"gcl_certificates":["gift-certificates-lite"],"cbpress_parse_tree":["cbpress"],"cbpress_parse_prod":["cbpress"],"cbpress_list_item":["cbpress"],"cbpress_list":["cbpress"],"cbpress_import":["cbpress"],"cbpress_cat":["cbpress"],"vls_gf_folders":["gallery-factory-lite"],"vls_gf_aux_images":["gallery-factory-lite"],"gcl_transactions":["gift-certificates-lite"],"em_attendees":["event-monster"],"etcpf_settings":["exportfeed-for-woocommerce-product-to-etsy"],"currencies":["wp-currencies"],"ai_quiz_tblsubmittedanswers":["quiz-tool-lite"],"arm_member_templates":["armember-membership"],"arm_members":["armember-membership"],"userstats_count":["user-stats"],"arm_membership_setup":["armember-membership"],"comment_mail_queue":["comment-mail"],"popunderpopup":["popunder-popup"],"author_chat":["author-chat"],"ai_quiz_tbluserquizresponses":["quiz-tool-lite"],"ai_quiz_tblsettings":["quiz-tool-lite"],"comment_mail_sub_event_log":["comment-mail"],"ai_quiz_tblresponseoptions":["quiz-tool-lite"],"ai_quiz_tblquizzes":["quiz-tool-lite"],"comment_mail_subs":["comment-mail"],"quick_flag_ip_ranges":["quick-flag"],"quick_flag_countries":["quick-flag"],"quick_count_users":["quick-count"],"ai_quiz_tblquizattempts":["quiz-tool-lite"],"arm_login_history":["armember-membership"],"snowball_blocks":["snowball"],"arm_payment_log":["armember-membership"],"gh_activity":["groundhogg"],"arm_activity":["armember-membership"],"scc_forms":["stylish-cost-calculator"],"scc_form_parameters":["stylish-cost-calculator"],"gh_contacts":["groundhogg"],"gh_contactmeta":["groundhogg"],"gh_broadcasts":["groundhogg"],"arm_bank_transfer_log":["armember-membership"],"instock_email_alert":["instock-email-alert-for-woocommerce"],"gh_api_tokens":["groundhogg"],"arm_email_templates":["armember-membership"],"snowball_articles":["snowball"],"wusp_user_pricing_mapping":["customer-specific-pricing-lite"],"woodle_termmeta":["moowoodle"],"arm_entries":["armember-membership"],"arm_fail_attempts":["armember-membership"],"arm_form_field":["armember-membership"],"wpdbboost_log":["wp-db-booster"],"psp_serp_reporter":["premium-seo-pack-light-version"],"arm_lockdown":["armember-membership"],"wthp_helpful_log":["was-this-helpful"],"tss_team_showcase_style":["team-showcase-supreme"],"comment_mail_queue_event_log":["comment-mail"],"cf_participants_meta":["contestfriend"],"reflex_gallery":["reflex-gallery"],"questions_participiants":["questions"],"wpforms_db":["database-for-wpforms"],"musli":["musli"],"questions_questions":["questions"],"mavis_settings":["mavis-https-to-http-redirect"],"questions_respond_answers":["questions"],"ai_quiz_tblgradeboundaries":["quiz-tool-lite"],"tss_team_showcase_image_list":["team-showcase-supreme"],"tss_team_showcase_label":["team-showcase-supreme"],"mbp_progress":["mybookprogress"],"wp_flickity":["wp-flickity"],"cf_participants":["contestfriend"],"tss_team_showcase_link":["team-showcase-supreme"],"cf_geo_seo_redirection":["cf-geoplugin"],"imdb_connector":["imdb-connector"],"questions_answers":["questions"],"questions_responds":["questions"],"arm_subscription_plans":["armember-membership"],"opafti_stats":["transaction-integration-for-affiliatewp-and-optimizepress"],"opafti_saved_purchases":["transaction-integration-for-affiliatewp-and-optimizepress"],"ai_quiz_tblquestions":["quiz-tool-lite"],"ai_quiz_tblquestionpots":["quiz-tool-lite"],"alcud":["aeroleads-contact-us-details"],"sktnurclog":["skt-nurcaptcha"],"arm_termmeta":["armember-membership"],"questions_settings":["questions"],"reviews_products_reviews":["netreviews"],"slideshow_plugin":["slideshow-manager"],"zp_locations":["print-google-cloud-print-gcp-woocommerce"],"tfk_item":["taskfreak"],"tfk_item_file":["taskfreak"],"tfk_item_comment":["taskfreak"],"paypal_products":["paypal-responder"],"tfk_item_comment_like":["taskfreak"],"reviews_products_average":["netreviews"],"jumplead_mapping":["jumplead"],"tfk_project_status":["taskfreak"],"paypal_transactions":["paypal-responder"],"slbl_log":["htaccess-login-block"],"ob_feed2quiz":["onionbuzz-viral-quiz"],"sm_social_list":["share-me"],"ob_adv_settings":["onionbuzz-viral-quiz"],"kento_email_subscriber":["email-subscriber"],"omnisend_logs":["omnisend-connect"],"sm_config":["share-me"],"tfk_project":["taskfreak"],"tfk_log":["taskfreak"],"tfk_item_status":["taskfreak"],"tfk_item_like":["taskfreak"],"ob_advertisings":["onionbuzz-viral-quiz"],"ob_answer2result":["onionbuzz-viral-quiz"],"ob_answers":["onionbuzz-viral-quiz"],"ob_feeds":["onionbuzz-viral-quiz"],"tfk_project_user":["taskfreak"],"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"],"tayori":["tayori"],"slbl_blocks":["htaccess-login-block"],"nm_wooconvo":["admin-and-client-message-after-order-for-woocommerce"],"kads_info":["kento-ads-rotator"],"noticias_de_portada":["hot-news-manager"],"reviews_configuration":["netreviews"],"mlm_country":["binary-mlm","binarymlm"],"kklike":["kk-i-like-it"],"unter_top":["rich-counter"],"lrisg_plugin":["left-right-image-slideshow-gallery"],"py_jobs":["wordpress-google-seo-positioner"],"py_jobs_data":["wordpress-google-seo-positioner"],"viewmedica":["viewmedica"],"videourl":["video-sidebar-widget"],"unter_time":["rich-counter"],"lodgix_taxes":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"unter_last":["rich-counter"],"unter_hold":["rich-counter"],"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"],"an":["quran-text-multilanguage"],"lodgix_translations":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_tags":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"marker_animation_setting":["marker-animation"],"lodgix_link_rotators":["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_merged_rates":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_searchable_amenities":["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"],"marker_animation___log":["marker-animation"],"maxab_experiments":["maxab"],"lodgix_categories":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"mlm_payout_master":["binary-mlm","binarymlm"],"resads_ad_adspot":["resads"],"resads_ad":["resads"],"mlm_users":["binary-mlm","binarymlm"],"rencato_connector_log":["ecalypse-rental-starter"],"mlm_rightleg":["binary-mlm","binarymlm"],"refersion_cart_tracking":["refersion-for-woocommerce"],"mlm_payout":["binary-mlm","binarymlm"],"resads_adspot":["resads"],"mlm_leftleg":["binary-mlm","binarymlm"],"mlm_currency":["binary-mlm","binarymlm"],"reatlat_cub_sources":["campaign-url-builder"],"reatlat_cub_mediums":["campaign-url-builder"],"reatlat_cub_links":["campaign-url-builder"],"reallysimpleevents":["really-simple-events"],"mlm_bonus":["binary-mlm","binarymlm"],"resads_ad_statistik":["resads"],"resads_resolution":["resads"],"rich_web_cs_forms_themes3":["coming-soons"],"rich_web_cs_forms_cust_id":["coming-soons"],"rich_web_cs_forms_themes2":["coming-soons"],"rich_web_cs_forms_themes1":["coming-soons"],"rich_web_cs_forms_saved":["coming-soons"],"rich_web_cs_forms_options":["coming-soons"],"rich_web_cs_forms_mails":["coming-soons"],"rich_web_cs_forms_info":["coming-soons"],"rich_web_cs_form_fields":["coming-soons"],"revision_control":["companion-revision-manager"],"rich_web_cs_font_family":["coming-soons"],"mediatagger":["wp-mediatagger"],"mmdyk_quote":["mm-did-you-know"],"menusplus":["menus-plus"],"menusplus_menus":["menus-plus"],"mm_menus":["menu-manager"],"lodgix_category_posts":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"lodgix_amenities":["lodgixcom-vacation-rental-listing-management-booking-plugin"],"kklikeuser":["kk-i-like-it"],"netreviews_configuration":["netreviews"],"plugin_manager_group_plugin":["plugin-grouper"],"plugin_manager_groups":["plugin-grouper"],"plugin_manager_plugins":["plugin-grouper"],"newfield":["video-sidebar-widget"],"netreviews_products_reviews":["netreviews"],"netreviews_products_average":["netreviews"],"r_smackuci_events":["import-users"],"lhr_log":["log-http-requests"],"secsign":["secsign"],"sec_opt_counter":["wp-security-optimizer"],"sec_opt_attacker":["wp-security-optimizer"],"sec_opt_attack_history":["wp-security-optimizer"],"scrybs_languages_translations":["scrybs-translation"],"scrybs_languages":["scrybs-translation"],"sw_couriers":["shipway-shipment-tracking-and-notify"],"r_smackuci_history":["import-users"],"scrd_debug_log":["rss-digest"],"shortcode_imdb_cache":["shortcode-imdb"],"vxg_salesforce_log":["gf-salesforce-crmperks"],"vxg_salesforce_accounts":["gf-salesforce-crmperks"],"vxg_salesforce":["gf-salesforce-crmperks"],"pickplugins_wl_data":["wishlist"],"r_wp_ultimate_csv_importer_log_values":["import-users"],"sexy_login":["sexy-login"],"mapfig_premium_map":["mapfig-premium-leaflet-map-maker"],"seur_custom_rates":["seur"],"r_wp_ultimate_csv_importer_shortcodes_statusrel":["import-users"],"r_wp_ultimate_csv_importer_manageshortcodes":["import-users"],"like_dislike_btn_details":["like-dislike-plus-counter"],"scck_menu":["simple-content-construction-kit"],"lmfwc_licenses":["license-manager-for-woocommerce"],"projectmanager_countries":["projectmanager"],"_uwpm_email_only_users":["ultimate-wp-mail"],"_uwpm_email_links_clicked_events":["ultimate-wp-mail"],"cwin_feed":["epicwin-subscribers"],"prettyurls":["pretty-url"],"voteiu_data":["vote-it-up"],"projectmanager_categories":["projectmanager"],"projectmanager_dataset":["projectmanager"],"_uwpm_email_send_events":["ultimate-wp-mail"],"projectmanager_datasetmeta":["projectmanager"],"projectmanager_projects":["projectmanager"],"lmfwc_api_keys":["license-manager-for-woocommerce"],"lmfwc_generators":["license-manager-for-woocommerce"],"mlm_commission":["binary-mlm","binarymlm"],"pros_campaigns":["prosociate-amazon"],"pros_prossubscription":["prosociate-amazon"],"_uwpm_email_open_events":["ultimate-wp-mail"],"mudslide":["mudslideshow"],"scck_content_type_fields_group_rel":["simple-content-construction-kit"],"sndr_mail_send":["sender"],"scck_content_type_fields_group":["simple-content-construction-kit"],"scck_content_type_fields_detail_tx":["simple-content-construction-kit"],"scck_content_type_fields_detail":["simple-content-construction-kit"],"scck_content_type_fields":["simple-content-construction-kit"],"scck_content_type":["simple-content-construction-kit"],"sc_catalog":["sc-catalog"],"c_links":["simple-link-cloaker"],"sndr_users":["sender"],"mwp_modal_free":["mwp-modal-windows"],"_core37_formstyle":["form-styles-for-contact-form-7"],"sa_plugin":["sermonaudio-widgets"],"s3slider":["s3slider-plugin"],"rw_gplaces_review":["review-wave-google-places-reviews"],"rw_gplaces_place":["review-wave-google-places-reviews"],"seur_svpr":["seur"],"jigoshop_tax":["jigoshop-ecommerce"],"ics_modules":["comparison-slider"],"ics_usage_stat":["comparison-slider"],"datafeed_analytics":["awin-data-feed"],"ics_modules_type":["comparison-slider"],"ics_sliders":["comparison-slider"],"csr_votes":["cosmick-star-rating"],"wow_social_users":["wow-facebook-login","wow-google-login"],"btn_details":["like-dislike-plus-counter"],"css_js_manager":["css-js-manager"],"webpay":["webpay-woocommerce-plugin"],"fx_email_log":["fx-email-log"],"wpsg_versandarten":["wpshopgermany-free"],"wpsg_order":["wpshopgermany-free"],"guiform_options":["guiform"],"wpv_voting_meta":["wp-voting"],"avalex":["avalex"],"fca_cc_activity_tbl":["giveaways-contests"],"wpsg_orderconditions":["wpshopgermany-free"],"wpsg_versandzonen":["wpshopgermany-free"],"g_ywfz":["youtube-with-fancy-zoom"],"wpsg_products":["wpshopgermany-free"],"cbaccounting_account_manager":["cbxwpsimpleaccounting"],"ean_newsletter":["easy-automatic-newsletter"],"cbaccounting_category":["cbxwpsimpleaccounting"],"cbaccounting_expcat_rel":["cbxwpsimpleaccounting"],"cbaccounting_expinc":["cbxwpsimpleaccounting"],"wpre_emails":["wp-reroute-email"],"cbxuseronline":["cbxuseronline"],"clean_up_booster_meta":["clean-up-booster"],"fun_facts":["fun-facts"],"ewd_uwpm_email_only_users":["ultimate-wp-mail"],"jigoshop_attribute_option":["jigoshop-ecommerce"],"arsocial_lite_networks":["social-share-and-social-locker-arsocial"],"arsocial_lite_locker":["social-share-and-social-locker-arsocial"],"fancyimg_plugin":["fancy-image-show"],"jigoshop_order_item":["jigoshop-ecommerce"],"jigoshop_order_discount_meta":["jigoshop-ecommerce"],"jigoshop_order_discount":["jigoshop-ecommerce"],"jigoshop_cronjobs":["jigoshop-ecommerce"],"jigoshop_attribute":["jigoshop-ecommerce"],"jigoshop_order_tax":["jigoshop-ecommerce"],"arsocial_lite_like":["social-share-and-social-locker-arsocial"],"far":["find-and-replace-content"],"wpcrm_system_recurring_entries":["wp-crm-system"],"arsocial_lite_fan":["social-share-and-social-locker-arsocial"],"wpv_voting":["wp-voting"],"woocommerce_order_alert":["woc-order-alert"],"wpsg_laender":["wpshopgermany-free"],"jigoshop_order_item_meta":["jigoshop-ecommerce"],"jigoshop_product_attachment":["jigoshop-ecommerce"],"clndr_instances":["event-clndr"],"wpsg_kunden":["wpshopgermany-free"],"clndr_events":["event-clndr"],"google_shortlink":["google-shortlink"],"xmasb_quotes":["xmasb-quotes"],"wpsg_order_products":["wpshopgermany-free"],"clean_up_booster_ip_locations":["clean-up-booster"],"woocommerce_buckaroo_transactions":["wc-buckaroo-bpe-gateway"],"wpsg_adress":["wpshopgermany-free"],"clean_up_booster":["clean-up-booster"],"board_rsvps":["nonprofit-board-management"],"appointment_calendars_data":["cp-appointment-calendar"],"jigoshop_term_meta":["jigoshop-ecommerce"],"jigoshop_tax_location":["jigoshop-ecommerce"],"appointment_calendars":["cp-appointment-calendar"],"jigoshop_product_variation_attribute":["jigoshop-ecommerce"],"jigoshop_product_attribute_meta":["jigoshop-ecommerce"],"jigoshop_product_attribute":["jigoshop-ecommerce"],"ewd_uwpm_email_open_events":["ultimate-wp-mail"],"ewd_uwpm_email_send_events":["ultimate-wp-mail"],"ewd_uwpm_email_links_clicked_events":["ultimate-wp-mail"],"wpajans_stickybuttons":["wp-sticky-side-buttons"],"cosmosfarm_comments_token":["cosmosfarm-comments"],"cycletext_settings":["wp-cycle-text-announcement"],"wpf_order_items":["wp-payment-form"],"ens_subscribers":["easy-newsletter-signups"],"wpf_meta":["wp-payment-form"],"cycletext_content":["wp-cycle-text-announcement"],"wpf_order_transactions":["wp-payment-form"],"invites":["wp-invites"],"ecalypse_rental_webhook_queue":["ecalypse-rental-starter"],"ecalypse_rental_vehicle_categories":["ecalypse-rental-starter"],"ecalypse_rental_translations":["ecalypse-rental-starter"],"wpsg_orderlog":["wpshopgermany-free"],"ap_meta":["profilepress"],"ap_clickout":["affiliate-power"],"dex_appointments":["cp-appointment-calendar"],"embed_rsvpify_plugin":["rsvpify-rsvp-form"],"wpcvp_pollsq":["colored-vote-polls"],"dailytopten":["daily-top-10-posts"],"wooms_logger":["wooms"],"woorelatedproducts":["woo-simply-add-related-products-to-blog-posts"],"wpf_subscriptions":["wp-payment-form"],"datafeed":["awin-data-feed"],"wxsync_config":["wxsync"],"dailytoptenall":["daily-top-10-posts"],"bp_compliments":["buddypress-compliments"],"wplistcal":["wplistcal"],"emailinglist":["email-suscripcion","dys-email-subscription"],"advanced_cf7_data":["advanced-cf7-database"],"wpf_submissions":["wp-payment-form"],"geonamespostal":["wp-geonames"],"geonames":["wp-geonames"],"ap_transaction":["affiliate-power"],"wpf_submission_activities":["wp-payment-form"],"guiform":["guiform"],"wpda_vertical_menu_theme":["wpdevart-vertical-menu"],"gb_gallery_group_post":["gb-gallery-slideshow"],"wpcvp_pollsip":["colored-vote-polls"],"ecalypse_rental_extras":["ecalypse-rental-starter"],"ecalypse_rental_branches_hours":["ecalypse-rental-starter"],"ecalypse_rental_branches":["ecalypse-rental-starter"],"ecalypse_rental_booking_prices":["ecalypse-rental-starter"],"ecalypse_rental_booking_items":["ecalypse-rental-starter"],"ecalypse_rental_booking_drivers":["ecalypse-rental-starter"],"ecalypse_rental_booking":["ecalypse-rental-starter"],"canvas_notifications":["mobile-app"],"ecalypse_rental_fleet_extras":["ecalypse-rental-starter"],"appts_tables_data":["ap-pricing-tables-lite"],"cardgate_payments":["cardgate"],"evc_log":["elegant-visitor-counter"],"wp_writup":["wp-writup"],"wpcvp_pollsa":["colored-vote-polls"],"hitcounter":["hitcounter"],"category_info":["category-post-info-control"],"ecalypse_rental_fleet":["ecalypse-rental-starter"],"ecalypse_rental_extras_pricing":["ecalypse-rental-starter"],"wpsg_meta":["wpshopgermany-free"],"watulp_relations":["quizzes-for-learnpress"],"gb_gallery_group":["gb-gallery-slideshow"],"wpcvp_pollsp":["colored-vote-polls"],"crfw_cart":["cart-recovery"],"crfw_cart_event":["cart-recovery"],"ecalypse_rental_fleet_parameters":["ecalypse-rental-starter"],"ecalypse_rental_pricing":["ecalypse-rental-starter"],"ecalypse_rental_pricing_ranges":["ecalypse-rental-starter"],"ecalypse_rental_fleet_pricing":["ecalypse-rental-starter"],"wb":["wp-widget-bundle"],"ecalypse_rental_fleet_parameters_values":["ecalypse-rental-starter"],"crfw_cart_meta":["cart-recovery"],"wptwitipid":["twitterlink-comments","wp-twitip-id"],"mendeleycache":["mendeleyplugin"],"gridaccordion_panels":["grid-accordion-lite"],"clickervolt_stats_whole_path_var5":["clickervolt"],"clickervolt_stats_whole_path_var2":["clickervolt"],"xo_security_loginlog":["xo-security"],"clickervolt_stats_whole_path_var6":["clickervolt"],"clickervolt_stats_whole_path_var3":["clickervolt"],"clickervolt_stats_whole_path_var4":["clickervolt"],"gridaccordion_accordions":["grid-accordion-lite"],"gridaccordion_layers":["grid-accordion-lite"],"um_gallery_comments":["gallery-for-ultimate-member"],"clickervolt_stats_whole_path_var7":["clickervolt"],"ml_adverts_clicks":["ml-adverts"],"sshow_sales":["stageshow"],"codeswholesale_access_tokens":["codeswholesale-for-woocommerce"],"codeswholesale_import_properties":["codeswholesale-for-woocommerce"],"codeswholesale_refresh_tokens":["codeswholesale-for-woocommerce"],"sshow_seating":["stageshow"],"random_content_record":["wp-social-seo"],"sshow_settings":["stageshow"],"sshow_shows":["stageshow"],"sshow_spooler":["stageshow"],"ml_adverts_impressions":["ml-adverts"],"sshow_presets":["stageshow"],"rafflepress_giveaways":["rafflepress"],"rafflepress_entries":["rafflepress"],"rafflepress_contestants":["rafflepress"],"sshow_tickets":["stageshow"],"sshow_ticketsmeta":["stageshow"],"sshow_verifys":["stageshow"],"sshow_zones":["stageshow"],"ssign_envelope":["electronic-signatures"],"ssign_pdfs":["electronic-signatures"],"qwiz_textentry_suggestions":["qwiz-online-quizzes-and-flashcards"],"sshow_prices":["stageshow"],"sshow_plans":["stageshow"],"clickervolt_stats_whole_path_var8":["clickervolt"],"adit_hitcount":["mechanic-post-hits-counter"],"clickervolt_stats_whole_path_var9":["clickervolt"],"clickervolt_suspicious_clicks":["clickervolt"],"clickervolt_urls_paths":["clickervolt"],"ad_click":["cbprotect"],"clickmeter_options":["clickmeter-link-shortener-and-analytics"],"clickmeter_tracking_links":["clickmeter-link-shortener-and-analytics"],"clickmeter_tracking_pixels":["clickmeter-link-shortener-and-analytics"],"addpipe_records":["pipe-video-recorder"],"addpipe_shortcodes":["pipe-video-recorder"],"um_notification":["user-messages"],"sshow_perfs":["stageshow"],"um_message":["user-messages"],"um_gallery_meta":["gallery-for-ultimate-member"],"um_gallery_favorites":["gallery-for-ultimate-member"],"um_gallery_album":["gallery-for-ultimate-member"],"um_gallery":["gallery-for-ultimate-member"],"ultimate_member_gallery_user_contents":["ultimate-member-gallery"],"cmnb_history":["cm-notification-bar"],"sshow_discodes":["stageshow"],"sshow_dispresets":["stageshow"],"sshow_disprices":["stageshow"],"clickervolt_stats_whole_path_var10":["clickervolt"],"cheetaho_image_metadata":["cheetaho-image-optimizer"],"clickervolt_stats_whole_path_var1":["clickervolt"],"hrm_attendance":["hrm"],"hrm_leave_type":["hrm"],"hrm_leave":["hrm"],"hrm_language":["hrm"],"hrm_job_title":["hrm"],"hrm_job_category":["hrm"],"hrm_holiday":["hrm"],"hrm_formula":["hrm"],"hrm_financial_year":["hrm"],"hrm_education":["hrm"],"hrm_designation":["hrm"],"hrm_client_partial_payment":["hrm"],"assets_log":["assets-manager"],"hrm_migrations":["hrm"],"cart_data":["print-science-designer"],"acip_text_desglo":["avirato-calendar"],"mailer_templates":["custom-user-emails"],"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"],"video_files":["videos"],"hrm_location":["hrm"],"hrm_notice":["hrm"],"_click_statistics":["wp-click-info"],"call_back_best_time":["wp-call-me-back"],"visitas":["visits"],"acfsrf":["acf-starrating"],"acip_text_button":["avirato-calendar"],"acip_text_calendar":["avirato-calendar"],"html5video_playlist":["html5-video-player-with-playlist"],"html5video_items":["html5-video-player-with-playlist"],"ht_ip_list":["honeypot-toolkit"],"ht_activity":["honeypot-toolkit"],"acip_text_calendarz":["avirato-calendar"],"hrm_office_time":["hrm"],"hrm_work_experience":["hrm"],"ltp_datas":["like-this-post"],"hrm_user_role":["hrm"],"hrm_time_shift":["hrm"],"hrm_skill":["hrm"],"hrm_salary_group":["hrm"],"hrm_salary":["hrm"],"hrm_relation":["hrm"],"hrm_personal_skill":["hrm"],"hrm_personal_language":["hrm"],"hrm_personal_education":["hrm"],"hrm_pay_grade":["hrm"],"ashuwp_invitation_code":["ashuwp-invitaion-code"],"mailster_attachments":["wp-mailster"],"clickervolt_stats_whole_path_referrers":["clickervolt"],"clickervolt_devices":["clickervolt"],"cgd_term_order":["shopp-arrange"],"changes_tracker":["wp-changes-tracker"],"qwiz_dataset_json":["qwiz-online-quizzes-and-flashcards"],"wpnewcarouseldata":["wpnewcarousels"],"wpnewcarousel":["wpnewcarousels"],"review_user_profile":["wp-social-seo"],"review_user_emails":["wp-social-seo"],"clickervolt_actions":["clickervolt"],"clickervolt_actions_summary":["clickervolt"],"clickervolt_aids":["clickervolt"],"clickervolt_clicks":["clickervolt"],"clickervolt_external_ids":["clickervolt"],"rich_snippets_review":["wp-social-seo"],"clickervolt_funnel_links":["clickervolt"],"clickervolt_geos":["clickervolt"],"clickervolt_links":["clickervolt"],"clickervolt_parallel_ids":["clickervolt"],"clickervolt_referrers":["clickervolt"],"request_a_call_back":["wp-call-me-back"],"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"],"user_login_history":["wp-login-security-and-history"],"spec_comment_log":["spectacula-threaded-comments"],"mapboxadv_maps":["mapbox-for-wp-advanced"],"mailster_digest_queue":["wp-mailster"],"mailster_queued_mails":["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_send_reports":["wp-mailster"],"cf7_export_csv_db":["cf7-export-csv"],"mailster_servers":["wp-mailster"],"mailster_subscriptions":["wp-mailster"],"mailster_threads":["wp-mailster"],"mailster_users":["wp-mailster"],"hami_slider":["wp2appir"],"hami_set":["wp2appir"],"hami_mainpage":["wp2appir"],"hami_appstatic":["wp2appir"],"resh_tokens":["codeswholesale-for-woocommerce"],"hami_appost":["wp2appir"],"man_dofollow":["manuall-dofollow"],"man_dofollow2":["manuall-dofollow"],"qwiz_dataset_json2":["qwiz-online-quizzes-and-flashcards"],"wm_kvs":["wemahu"],"wpm_subscribers":["wp-mailer"],"extrawatch_cache":["extrawatch-pro"],"dsplite_screen_element":["digitalsignagepress-lite"],"dsplite_screen_element_screen":["digitalsignagepress-lite"],"extrawatch_dm_referrer":["extrawatch-pro"],"dsplite_screen_scheduling":["digitalsignagepress-lite"],"dsplite_template":["digitalsignagepress-lite"],"extrawatch_dm_paths":["extrawatch-pro"],"extrawatch_dm_extension":["extrawatch-pro"],"extrawatch_dm_counter":["extrawatch-pro"],"extrawatch_config":["extrawatch-pro"],"extrawatch_cc2c":["extrawatch-pro"],"extrawatch_blocked":["extrawatch-pro"],"extrawatch_flow":["extrawatch-pro"],"extrawatch":["extrawatch-pro"],"plgwpagp_config":["wp-admin-graphic-password"],"dx2hits_posthits":["dx2-post-hit-counter"],"oada_scans":["online-accessibility"],"wp_openstreetmap":["wp-open-street-map"],"wp_openstreetmap_markers":["wp-open-street-map"],"d_linus_contact_form":["contact-us-by-lord-linus"],"pingpressfm":["pingpressfm"],"syg":["sliding-youtube-gallery"],"syg_styles":["sliding-youtube-gallery"],"object_sync_sf_field_map":["object-sync-for-salesforce"],"dsplite_screen":["digitalsignagepress-lite"],"extrawatch_goals":["extrawatch-pro"],"easy_poll_a":["wp-easy-poll-afo"],"extrawatch_uri2keyphrase":["extrawatch-pro"],"wpchtmlp_pages":["wp-custom-html-pages"],"notices":["notices"],"dsplite_device":["digitalsignagepress-lite"],"dsplite_format":["digitalsignagepress-lite"],"dsplite_program":["digitalsignagepress-lite"],"extrawatch_visit2goal":["extrawatch-pro"],"extrawatch_user_log":["extrawatch-pro"],"extrawatch_uri_post":["extrawatch-pro"],"extrawatch_uri_history":["extrawatch-pro"],"extrawatch_uri2title":["extrawatch-pro"],"extrawatch_uri2keyphrase_pos":["extrawatch-pro"],"extrawatch_uri":["extrawatch-pro"],"extrawatch_heatmap":["extrawatch-pro"],"dsplite_program_program":["digitalsignagepress-lite"],"extrawatch_sql_scripts":["extrawatch-pro"],"extrawatch_keyphrase":["extrawatch-pro"],"extrawatch_ip2c_cache":["extrawatch-pro"],"extrawatch_internal":["extrawatch-pro"],"extrawatch_info":["extrawatch-pro"],"dsplite_program_program_scheduling":["digitalsignagepress-lite"],"dsplite_program_screen":["digitalsignagepress-lite"],"extrawatch_history":["extrawatch-pro"],"dsplite_program_screen_scheduling":["digitalsignagepress-lite"],"dsplite_scheduling":["digitalsignagepress-lite"],"object_sync_sf_object_map":["object-sync-for-salesforce"],"easy_poll_q":["wp-easy-poll-afo"],"dpproeventcalendar_subscribers_calendar":["lite-event-calendar"],"wpbb_messages":["wp-bulletin-board"],"enmask_keywords":["boom-captcha","boomcaptcha"],"enmask_hits":["boom-captcha","boomcaptcha"],"emotahar_cost_calc":["cost-calculator"],"emcc_order_details":["cost-calculator"],"emcc_default_mail_user":["cost-calculator"],"email_subscription":["simple-email-subscriber"],"ost_emailtemp":["key4ce-osticket-bridge","osticket-wp-bridge"],"wpbb_topics_unread":["wp-bulletin-board"],"wpbb_topics":["wp-bulletin-board"],"wpbb_posts":["wp-bulletin-board"],"pageview_history":["page-view-count-by-webline"],"telaalbums_users":["telaalbums"],"zpm_tasks":["zephyr-project-manager"],"zpm_projects":["zephyr-project-manager"],"wpbb_categories":["wp-bulletin-board"],"effectmakerparameters":["effect-maker"],"wpappp_subs":["ultimate-popup-creator"],"effectmakeruserconfigurations":["effect-maker"],"metas":["all-in-menu"],"zpm_categories":["zephyr-project-manager"],"p5":["p5"],"ecp1_cache":["every-calendar-1"],"epo_order":["easy-post-order"],"easy_poll_votes":["wp-easy-poll-afo"],"wpabstracts_users":["wp-abstracts-manuscripts-manager"],"oddfaq":["faq-accordion"],"threatpress_login_log":["threatpress-security"],"antiddos":["wpantiddos"],"phone2app_user":["phone2app"],"olyos_concours":["wp-concours"],"olyos_concours_participation":["wp-concours"],"olyos_concours_user":["wp-concours"],"phone2app_form":["phone2app"],"wpabstracts_abstracts":["wp-abstracts-manuscripts-manager"],"wpabstracts_attachments":["wp-abstracts-manuscripts-manager"],"wpabstracts_events":["wp-abstracts-manuscripts-manager"],"zpm_activity":["zephyr-project-manager"],"amdbible_plans_info":["amd-bible-reading"],"amdbible_devos":["amd-bible-reading"],"amdbible_key_abbr_eng":["amd-bible-reading"],"pdfex_template":["post-pdf-export"],"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"],"amdbible_key_eng":["amd-bible-reading"],"amdbible_key_genre_eng":["amd-bible-reading"],"amdbible_kjv":["amd-bible-reading"],"amdbible_plans":["amd-bible-reading"],"drop_down_options":["wp-call-me-back"],"dpproeventcalendar_special_dates_calendar":["lite-event-calendar"],"wpm_jobs":["wp-mailer"],"wm_rulesets":["wemahu"],"trackingcode":["leadfox"],"psr_user":["post-star-rating"],"psr_post":["post-star-rating"],"crw_crosswords":["crosswordsearch"],"crw_editors":["crosswordsearch"],"crw_projects":["crosswordsearch"],"wm_dirstack":["wemahu"],"wm_filehashes":["wemahu"],"wm_filestack":["wemahu"],"rpress_customers":["restropress"],"wm_reportitems":["wemahu"],"woel_woocommerce_order_emails_log":["order-emails-log-for-woocommerce"],"gc_comment_pairing":["graphcomment-comment-system"],"wpic_posts":["wp-posts-to-instagram-by-kolesyane"],"ctext_categories":["category-text"],"ctext_elements":["category-text"],"ctext_lists":["category-text"],"proofreading_rules_settings":["proofreading"],"proofreading_rules":["proofreading"],"proofreading_languages":["proofreading"],"mstoreapp_blocks":["woo-mstoreapp-mobile-app"],"mstoreapp_wishlist":["woo-mstoreapp-mobile-app"],"msweb_reviews":["ms-reviews"],"custom_map":["custom-map"],"cpsp_slides":["category-posts-slider-pro"],"cp_newsletter_table":["cp-simple-newsletter"],"custom_map_polyline":["custom-map"],"contact_stored_data":["contact-form-with-shortcode"],"ssing_lead_report":["electronic-signatures"],"wpm_forms":["wp-mailer"],"ssing_log":["electronic-signatures"],"ssquiz_history":["ssquiz"],"ssquiz_questions":["ssquiz"],"ssquiz_quizzes":["ssquiz"],"queue_jobs":["image-processing-queue"],"queue_failures":["image-processing-queue"],"mmursp_settings":["mapping-multiple-urls-redirect-same-page"],"ttp_custom_design_template_table":["total-team-lite"],"qrgen4all_uploads":["qr-code-generator-4-all"],"contact_subscribers":["contact-form-with-shortcode"],"pvc_paratheme":["page-view-counter"],"contador":["visits"],"contar":["my-contador-wp"],"wl_im_batches":["institute-management"],"wl_im_courses":["institute-management"],"wl_im_enquiries":["institute-management"],"wl_im_installments":["institute-management"],"gd_mylist":["gd-mylist"],"wl_im_students":["institute-management"],"gcountdown":["deal-or-announcement-with-countdown-timer"],"pvc_paratheme_info":["page-view-counter"],"custom_map_polygon":["custom-map"],"dpproeventcalendar_special_dates":["lite-event-calendar"],"e_fake_url":["wp-page-extension"],"dl_acj_cssjs":["add-cssjs-by-duo-leaf"],"wow_fbtnp":["floating-button"],"donate":["wp-donate"],"donate_setting":["wp-donate"],"download_settings":["hide-real-download-path"],"fbrev_page_review":["wp-social-seo"],"fbrev_page":["wp-social-seo"],"pmt_config":["pagamastarde"],"pmt_concurrency":["pagamastarde"],"wp2ap_aff_links":["wp2affiliate"],"dfoxwgrab":["dfoxw-wechatgrab"],"wp2ap_cloaked_links":["wp2affiliate"],"favorite_post":["favorite-post"],"wp2app_checkout":["wp2appir"],"wp2app_commission":["wp2appir"],"dplr_field":["doppler-form"],"dplr_field_settings":["doppler-form"],"dplr_form":["doppler-form"],"dplr_form_settings":["doppler-form"],"dpproeventcalendar_booking":["lite-event-calendar"],"dpproeventcalendar_calendars":["lite-event-calendar"],"popularpostsdatacache":["mh-board"],"nd_rst_booking":["nd-restaurant-reservations"],"multiparcels_terminals":["multiparcels-shipping-for-woocommerce"],"fontsampler_fonts":["fontsampler"],"tahar_cost_calc":["cost-calculator"],"sub_feed_items":["feedback"],"sub_feed_tags":["feedback"],"ahmeti_wp_timeline":["ahmeti-wp-timeline"],"sub_feeds":["feedback"],"cw_epu_subscribers":["email-pick-up"],"sub_offers":["feedback"],"sub_requests":["feedback"],"fontsampler_settings":["fontsampler"],"fontsampler_sets_x_fonts":["fontsampler"],"fontsampler_sets":["fontsampler"],"mysearchterms":["mysearchtermspresenter"],"word_filter_plus":["word-filter-plus"],"mzzstat_v2":["mzz-stat"],"d_stats":["feedback"],"wooraffle_tickets_customer_to_tickets":["raffle-ticket-generator"],"api_info":["print-science-designer"],"named_users":["wpnamedusers"],"named_users_groups":["wpnamedusers"],"named_users_groups_relations":["wpnamedusers"],"wooup_offers":["woo-unlimited-upsell-lite"],"wooup_stats":["woo-unlimited-upsell-lite"],"wooup_view_stats":["woo-unlimited-upsell-lite"],"posts_okunma":["sayfa-sayac"],"rpress_customermeta":["restropress"],"zpm_messages":["zephyr-project-manager"],"rpress_order_notification":["restropress"],"jgcss_stylesheets":["joddit-global-css"],"seatt_events":["simple-event-attendance"],"smartcrm_fields":["wp-smart-crm-invoices-free"],"ljcustommenulinks":["lj-custom-menu-links"],"bounce_emails":["bounce"],"wpfblbox":["crudlab-facebook-like-box"],"sovstack_logs":["security-safe"],"smartcrm_emails":["wp-smart-crm-invoices-free"],"smartcrm_email_templates":["wp-smart-crm-invoices-free"],"jas_plugin":["jquery-accordion-slideshow"],"smartcrm_documenti_dettaglio":["wp-smart-crm-invoices-free"],"saved_projects":["print-science-designer"],"bsk_gfbl_list":["bsk-gravityforms-blacklist"],"smartcrm_documenti":["wp-smart-crm-invoices-free"],"rss_settings":["wp-rss-importer"],"l2hbibtex":["latex2html"],"endar_categories":["calendar-plus"],"simple_security_access_log":["simple-security"],"za_categories_to_groups":["product-add-ons-woocommerce"],"wbtm_bus_booking_list":["bus-ticket-booking-with-seat-reservation"],"banhammer":["banhammer"],"_slider":["smoothness-slider-shortcode","essential"],"awesomecustom":["ajax-awesome-css"],"endar_config":["calendar-plus"],"bsk_gfbl_items":["bsk-gravityforms-blacklist"],"za_values":["product-add-ons-woocommerce"],"smartcrm_clienti":["wp-smart-crm-invoices-free"],"za_products_to_groups":["product-add-ons-woocommerce"],"wccs_conditions":["easy-woocommerce-discounts"],"wccs_condition_meta":["easy-woocommerce-discounts"],"ukr_shipping_np_areas":["wc-ukr-shipping"],"smartcrm_values":["wp-smart-crm-invoices-free"],"shorties":["wp-shorties"],"socialbug_affiliates":["affiliate-mlm-party-plan"],"sociallink":["st-social-links"],"shorties_log":["wp-shorties"],"blog_clock":["blog-clock"],"wpss_clear":["supersonic"],"za_types":["product-add-ons-woocommerce"],"wpss_links":["supersonic"],"seatt_attendees":["simple-event-attendance"],"wpss_log":["supersonic"],"za_groups":["product-add-ons-woocommerce"],"endar":["calendar-plus"],"snippy_bits":["snippy"],"snippy_shortcode_bits":["snippy"],"snippy_shortcodes":["snippy"],"za_add_ons":["product-add-ons-woocommerce"],"inrupp_appender_db":["inrdeals-url-appender"],"smartcrm_subscriptionrules":["wp-smart-crm-invoices-free"],"smartcrm_contatti":["wp-smart-crm-invoices-free"],"social_share":["social-share-by-jm-crea"],"wpum_logins":["drp-wordpress-user-management"],"lbs_lightbox":["lightbox-by-supsystic"],"awsomnews":["awsom-news-announcement"],"_wpptpopups":["wp-tactical-popup"],"e37_form_kv":["core37-form-builder"],"wpum_banned_ips":["drp-wordpress-user-management"],"_wpptdisplay_rules":["wp-tactical-popup"],"ess_tokens":["codeswholesale-for-woocommerce"],"wpum_online_users":["drp-wordpress-user-management"],"vxcf_ccontact":["cf7-constant-contact"],"vxcf_ccontact_log":["cf7-constant-contact"],"ukr_shipping_np_cities":["wc-ukr-shipping"],"lbs_modules":["lightbox-by-supsystic"],"lbs_modules_type":["lightbox-by-supsystic"],"lbs_usage_stat":["lightbox-by-supsystic"],"sovstack_stats":["security-safe"],"smartcrm_agenda":["wp-smart-crm-invoices-free"],"ukr_shipping_np_warehouses":["wc-ukr-shipping"],"sb_integrations":["affiliate-mlm-party-plan"],"vxcf_ccontact_accounts":["cf7-constant-contact"],"e37_form_sessions":["core37-form-builder"],"vxc_zoho_log":["woo-zoho"],"qards_layout":["qards-free"],"qards_component":["qards-free"],"cs_posts":["clicksold-wordpress-plugin"],"searchengine_keywords":["search-engine"],"custom_cms_block":["wp-custom-cms-block"],"woocommerce_custom_order_data":["woocommerce-custom-order-data"],"searchengine_links":["search-engine"],"woocommerce_cpsi":["corvuspay-woocommerce-integration"],"zan":["wp-zan"],"vxc_zoho_accounts":["woo-zoho"],"wpgreet_cards":["wp-greet"],"statrix":["statrix"],"_downloads":["photo-video-store"],"qards_ss":["qards-free"],"_elasticsearch":["photo-video-store"],"_filestorage_files":["photo-video-store"],"custom_website_data":["simple-custom-website-data"],"amhall_result":["eexamhall"],"stock_engines":["stock-engine"],"compare_tables_values":["wp-compare-tables"],"arlo_categories":["arlo-training-and-event-management-system"],"arlo_async_tasks":["arlo-training-and-event-management-system"],"searchengine_cronjobs":["search-engine"],"arlo_async_task_data":["arlo-training-and-event-management-system"],"_filestorage_logs":["photo-video-store"],"arete_wp_smileys_manage":["post-and-page-reactions"],"_examinations":["photo-video-store"],"arete_wp_smileys":["post-and-page-reactions"],"arete_wp_smiley_settings":["post-and-page-reactions"],"_filestorage":["photo-video-store"],"_ffmpeg_cron":["photo-video-store"],"searchengine_groups":["search-engine"],"searchengine_index":["search-engine"],"qards_subscriber":["qards-free"],"qards_resource":["qards-free"],"qards_layout_component":["qards-free"],"gen_news_slider_widgets":["wp-news-slider-widgets"],"wpgreet_stats":["wp-greet"],"pwreclamaciones":["libro-de-reclamaciones"],"mscr_intrusions":["mute-screamer"],"appten_imagerotator":["appten-image-rotator"],"mrt_sms_carrier":["wordpress-text-message"],"vw_vprooms":["videowhisper-video-presentation"],"wls_areas":["wp-curriculo-vitae"],"tp_daten":["terminplaner"],"wls_curriculo":["wp-curriculo-vitae"],"wls_curriculo_options":["wp-curriculo-vitae"],"game_servers":["game-server-status"],"tp_teilnehmer":["terminplaner"],"afb_feedbacks":["anyway-feedback"],"pushlive":["pushlive"],"tp_term_status":["terminplaner"],"_documents_types":["photo-video-store"],"tp_termine":["terminplaner"],"ct_clients":["clients"],"mpc_categories":["misiek-page-category"],"mpc_pages_categories":["misiek-page-category"],"wmcc_relationships":["wp-multisite-content-copier"],"sticky_social_icon":["sticky-social-icon"],"amhall_quiz":["eexamhall"],"zaki_like_dislike_comments":["zaki-like-dislike-comments"],"bws_rating":["rating-bws"],"cube_3d_sliders":["cube-3d-slider"],"searchengine_templates":["search-engine"],"ctmdcd_settings":["doctor-appointment-booking"],"tpress":["twitpress"],"ctmdcd_prescription":["doctor-appointment-booking"],"searchengine_log":["search-engine"],"amhall_question":["eexamhall"],"vw_vpsessions":["videowhisper-video-presentation"],"searchengine_queue":["search-engine"],"searchengine_search":["search-engine"],"searchengine_sites":["search-engine"],"proto_masonry_grids":["featured-image-pro"],"mrt_sms_list":["wordpress-text-message"],"ctmdcd_patient":["doctor-appointment-booking"],"wl_list":["page-whitelists"],"wl_list_page":["page-whitelists"],"ctmdcd_country":["doctor-appointment-booking"],"ctmdcd_chamber":["doctor-appointment-booking"],"ctmdcd_appointment":["doctor-appointment-booking"],"_currency":["photo-video-store"],"_documents":["photo-video-store"],"mrt_sms_queue":["wordpress-text-message"],"compare_tables_rows":["wp-compare-tables"],"_items":["photo-video-store"],"compare_tables_columns":["wp-compare-tables"],"gj_auction_category":["my-auctions-allegro-free-edition"],"arlo_import":["arlo-training-and-event-management-system"],"cnp_channeldtl":["click-pledge-connect"],"_notifications":["photo-video-store"],"_newsletter_emails":["photo-video-store"],"_newsletter":["photo-video-store"],"cnp_channelgrp":["click-pledge-connect"],"internetmarke_country_codes":["woo-dp-internetmarke"],"gjmaa_auctions":["my-auctions-allegro-free-edition"],"gj_map_category_settings":["my-auctions-allegro-free-edition"],"gj_auctions_item":["my-auctions-allegro-free-edition"],"gj_auctions_allegro":["my-auctions-allegro-free-edition"],"gj_auction_item":["my-auctions-allegro-free-edition"],"internetmarke_orders":["woo-dp-internetmarke"],"gj_allegro_settings":["my-auctions-allegro-free-edition"],"uc_user_activity":["ultra-community"],"internetmarke_page_formats":["woo-dp-internetmarke"],"cnp_forminfo":["click-pledge-connect"],"cnp_formsdtl":["click-pledge-connect"],"cnp_settingsdtl":["click-pledge-connect"],"arlo_eventtemplates_tags":["arlo-training-and-event-management-system"],"arlo_eventtemplates_presenters":["arlo-training-and-event-management-system"],"internetmarke_product_list":["woo-dp-internetmarke"],"invitations":["wordpress-mu-secure-invites"],"invitebox":["refer-a-friend-widget-for-wp"],"sms_ovh_numeros":["sms-ovh"],"sms_ovh_messages":["sms-ovh"],"ios_icons":["ios-icons-for-wordpress"],"_3wp_logintracker_login_stats":["threewp-login-tracker"],"uc_group_users":["ultra-community"],"uc_user_relations":["ultra-community"],"ip2c_countries":["ip-to-country"],"arlo_import_parts":["arlo-training-and-event-management-system"],"cm_paypal_fields":["custom-user-contact-form-builder"],"cm_paypal_logs":["custom-user-contact-form-builder"],"arlo_log":["arlo-training-and-event-management-system"],"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"],"_orders_content":["photo-video-store"],"_orders":["photo-video-store"],"ue1_cache":["upcoming-events"],"ss_postmeta":["social-streams"],"ss_posts":["social-streams"],"ssb_data":["ultimate-bar"],"gjmaa_categories":["my-auctions-allegro-free-edition"],"arlo_import_lock":["arlo-training-and-event-management-system"],"scfui_boxes":["betta-boxes-cms"],"scfui_fields":["betta-boxes-cms"],"_3wp_logintracker_logins":["threewp-login-tracker"],"rbrurls_redirect":["role-based-redirect"],"uci_widgets":["wp-universal-exchange-informer"],"uci_nbu_rates":["wp-universal-exchange-informer"],"uci_nbm_rates":["wp-universal-exchange-informer"],"uci_nbk_rates":["wp-universal-exchange-informer"],"uci_nbg_rates":["wp-universal-exchange-informer"],"uci_nbb_rates":["wp-universal-exchange-informer"],"uci_cbu_rates":["wp-universal-exchange-informer"],"uci_cbr_rates":["wp-universal-exchange-informer"],"uci_cba_rates":["wp-universal-exchange-informer"],"ip2c_addresses":["ip-to-country"],"ip2c_ipv6":["ip-to-country"],"stafflist_meta":["stafflist"],"_licenses":["photo-video-store"],"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_blocked_urls":["media-net-ads-manager"],"mnet_external_ad":["media-net-ads-manager"],"mnet_log_retry":["media-net-ads-manager"],"mnet_slot_blocked_urls":["media-net-ads-manager"],"community_lite_permissions":["avchat-3"],"arlo_contentfields":["arlo-training-and-event-management-system"],"_lightboxes_files":["photo-video-store"],"_lightboxes_admin":["photo-video-store"],"_lightboxes":["photo-video-store"],"_languages":["photo-video-store"],"mnet_ad_slots":["media-net-ads-manager"],"amhall_subject":["eexamhall"],"_invoices":["photo-video-store"],"_gateway_segpay":["photo-video-store"],"_gateway_jvzoo":["photo-video-store"],"_gateway_epoch":["photo-video-store"],"_gateway_clickbank":["photo-video-store"],"mo_gauth_user_details":["miniorange-google-authenticator"],"_galleries_photos":["photo-video-store"],"_galleries":["photo-video-store"],"_friends":["photo-video-store"],"mo_sp_attributes":["miniorange-wp-as-saml-idp"],"mo_sp_data":["miniorange-wp-as-saml-idp"],"compare_tables":["wp-compare-tables"],"stafflist":["stafflist"],"mnet_ad_tags":["media-net-ads-manager"],"mnet_ad_post_mapping":["media-net-ads-manager"],"sms_ovh_historique":["sms-ovh"],"gimaps_lite":["google-interactive-maps-lite"],"sms_ovh_categories":["sms-ovh"],"bp_bet_options":["betpress"],"scistbl":["simple-code-insert-shortcode"],"radslide_slideshow":["radslide"],"radslide_slide":["radslide"],"bp_bet_events_cats":["betpress"],"bp_bet_events":["betpress"],"autolink":["wp-autolink"],"screenreader_config":["screen-reader-with-fontsize"],"quotes":["yummi-quotes"],"scrollrevealjs":["scrollrevealjs-effects"],"bot_nodes":["giga-messenger-bots"],"bot_messages":["giga-messenger-bots"],"arlo_eventtemplates_categories":["arlo-training-and-event-management-system"],"mnet_ad_paragraph_mapping":["media-net-ads-manager"],"arlo_eventtemplates":["arlo-training-and-event-management-system"],"bot_leads_meta":["giga-messenger-bots"],"bot_leads":["giga-messenger-bots"],"bot_instances":["giga-messenger-bots"],"arlo_events_tags":["arlo-training-and-event-management-system"],"arlo_events_presenters":["arlo-training-and-event-management-system"],"arlo_events":["arlo-training-and-event-management-system"],"_models_files":["photo-video-store"],"_models":["photo-video-store"],"_messages":["photo-video-store"],"_media":["photo-video-store"],"vw_2wrooms":["webcam-2way-videochat"],"community_lite_general_settings":["avchat-3"],"vw_2wsessions":["webcam-2way-videochat"],"wpgft_data":["wp-gift-cert"],"cw_teams":["wp-clanwars"],"free_quotation_tags":["free-quotation"],"easy_pie_ibc_entities":["site-watch"],"dxservers":["multiplayer-plugin"],"dyamar_polls":["dyamar-polls"],"dyamar_polls_answers":["dyamar-polls"],"planification":["wp-planification"],"places":["simplified-google-maps-light"],"excitel_":["excitel-click-to-call"],"sil_rss":["external-rss-reader"],"anwpfl_players":["football-leagues-by-anwppro"],"anwpfl_matches":["football-leagues-by-anwppro"],"sil_rss_by_category":["external-rss-reader"],"sil_rss_categories":["external-rss-reader"],"easy_pie_ibc_contacts":["site-watch"],"easy_pie_ibc_events":["site-watch"],"plg_administrator":["plugincheck"],"easy_pie_ibc_public_ids":["site-watch"],"phpleague_team":["phpleague"],"phpleague_table_prediction":["phpleague"],"phpleague_table_chart":["phpleague"],"phpleague_table_cache":["phpleague"],"ocrb_backup":["wprecovery"],"phpleague_player_team":["phpleague"],"phpleague_player_data":["phpleague"],"phpleague_player":["phpleague"],"phpleague_match":["phpleague"],"time_user":["dynamic-time"],"time_period":["dynamic-time"],"pa_results":["wp-athletics"],"plg_options_meta":["plugincheck"],"time_config":["dynamic-time"],"wapg_coin_addresses":["woo-altcoin-payment-gateway"],"alc_link":["alc"],"notes":["site-notes"],"walm_links":["affiliate-links-manager"],"now_reading":["now-reading-reloaded","now-reading-redux"],"pluginsl_related_articles":["related-articles"],"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"],"kento_wp_stats_online":["kento-wp-stats"],"kento_wp_stats":["kento-wp-stats"],"showtwitterfol":["show-twitter-followers"],"dxgames":["multiplayer-plugin"],"wapg_coin_offers":["woo-altcoin-payment-gateway"],"wapg_coin_transactions":["woo-altcoin-payment-gateway"],"wapg_coins":["woo-altcoin-payment-gateway"],"better_login_security_history":["better-login-security-and-history"],"beifen":["bei-fen"],"pls":["parallel-loading-system"],"wc_bkash":["woocommerce-bkash"],"jp_advancedrss_cache":["advanced-rss"],"alc_redirectlog":["alc"],"dswr_lists":["da-stop-word-removal"],"dswr_words":["da-stop-word-removal"],"jp_advancedrss_templates":["advanced-rss"],"jp_journals":["journalpress"],"time_entry":["dynamic-time"],"phpleague_league":["phpleague"],"noptin_subscriber_meta":["newsletter-optin-box"],"paygreen_transactions":["paygreen-woocommerce"],"talentlms_products":["talentlms"],"sldr_slide":["slider-bws"],"talentlms_products_categories":["talentlms"],"sldr_slider":["slider-bws"],"envato_items_sales":["nd-stats-for-envato-sales-by-item"],"osd_subscribe":["osd-subscribe"],"osd_subscribe_categories":["osd-subscribe"],"anderson_makiyama_programacao_djs_programas":["programacao-djs"],"anderson_makiyama_programacao_djs_programacao":["programacao-djs"],"anderson_makiyama_programacao_djs_djs":["programacao-djs"],"elfsight_facebook_feed_widgets":["elfsight-facebook-feed"],"paymentgatewaytranx":["remita-payment-gateway"],"paygreen_recurring_transactions":["paygreen-woocommerce"],"talentlms_categories":["talentlms"],"paygreen_fingerprint":["paygreen-woocommerce"],"osf_nodes":["omni-secure-files"],"paygreen_categories_has_payments":["paygreen-woocommerce"],"jsprtachv_stages_val":["joomsport-achievements"],"jsprtachv_stages":["joomsport-achievements"],"jsprtachv_stage_result":["joomsport-achievements"],"pageblocks_pages_config":["page-blocks"],"jsprtachv_results_fields":["joomsport-achievements"],"jsprtachv_extra_select":["joomsport-achievements"],"jsprtachv_extra_fields":["joomsport-achievements"],"jsprtachv_country":["joomsport-achievements"],"wpb_content":["wp-blocks"],"talentlms_courses":["talentlms"],"sldr_relation":["slider-bws"],"odudecard_view":["odude-ecard"],"pegasaas_page_config":["pegasaas-accelerator-wp"],"phpleague_fixture":["phpleague"],"phpleague_country":["phpleague"],"phpleague_club":["phpleague"],"anti_haxtool":["anti-hacking-tools"],"easysiteimporter":["easy-site-importer"],"wpa_event":["wp-athletics"],"wpa_event_cat":["wp-athletics"],"ebanx_logs":["ebanx-payment-gateway-for-woocommerce"],"wpa_log":["wp-athletics"],"wpa_result":["wp-athletics"],"pegasaas_static_asset":["pegasaas-accelerator-wp"],"pegasaas_performance_scan":["pegasaas-accelerator-wp"],"pegasaas_page_cache":["pegasaas-accelerator-wp"],"orbis_projects":["orbis"],"pegasaas_api_request":["pegasaas-accelerator-wp"],"openhour":["wp-open-hours"],"amber_activity":["amberlink"],"amber_cache":["amberlink"],"amber_check":["amberlink"],"amber_queue":["amberlink"],"jv_notification_log":["wp-jv-custom-email-settings"],"amen_prayers":["amen"],"amen_requests":["amen"],"sldr_category":["slider-bws"],"orbis_companies":["orbis"],"orbis_log":["orbis"],"noptin_subscribers":["newsletter-optin-box"],"no_disposable_email":["no-disposable-email"],"free_quotation_kris_iv":["free-quotation"],"bm_stats":["banner-manager"],"_category_stock":["photo-video-store"],"daily_stats":["slide-banners","expandable-banners","push-down-banners"],"_category_items":["photo-video-store"],"_category":["photo-video-store"],"woocommerce_yapay_intermediador_request":["woo-yapay"],"woocommerce_yapay_intermediador_response":["woo-yapay"],"woocommerce_yapay_intermediador_transactions":["woo-yapay"],"wcdpi_t_app_service_provider":["woo-dp-internetmarke"],"wcdpi_t_app_service_feature":["woo-dp-internetmarke"],"wcdpi_t_app_service":["woo-dp-internetmarke"],"_carts_content":["photo-video-store"],"izoomimage":["wp-imagezoom"],"_carts":["photo-video-store"],"_collections_items":["photo-video-store"],"_audio_types":["photo-video-store"],"poststats_visits":["wp-post-real-time-statistics"],"izoomparam":["wp-imagezoom"],"_audio_source":["photo-video-store"],"_audio_format":["photo-video-store"],"nb_data":["infobar"],"nb_nottypes":["infobar"],"wcdpi_shipment_item":["woo-dp-internetmarke"],"wcdpi_shipment_attachment":["woo-dp-internetmarke"],"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"],"_collections":["photo-video-store"],"_colors":["photo-video-store"],"_audio_fields":["photo-video-store"],"cw_matches":["wp-clanwars"],"muv_sh_intversion":["muv-hide-preview","muv-youtube-datenschutz","muv-kundenkonto"],"wpsi_files":["wp-smart-import"],"wpsi_imports":["wp-smart-import"],"wsmea_conditional_payment_methods":["conditional-payment-methods-for-woocommerce"],"wpsi_posts":["wp-smart-import"],"primer_data":["primer-by-chloedigital"],"price_ui_slider":["ui-slider-filter-by-price"],"ahm_qt_tab_groups":["quick-tabs"],"ahm_qt_tabs":["quick-tabs"],"mwp_forms_free":["mwp-forms"],"cw_games":["wp-clanwars"],"cw_maps":["wp-clanwars"],"cw_rounds":["wp-clanwars"],"_commission":["photo-video-store"],"_credits_list":["photo-video-store"],"_credits":["photo-video-store"],"_coupons_types":["photo-video-store"],"_content_type":["photo-video-store"],"premmerce_pinterest":["premmerce-woocommerce-pinterest"],"cm_front_users":["custom-user-contact-form-builder"],"preferences":["simplified-google-maps-light"],"_content_filter":["photo-video-store"],"fny_sharebuttons":["fny-social-media-share-buttons"],"_components":["photo-video-store"],"myshouts":["myshouts-shoutbox"],"posted_display":["wp-posted-display"],"_affiliates_stats":["photo-video-store"],"nmmpro_payments":["nomiddleman-crypto-payments-for-woocommerce"],"dpd_barcodes":["woo-shipping-dpd-baltic"],"wcdpi_shipment":["woo-dp-internetmarke"],"wow_side_menu_pro":["side-menu-lite"],"wcdpi_product_sales":["woo-dp-internetmarke"],"jcorgcr_categories":["jaspreetchahals-coupons-lite"],"jcorgcr_coupons":["jaspreetchahals-coupons-lite"],"nfpd":["no-frills-prize-draw"],"nfpd_entries":["no-frills-prize-draw"],"alc_address":["alc"],"ernal_link_info":["seo-internal-link-building"],"r_contacts":["intrigger"],"r_stats":["intrigger"],"dpd_manifests":["woo-shipping-dpd-baltic"],"wow_sbmp":["slide-menu"],"dpd_terminals":["woo-shipping-dpd-baltic"],"wcdpi_product_basic":["woo-dp-internetmarke"],"jfc":["jquery-featured-content-gallery"],"wcdpi_product_additional":["woo-dp-internetmarke"],"wcdpi_page_format":["woo-dp-internetmarke"],"wcdpi_country":["woo-dp-internetmarke"],"wpcm_menu_props":["wp-easy-bubble-menu"],"faq_questions":["tf-faq"],"dropshipapikey":["inventory-source-dropship-automation"],"wpcm_menu_links":["wp-easy-bubble-menu"],"faq_categories":["tf-faq"],"nmmpro_carousel":["nomiddleman-crypto-payments-for-woocommerce"],"nmmpro_hd_addresses":["nomiddleman-crypto-payments-for-woocommerce"],"feature_request":["feature-request"],"kushmicronews":["kush-micro-news"],"wpdmp_marker_descr":["wp-design-maps-places"],"_affiliates_signups":["photo-video-store"],"_administrators_stats":["photo-video-store"],"bm_groups":["banner-manager"],"wordpresssentinel_file":["wordpress-sentinel"],"wordpresssentinel_section":["wordpress-sentinel"],"worx_faq":["wpworx-faq"],"worx_files":["wpworx-faq"],"wpe_twitter":["wp-essentials"],"netgocarousel":["netgo-horizontal-carousel"],"worx_trending":["wpworx-faq"],"wpdmp_ref_point":["wp-design-maps-places"],"popupfadpopup":["cool-fade-popup"],"popup_banners_subscription_log":["wp-popup-lite"],"feedbacks":["design-feedback","rate-this-page-plugin"],"popup_banners_form_log":["wp-popup-lite"],"bm_banners":["banner-manager"],"popular_posts_statistics":["most-popular-posts-widget-lite"],"wpdmp_marker":["wp-design-maps-places"],"wpdmp_map_marker":["wp-design-maps-places"],"wpdmp_map":["wp-design-maps-places"],"djo_cache":["dejureorg-vernetzungsfunktion"],"fgcf_form_table":["contact-popup"],"ff_schema_cache":["flowfact-wp-connector"],"ff_general_cache":["flowfact-wp-connector"],"ff_entity_cache":["flowfact-wp-connector"],"ff_customer_cache":["flowfact-wp-connector"],"cm_notes":["custom-user-contact-form-builder"],"ngg_upload_queue":["nextgen-public-image-uploader"],"cm_forms":["custom-user-contact-form-builder"],"arlo_venues":["arlo-training-and-event-management-system"],"_voteitems_users":["photo-video-store"],"checkout_customer_cards":["checkout-non-pci-woocommerce-gateway"],"_voteitems2":["photo-video-store"],"_voteitems":["photo-video-store"],"_video_types":["photo-video-store"],"maxv_social_accounts_log":["slm-facebook-autoposter","twitter-slm"],"usertracker":["usertracker"],"cilw_icos":["crypto-ico-list-widget"],"arlo_timezones":["arlo-training-and-event-management-system"],"chatwee_moderators":["chatwee"],"arlo_tags":["arlo-training-and-event-management-system"],"arlo_presenters":["arlo-training-and-event-management-system"],"arlo_onlineactivities_tags":["arlo-training-and-event-management-system"],"h5pxapikatchu_verb":["h5pxapikatchu"],"h5pxapikatchu_result":["h5pxapikatchu"],"h5pxapikatchu_object":["h5pxapikatchu"],"_video_rendering":["photo-video-store"],"_video_ratio":["photo-video-store"],"h5pxapikatchu_actor":["h5pxapikatchu"],"chatwee_pages_to_display":["chatwee"],"chatwee_log":["chatwee"],"cjaddons_data":["cssjockey-add-ons"],"cex_savedsenders":["correos-express"],"rich_web_gallery_effects_data":["gallery-image-gallery-photo"],"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_savedships":["correos-express"],"cgm_cal_tags":["cgm-event-calendar"],"bs_formdata":["form-creation-for-bootstrap"],"map_addresses":["map-contact"],"map_settings":["map-contact"],"_wwa_plugin_alerts":["wwa-advanced-wp-security"],"maps":["simplified-google-maps-light"],"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"],"mcpd_currency":["multi-currency-paypal-donations"],"h5pxapikatchu":["h5pxapikatchu"],"rich_web_gallery_effects_data_2":["gallery-image-gallery-photo"],"bp_sports":["betpress"],"_translations":["photo-video-store"],"gts_translated_terms":["gts-translation"],"gts_translated_posts":["gts-translation"],"gts_translated_options":["gts-translation"],"wcup_prediction":["world-cup-predictor"],"wcup_match":["world-cup-predictor"],"sptk_page_cache":["squeeze-page-toolkit"],"_testimonials":["photo-video-store"],"bp_slips":["betpress"],"vr_fr_temas":["vr-frases"],"gs_like_post":["wp-like-post"],"linkremoved":["post-internal-link-removal"],"linkoptimizer_linksets":["link-optimizer-lite"],"_terms":["photo-video-store","awesome-studio"],"_templates_admin_home":["photo-video-store"],"_tax_regions":["photo-video-store"],"_tax":["photo-video-store"],"_support_tickets":["photo-video-store"],"_support":["photo-video-store"],"user_stats":["user-login-stat"],"vr_fr_frases":["vr-frases"],"actionnetwork":["wp-action-network"],"_video_format":["photo-video-store"],"actionnetwork_queue":["wp-action-network"],"cjaddons_options":["cssjockey-add-ons"],"classroom_shared_users":["html5-virtual-classroom"],"classroom_shorturl":["html5-virtual-classroom"],"social_rocket_count_data":["social-rocket"],"arlo_onlineactivities":["arlo-training-and-event-management-system"],"arlo_offers":["arlo-training-and-event-management-system"],"_video_frames":["photo-video-store"],"_video_fields":["photo-video-store"],"user_visits_log":["user-visit-log"],"_vector_types":["photo-video-store"],"arlo_messages":["arlo-training-and-event-management-system"],"_users_fields":["photo-video-store"],"social_links_sidebar":["social-links-sidebar"],"_user_category":["photo-video-store"],"wcup_venue":["world-cup-predictor"],"wcup_team":["world-cup-predictor"],"wcup_stage":["world-cup-predictor"],"vr_fr_clases":["vr-frases"],"rich_web_gallery_effects_data_1":["gallery-image-gallery-photo"],"rich_web_gallery_font_family":["gallery-image-gallery-photo"],"linkmeta":["external-events-calendar","simply-social-links"],"webdesignby_musicbox":["musicbox"],"rncbc_court":["tennis-court-bookings"],"rncbc_calendar":["tennis-court-bookings"],"lydl_posts":["fl3r-feelbox","moodthingy-mood-rating-widget"],"lydl_poststimestamp":["fl3r-feelbox","moodthingy-mood-rating-widget"],"trix_table":["statrix"],"re_locator_country":["wp-multi-store-locator"],"sortsearchresult":["sort-searchresult-by-title"],"rua_blog_subscriber":["rua-blog-subscriber-lite"],"webdesignby_musicbox_musicbox_tracks_assoc":["musicbox"],"bw_videos":["blue-wrench-videos-widget"],"webdesignby_musicbox_tracks":["musicbox"],"wps_statistic":["wps-visitor-counter"],"wps_st_options":["wps-visitor-counter"],"buymeapie_recipe_theme":["recipe-schema-markup"],"carsellers_requests":["cars-seller-auto-classifieds-script"],"sodahead_templates":["sodahead-polls"],"rk_contact":["rk-responsive-contact-form"],"buymeapie_recipe_recipe":["recipe-schema-markup"],"mail_catcher_logs":["wp-mail-catcher"],"rncbc_reservation":["tennis-court-bookings"],"ws_alipay_templatesmeta":["alipay"],"category_subdomains":["wordpress-subdomains","wp-subdomains-revisited"],"virtualclassroom_teacher":["html5-virtual-classroom"],"visitors_stat":["wp-visitors-widget"],"ws_alipay_products":["alipay"],"ws_alipay_productsmeta":["alipay"],"ws_alipay_ordersmeta":["alipay"],"ws_alipay_templates":["alipay"],"ws_alipay_orders":["alipay"],"accredible_mapping":["accredible-certificates"],"wrt_tabs_settings":["responsive-horizontal-vertical-and-accordion-tabs"],"virtualclassroom_shorturl":["html5-virtual-classroom"],"lsp_redirects":["best-local-seo-tools"],"virtualclassroom_shared_users":["html5-virtual-classroom"],"virtualclassroom_settings":["html5-virtual-classroom"],"virtualclassroom_purchase":["html5-virtual-classroom"],"virtualclassroom_email_template_settings":["html5-virtual-classroom"],"virtualclassroom_acl":["html5-virtual-classroom"],"logincustomizer":["simple-login-page-customizer"],"lsp_linkpoints":["best-local-seo-tools"],"lsp_localprojects":["best-local-seo-tools"],"webolatory_changelog":["wp-changelog"],"cm_fields":["custom-user-contact-form-builder"],"a3_portfolio_categorymeta":["a3-portfolio"],"hatchbuck_shortcode":["hatchbuck"],"qotd":["cd-qotd"],"salesup_campos":["formularios-de-contacto-salesup"],"salesup_formularios":["formularios-de-contacto-salesup"],"salesup_token_integracion":["formularios-de-contacto-salesup"],"bucketlist_task":["bucket-list"],"bucketlist_bucket":["bucket-list"],"ie_css":["ie-css-definer"],"ljlongtailseo":["lj-longtail-seo"],"hayyabuild_map":["hayyabuild"],"a3_portfolio_attributes":["a3-portfolio"],"webtechglobal_log":["youtube-sidebar","wtg-tasks-manager"],"maincount":["countposts-v-10-wordpress-plugin"],"rich_web_gallery_image_manager":["gallery-image-gallery-photo"],"rich_web_gallery_image_instal":["gallery-image-gallery-photo"],"rich_web_gallery_id":["gallery-image-gallery-photo"],"bs_postdata":["form-creation-for-bootstrap"],"bs_options":["form-creation-for-bootstrap"],"_wwa_plugin_live_traffic":["wwa-advanced-wp-security"],"hayyabuild":["hayyabuild"],"arval_redirects":["wp-simple-redirect"],"categorymeta":["bilingual-linker"],"wrt_tabs":["responsive-horizontal-vertical-and-accordion-tabs"],"vnr_visitors":["the-visitor-counter"],"re_locator_state":["wp-multi-store-locator"],"re_locator_transactions":["wp-multi-store-locator"],"locations":["geo-multi-location-map","instant-locations","google-map-latitude-and-longitude"],"rw_gallery_effect1":["gallery-image-gallery-photo"],"asfb_cache":["advanced-search-form-builder"],"rw_gallery_effect2":["gallery-image-gallery-photo"],"as_tejus_crsl_thrd":["multicarousel"],"wpr_views_per_day":["wp-ranking-pro"],"cbxwpbookmark":["cbxwpbookmark"],"arval_targets":["wp-simple-redirect"],"cbxwpbookmarkcat":["cbxwpbookmark"],"wpr_views":["wp-ranking-pro"],"wpr_ranking":["wp-ranking-pro"],"cc_odoo_integrator_field_mapping":["wp-odoo-form-integrator"],"cc_odoo_integrator_forms":["wp-odoo-form-integrator"],"wpr_http_user_agents":["wp-ranking-pro"],"as_tejus_crsl_sec":["multicarousel"],"as_tejus_crsl":["multicarousel"],"rich_web_questions":["gallery-image-gallery-photo"],"linkoptimizer_links":["link-optimizer-lite"],"inic_testimonial_widget":["indianic-testimonial"],"ulisting_listing_attribute_relationships":["ulisting"],"ulisting_listing_user_relations":["ulisting"],"ulisting_page_statistics":["ulisting"],"ulisting_page_statistics_meta":["ulisting"],"_products_options":["photo-video-store"],"_prints_previews":["photo-video-store"],"addpub":["wp-addpub"],"ulisting_listing_type_relationships":["ulisting"],"ulisting_listing_plan":["ulisting"],"_pwinty_prints":["photo-video-store"],"sr_room_type_extra_xref":["solidres"],"sr_media_roomtype_xref":["solidres"],"sr_reservation_asset_fields":["solidres"],"_rights_managed":["photo-video-store"],"inlinks_data":["inlinks-ad-plugin"],"bp_paypal":["betpress"],"sr_reservation_room_details":["solidres"],"ulisting_payment_meta":["ulisting"],"ulisting_payment":["ulisting"],"_rights_managed_structure":["photo-video-store"],"_rights_managed_options":["photo-video-store"],"_payout":["photo-video-store"],"ulisting_attribute":["ulisting"],"bp_cp_galleries":["buddypress-easy-albums-photos-video-and-music-next-gen","buddypress-easy-albums-photos-video-and-music"],"wh_testimonials":["wh-testimonials"],"sr_room_type_fields":["solidres"],"_rights_managed_groups":["photo-video-store"],"ulisting_attribute_relationsh_meta":["ulisting"],"ulisting_attribute_term_relationships":["ulisting"],"_sizes":["photo-video-store"],"admanager":["ad-manager"],"google_calendar":["google-calendar-plugin","calendar-plugin"],"sr_reservation_notes":["solidres"],"upb_field":["ultimate-profile-builder"],"limit_attempts_booster":["limit-attempts-booster"],"global_variable":["wp-global-variable"],"sr_extras":["solidres"],"sr_reservation_room_xref":["solidres"],"sr_reservation_room_extra_xref":["solidres"],"inic_testimonial":["indianic-testimonial"],"_printful_prints":["photo-video-store"],"_prints":["photo-video-store"],"upb_fields":["ultimate-profile-builder"],"sr_customer_groups":["solidres"],"inic_testimonial_template":["indianic-testimonial"],"upb_group":["ultimate-profile-builder"],"upb_option":["ultimate-profile-builder"],"upb_values":["ultimate-profile-builder"],"sr_currencies":["solidres"],"sr_coupons":["solidres"],"_products_options_items":["photo-video-store"],"_pwinty":["photo-video-store"],"sr_room_type_coupon_xref":["solidres"],"_pwinty_orders":["photo-video-store"],"gjmaa_settings":["my-auctions-allegro-free-edition"],"bp_profilevisits":["buddypress-profile-views"],"gps_locations":["gps-tracker","gps-plotter"],"sr_media_reservation_assets_xref":["solidres"],"_prints_items":["photo-video-store"],"sr_geo_states":["solidres"],"_shipping_regions":["photo-video-store"],"limit_attempts_booster_meta":["limit-attempts-booster"],"limit_attempts_booster_ip_locations":["limit-attempts-booster"],"sr_reservations":["solidres"],"sr_countries":["solidres"],"_prints_categories":["photo-video-store"],"ulisting_search":["ulisting"],"sr_config_data":["solidres"],"greatrealestate_listings":["great-real-estate"],"gjmaa_profiles":["my-auctions-allegro-free-edition"],"ulisting_user_plan_meta":["ulisting"],"_shipping":["photo-video-store"],"_packages":["photo-video-store"],"sr_categories":["solidres"],"gjmaa_mapcategory_settings":["my-auctions-allegro-free-edition"],"sr_sessions":["solidres"],"sr_tariffs":["solidres"],"_printful_orders":["photo-video-store"],"remarkety_carts_guests":["remarkety-for-woocommerce"],"_subscription_list":["photo-video-store"],"sr_reservation_assets":["solidres"],"_packages_list":["photo-video-store"],"_shipping_ranges":["photo-video-store"],"ult_marketo_forms":["ultimate-marketo-forms"],"sr_reservation_extra_xref":["solidres"],"remove_handled":["wp-remove-css-js"],"gps_logger":["gps-tracker","gps-plotter"],"_packages_files":["photo-video-store"],"_search_history":["photo-video-store"],"_photos_formats":["photo-video-store"],"sr_taxes":["solidres"],"bp_leaderboards":["betpress"],"sr_room_types":["solidres"],"_payments":["photo-video-store"],"cking_id":["useinfluence"],"sr_rooms":["solidres"],"remarkety_carts":["remarkety-for-woocommerce"],"sr_tariff_details":["solidres"],"bp_events":["betpress"],"_packages_categories":["photo-video-store"],"_photos_exif":["photo-video-store"],"ulisting_user_plan":["ulisting"],"redirectify_config":["redirectify"],"_subscription":["photo-video-store"],"ult_marketo_forms_styles":["ultimate-marketo-forms"],"rtr_lesson_notes":["training"],"rmc_options":["recherche-multi-champs"],"rtr_categories":["training"],"rtr_enrollment":["training"],"plgwpuan_config":["wp-user-access-notification","wp-admin-access-notification-telegram-sms"],"rtr_email_templates":["training"],"rtr_courses":["training"],"rtr_authors":["training"],"sm_suite":["e-mailing-service"],"svp_source_videos":["smooth-streaming-video-player"],"sm_stats_smtp":["e-mailing-service"],"wpsxp_sexy_votes":["sexy-polling"],"t4b_id_lists":["t4b-featured-slider"],"wps_woo_grid":["customize-woocommerce"],"rtr_lessons":["training"],"rtr_resource_list":["training"],"anyguide_short_code":["anyguide"],"pl_urls":["pageloader"],"rtr_project_exercise":["training"],"swms_scanner_manage":["sitesassure-wp-malware-scanner"],"rtr_projects":["training"],"sm_temps":["e-mailing-service"],"rtr_setting":["training"],"sidebar":["sidebar-adder"],"wpsa_subscribe_author":["wp-subscribe-author"],"svp_source_types":["smooth-streaming-video-player"],"sp_survey_user_info":["wp-survey-plus"],"rtr_resource_status":["training"],"sw_menuobfuscator":["menu-obfuscator"],"wpbph_ip_table":["purple-heart-rating-free"],"sudo_users":["sudo-oauth"],"rtr_modules":["training"],"svp_sources":["smooth-streaming-video-player"],"srty_split_tests":["shorty-lite"],"easy_custom_js_and_css_filters":["easy-custom-js-and-css"],"tipp":["wp-championship"],"team":["wp-championship"],"rmc_champs":["recherche-multi-champs"],"plgsgwbm_config":["website-blacklist-monitor"],"rtr_media":["training"],"pl_emails":["pageloader"],"match":["wp-championship"],"easy_custom_js_and_css":["easy-custom-js-and-css"],"sies_emails":["email-subscription-with-secure-captcha"],"captcha":["msstiger"],"earthquakewidget":["earthquakemonitor"],"zsys_access_php":["nubuilder-forte"],"bea_media_analytics":["bea-media-analytics"],"tippgroup":["wp-championship"],"cb_codes":["commons-booking"],"bp_group_tinychat_online":["bp-group-tinychat"],"bp_group_tinychat":["bp-group-tinychat"],"socialbooster_gptable":["social-booster"],"wpcm_lecturers":["wp-course-manager"],"ask_votes":["voter-plugin"],"wpcm_courses":["wp-course-manager"],"wpcm_course_holders":["wp-course-manager"],"shop_tax_rate":["orillacart"],"cb_bookings":["commons-booking"],"cb_timeframes":["commons-booking"],"surveys_extended_survey":["surveys-extended"],"surveys_questions":["wp-surveys"],"surveys_responses":["wp-surveys"],"socialbooster_instable":["social-booster"],"bp_gift_addons_meta":["gift-buddypress-addons"],"suwp_network":["stockunlocks"],"shop_termmeta":["orillacart"],"plusoblocks_relationships":["share-pluso"],"plusoblocks":["share-pluso"],"shop_tax_group":["orillacart"],"buybooks":["author-showcase"],"socialbooster_postnowtable":["social-booster"],"cbxpoll_votes":["cbxpoll"],"_place":["keyword-position-checker"],"ro_de_visitas_guestbook_table":["libro-de-visitas-guestbook"],"surveys_extended_question":["surveys-extended"],"shop_shipping_rate":["orillacart"],"shop_state":["orillacart"],"re_place":["replace"],"shop_stockroom":["orillacart"],"rdp_ll_session":["rdp-linkedin-login"],"burclar":["ninja-araclar"],"rx_sb_shdposts":["social-booster"],"cbratingsystem_user_ratings":["cbratingsystem"],"cbratingsystem_ratings_summary":["cbratingsystem"],"cbratingsystem_ratingform_settings":["cbratingsystem"],"srty_conversions_log":["shorty-lite"],"surveys_extended_result":["surveys-extended"],"wpcm_schedule":["wp-course-manager"],"socialbooster_fbtable":["social-booster"],"surveys_extended_result_answer":["surveys-extended"],"suwp_network_country":["stockunlocks"],"shop_variations":["orillacart"],"bb_apis":["author-showcase"],"srty_import_temp":["shorty-lite"],"suwp_service_model":["stockunlocks"],"cat_logo":["category-logo"],"shorturls":["tweetsuite"],"shoutbox_messages":["wp-shoutbox-live-chat"],"shoutbox_users":["wp-shoutbox-live-chat"],"bgtile":["wp-background-tile"],"srty_goals":["shorty-lite"],"ratings_result":["ratings"],"cartsguru_carts":["carts-guru"],"pluginsl_automatic_ban_ip":["automatic-ban-ip"],"srty_links":["shorty-lite"],"scf":["wp-simple-custom-form"],"srty_split_test_allocations":["shorty-lite"],"version_verses":["youversion"],"history":["dd-roles"],"plugin_logic":["plugin-logic"],"dsubscribers":["dsubscribers"],"svp_post_videos":["smooth-streaming-video-player"],"suwp_service_brand":["stockunlocks"],"pluginsl_formatting_correcter":["formatting-correcter"],"binarymlm_payout_master":["binarymlm"],"binarymlm_payout":["binarymlm"],"binarymlm_leftleg":["binarymlm"],"binarymlm_epins":["binarymlm"],"binarymlm_currency":["binarymlm"],"binarymlm_country":["binarymlm"],"binarymlm_commission":["binarymlm"],"binarymlm_bonus":["binarymlm"],"bp_easyalbums_templates":["buddypress-easy-albums-photos-video-and-music"],"cat_visibility":["category-visibility-ipeat"],"socialbooster_statustable":["social-booster"],"socialbooster_stmtable":["social-booster"],"suwp_provider_mepname":["stockunlocks"],"cattemplate_relationships":["idealien-category-enhancements"],"suwp_reward_links":["stockunlocks"],"socialbooster_twtable":["social-booster"],"big_mailchimp_lists":["bigmailchimp"],"sms_subscribers":["mediaburst-email-to-sms"],"easy_testimonial_manager":["easy-testimonial-manager"],"rss_feeder_external":["rss-feeder"],"easy_testimonial_setting":["easy-testimonial-manager"],"sln_blacklist_browsers":["secure-login-by-supsystic"],"calendarista_map":["calendarista-basic-edition"],"zsys_timezone":["nubuilder-forte"],"calendarista_holidays":["calendarista-basic-edition"],"calendarista_formelement_booked":["calendarista-basic-edition"],"zsys_translate":["nubuilder-forte"],"sln_blacklist":["secure-login-by-supsystic"],"edoc_tables":["edoc-easy-tables"],"analyticbridge_pages":["ga-popular-posts"],"sln_blacklist_countries":["secure-login-by-supsystic"],"ate_shortcode":["msstiger"],"calendarista_formelement":["calendarista-basic-edition"],"calendarista_feeds":["calendarista-basic-edition"],"calendarista_error_log":["calendarista-basic-edition"],"calendarista_coupons":["calendarista-basic-edition"],"calendarista_billing_info":["calendarista-basic-edition"],"calendarista_availability_booked":["calendarista-basic-edition"],"calendarista_availability":["calendarista-basic-edition"],"paystack_recurrent_billing":["paystack-recurrent-billing"],"paystack_recurrent_billing_codes":["paystack-recurrent-billing"],"tbl_instagramslider":["nexuslink-instagram-slider"],"calendarista_optional":["calendarista-basic-edition"],"calendarista_project":["calendarista-basic-edition"],"ecards_stats":["ecards-lite"],"eci_results":["eclipse-crossword-integration"],"nter":["aa-counter"],"calendarista_place_aggregate_cost":["calendarista-basic-edition"],"calendarista_place":["calendarista-basic-edition"],"calendarista_order":["calendarista-basic-edition"],"calendarista_optionals_booked":["calendarista-basic-edition"],"calendarista_optional_group":["calendarista-basic-edition"],"calendarista_map_booked":["calendarista-basic-edition"],"edamam_recipe_recipes":["seo-nutrition-and-print-for-recipes-by-edamam"],"scf_completions":["simple-contact-forms"],"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"],"paytpv_customer":["paytpv-for-woocommerce"],"awsompxgimagecaptions":["awsom-pixgallery"],"pay_with_venmo":["pay-with-venmo"],"tbp_modules":["supsystic-table-press"],"calendarista_reminders":["calendarista-basic-edition"],"pa_incarichi":["pafacile"],"pa_tipo_atto":["pafacile"],"js_vehiclemanager_zip":["js-vehicle-manager"],"c2pprojects":["csv-2-post"],"pa_organigramma":["pafacile"],"pa_organi_rel":["pafacile"],"sln_statistics":["secure-login-by-supsystic"],"pa_organi":["pafacile"],"pa_ordinanze":["pafacile"],"sln_usage_stat":["secure-login-by-supsystic"],"pa_determine":["pafacile"],"pa_users2org":["pafacile"],"pa_delibere":["pafacile"],"pa_bandi":["pafacile"],"pa_albopretorio":["pafacile"],"p_statistic":["wp-parsi-statistics"],"zsys_user":["nubuilder-forte"],"sm_blacklist":["e-mailing-service"],"sm_attendance":["clock-in-portal"],"egcl_transactions":["egift-card-lite"],"pa_tipo_org":["pafacile"],"pac_user":["podamibe-appointment-calendar"],"tbp_modules_type":["supsystic-table-press"],"parsi_sokhan":["parsi-sokhan"],"sln_countries":["secure-login-by-supsystic"],"tbp_rows":["supsystic-table-press"],"tbp_tables":["supsystic-table-press"],"tbp_usage_stat":["supsystic-table-press"],"tbpl_ips":["preloading"],"tbs_modules":["translate-by-supsystic"],"tbs_modules_type":["translate-by-supsystic"],"tbs_usage_stat":["translate-by-supsystic"],"tbsl_channels":["team-broadcast-status-list"],"sln_detailed_login_stat":["secure-login-by-supsystic"],"egcl_certificates":["egift-card-lite"],"sln_email_auth_codes":["secure-login-by-supsystic"],"rq":["random-quotes"],"ef_card_design":["easy-flashcards"],"srty_visits_log":["shorty-lite"],"ef_cards":["easy-flashcards"],"ef_index":["easy-flashcards"],"c2psources":["csv-2-post"],"sln_modules":["secure-login-by-supsystic"],"sln_modules_type":["secure-login-by-supsystic"],"slc_simple_login_captcha":["simple-login-captcha"],"attendance_list":["attendance-list"],"rt_buddy_views_log":["buddy-views"],"sp_rm_applications":["sp-rental-manager"],"rss_feeder_custom":["rss-feeder"],"awm":["allwebmenus-wordpress-menu-plugin"],"awm_ez_cl_options":["adwork-media-ez-content-locker"],"wptelegrampro_users":["wp-telegram-pro"],"easyreplace":["easy-replace"],"bwa_log":["better-wlm-api"],"sp_rc_rankdata":["rank-checker-by-surfing-panda"],"easyfileshop":["easyfileshop"],"sm_sr_forms":["123devis-affiliation"],"zsys_access_form":["nubuilder-forte"],"campaigns":["wordpress-donation-plugin-with-goals-and-paypal-ipn-by-nonprofitcmsorg"],"ebbs_easy_htmltype":["easy-backup-by-supsystic"],"simplepay":["simplepay-nigeria-official"],"sm_spamscore":["e-mailing-service"],"sm_sp_forms":["123devis-affiliation"],"ebbs_easy_modules":["easy-backup-by-supsystic"],"ebbs_easy_modules_type":["easy-backup-by-supsystic"],"wpbo_analytics":["betteroptin"],"easyfaq":["easy-faq"],"ebbs_easy_options_categories":["easy-backup-by-supsystic"],"rnu_acknowledgements":["read-and-understood"],"wpsb_users":["newsletter-subscription-widget-for-sendblaster"],"sp_survey_results":["wp-survey-plus"],"sp_survey_question":["wp-survey-plus"],"sp_survey":["wp-survey-plus"],"rsvp_me_respondents":["rsvp-me"],"rss_feeder_import":["rss-feeder"],"sp_rm_rentals_features":["sp-rental-manager"],"sp_rm_rentals":["sp-rental-manager"],"sm_stats_messageid":["e-mailing-service"],"sm_staffs":["clock-in-portal"],"photocontest":["wp-photocontest"],"rnu_categories":["read-and-understood"],"easy_wp_optimizer_backup":["easy-wp-optimizer"],"wpbo_failsafe":["betteroptin"],"photocontest_votes":["wp-photocontest"],"sp_rm_developments":["sp-rental-manager"],"sm_staff_category":["clock-in-portal"],"rss_feeder_custom_items":["rss-feeder"],"photocontest_config":["wp-photocontest"],"photocontest_admin":["wp-photocontest"],"ebbs_easy_options":["easy-backup-by-supsystic"],"ebcpf_custom_products":["exportfeed-list-woocommerce-products-on-ebay-store"],"ays_gallery":["gallery-photo-gallery"],"skp_posts":["skyepress"],"calendarista_staff":["calendarista-basic-edition"],"zsys_access":["nubuilder-forte"],"calendarista_settings":["calendarista-basic-edition"],"sm_log":["e-mailing-service","123devis-affiliation"],"sjs_my_surveys":["surveyjs"],"sjs_results":["surveyjs"],"skp_platform_accounts":["skyepress"],"peckplayer_config":["peckplayer"],"skp_schedules":["skyepress"],"zsys_tab":["nubuilder-forte"],"sm_liste_test":["e-mailing-service"],"sm_liste":["e-mailing-service"],"sm_historique_envoi":["e-mailing-service"],"pdckl_links":["podclankova-inzerce"],"calendarista_roles":["calendarista-basic-edition"],"sm_bounces_log":["e-mailing-service"],"sm_bounces_hard":["e-mailing-service"],"ays_pb":["ays-popup-box"],"zsys_table":["nubuilder-forte"],"calendarista_staging":["calendarista-basic-edition"],"ebcpf_ebay_accounts":["exportfeed-list-woocommerce-products-on-ebay-store"],"zsys_session":["nubuilder-forte"],"ebcpf_ebay_currency":["exportfeed-list-woocommerce-products-on-ebay-store"],"ebcpf_ebay_shipping":["exportfeed-list-woocommerce-products-on-ebay-store"],"wptis_gallery":["wp-jquery-text-and-image-slider"],"calendarista_waypoint_booked":["calendarista-basic-edition"],"calendarista_waypoint":["calendarista-basic-edition"],"ebcpf_ebay_sites":["exportfeed-list-woocommerce-products-on-ebay-store"],"ebcpf_feeds":["exportfeed-list-woocommerce-products-on-ebay-store"],"ebcpf_listing":["exportfeed-list-woocommerce-products-on-ebay-store"],"wptis_slide":["wp-jquery-text-and-image-slider"],"wptkt_log":["wp-to-klick-tipp-tag-basiertes-e-mail-marketing"],"calendarista_string_resources":["calendarista-basic-edition"],"sis_cache":["sis-handball"],"sis_concatenation_conditions":["sis-handball"],"sis_concatenations":["sis-handball"],"sis_monitoring":["sis-handball"],"sis_snapshots":["sis-handball"],"calendarista_timeslot":["calendarista-basic-edition"],"sis_string_replace":["sis-handball"],"zsys_setup":["nubuilder-forte"],"calendarista_style":["calendarista-basic-edition"],"cloaked_urls":["magic-wp-coupons"],"shop_property_stockroom_xref":["orillacart"],"protectbenignsource_allowip":["protect-benignsource"],"bracketpress_location":["bracketpress"],"sb_shared_posts":["social-booster"],"bracketpress_match":["bracketpress"],"bracketpress_team":["bracketpress"],"classified_view_counter":["classified"],"protectbenignsource_denyip":["protect-benignsource"],"protectbenignsource_denydomain":["protect-benignsource"],"protectbenignsource_automatic_ban":["protect-benignsource"],"sbtracking_permalinks":["crawlrate-tracker"],"ctl_arcade_lite_settings":["ctl-arcade-lite"],"seo_multi_position_list_utility":["seo-multiposition"],"seo_multi_position_unlock_code":["seo-multiposition"],"bookaroom_event_ages":["book-a-room"],"wphostel_rooms":["hostel"],"wphostel_payments":["hostel"],"wphostel_emaillog":["hostel"],"wphostel_bookings":["hostel"],"bookaroom_closings":["book-a-room"],"bookaroom_citylist":["book-a-room"],"registered_user_votes":["vote-my-post"],"ctl_arcade_lite_games":["ctl-arcade-lite"],"rednaopdfwpform_records":["pdf-builder-for-wpforms"],"splitit_logs":["splitit-installment-payments-enabler"],"bookaroom_reservations":["book-a-room"],"registry_paypal_cart_info":["gift-registry"],"resres_reservations":["resres-restaurant-reservations"],"registry_order_item":["gift-registry"],"registry_order":["gift-registry"],"registry_item":["gift-registry"],"restaurants_location":["wp-restaurant-listings"],"sponsor_flip":["wp-sponsor-flip-wall"],"bookaroom_registrations":["book-a-room"],"registration":["guestonline"],"bookaroom_eventcats":["book-a-room"],"bookaroom_eventages":["book-a-room"],"bookaroom_event_categories":["book-a-room"],"seo_multi_position":["seo-multiposition"],"spin_members":["wpspinner"],"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"],"rednaopdfwpform_templates":["pdf-builder-for-wpforms"],"rednaopdfwpform_form_config":["pdf-builder-for-wpforms"],"sent_sms":["wp-sendsms"],"studypress_visite":["studypress"],"studypress_gcourse":["studypress"],"studypress_propositions":["studypress"],"studypress_questions":["studypress"],"studypress_quiz_result":["studypress"],"studypress_rate_domain":["studypress"],"studypress_rate_quality":["studypress"],"sb_profiles":["social-booster"],"studypress_slide":["studypress"],"church_donation_settings":["wp-church-donation"],"o_plugin_register":["wp-seo-plugin-optimizer"],"church_donation_content":["wp-church-donation"],"church_donation":["wp-church-donation"],"wpgamelist_jre_saved_page_post_log":["wpgamelist"],"chef_options_snapshot":["wpchef"],"sb_networks":["social-booster"],"commentsvote":["commentsvote"],"zsys_event":["nubuilder-forte"],"wpgamelist_jre_saved_games_for_featured":["wpgamelist"],"wpns_malware_scan_report":["miniorange-malware-protection"],"studypress_domain":["studypress"],"sb_scheduled_posts":["social-booster"],"projekktor_playlist":["projekktor-html5-video-extensions-and-shortcodes"],"server_status":["server-status-by-hostnameip"],"wpmuautomaticlinks":["wpmu-automatic-links"],"custom_menu_hide":["pro-wp-admin-area"],"cimy_counter":["cimy-counter"],"bookaroom_branches":["book-a-room"],"wpmuprefillpost":["wpmu-prefill-post"],"cloud_blocks":["cloud-blocks"],"appointgen_venues":["wp-appointment-booking-manager"],"appointgen_ustsappointments_paymentmethods":["wp-appointment-booking-manager"],"bookaroom_amenities":["book-a-room"],"o_plugin_rules":["wp-seo-plugin-optimizer"],"o_scans_auto":["wp-seo-plugin-optimizer"],"streampad_tracks":["streampad"],"stripe_transaction_details":["stripe-manager"],"wpgamelist_jre_user_options":["wpgamelist"],"studypress_activity":["studypress"],"studypress_configuration":["studypress"],"studypress_course":["studypress"],"studypress_course_category":["studypress"],"studypress_course_users":["studypress"],"resres_capacity":["resres-restaurant-reservations"],"bookaroom_reservations_deleted":["book-a-room"],"wpgamelist_jre_saved_game_for_widget":["wpgamelist"],"social_all_in_one_bot_log":["social-all-in-one-bot"],"pwd_security":["reset-password-automatically-security"],"couponapi_logs":["couponapi"],"sds_slider":["smooth-dynamic-slider"],"couponapi_upload":["couponapi"],"sbs_scan_items":["sabres-security-website-protection"],"securesubmit":["securesubmit"],"covercarousel_slider":["3d-cover-carousel"],"cp_ppp_discount_codes":["payment-form-for-paypal-pro"],"sds_slider_cat":["smooth-dynamic-slider"],"sbs_scans":["sabres-security-website-protection"],"res_offers":["wp-reservation"],"cp_ppp_settings":["payment-form-for-paypal-pro"],"cpd_elements":["wp-contactpage-designer"],"cpd_templates":["wp-contactpage-designer"],"push_subscribers":["chrome-push-notifications"],"cpis_file":["cp-image-store"],"push_notifications":["chrome-push-notifications"],"res_orders":["wp-reservation","prayer-supporter"],"sbs_log":["sabres-security-website-protection"],"static":["wp-parsi-statistics"],"cpis_image":["cp-image-store"],"ari_read-more-login_statistics":["read-more-login"],"qg_calendar":["quotegenerator"],"qg_invoices":["quotegenerator"],"zsys_access_report":["nubuilder-forte"],"qg_itemx":["quotegenerator"],"qg_orders":["quotegenerator"],"zsys_browse":["nubuilder-forte"],"sbs_firewall_cookies":["sabres-security-website-protection"],"ari_read-more-login_registration":["read-more-login"],"count_share_by_jm_crea":["count-share-by-jm-crea"],"couponapi_config":["couponapi"],"counter_total":["visitors-counter"],"sniplets":["sniplets"],"pwt_button_stats":["pay-with-a-tweet"],"pwt_button":["pay-with-a-tweet"],"sbs_firewall_countries":["sabres-security-website-protection"],"sprites":["sprites-in-css-for-google-pagespeed"],"pa_sovvenzioni":["pafacile"],"sbs_firewall_custom":["sabres-security-website-protection"],"bpec_events_members":["bp-events-calendar"],"res_orders_content":["wp-reservation"],"cpis_image_file":["cp-image-store"],"bookaroom_roomconts":["book-a-room"],"avc_page_visit":["advanced-page-visit-counter"],"reservation_calendars_data":["cp-reservation-calendar"],"sellsy_ticket_form":["sellsy"],"wpimager":["wpimager"],"sellsy_version":["sellsy"],"wpzillow_post_templates":["wp-zillow-review-slider"],"wpzillow_reviews":["wp-zillow-review-slider"],"cs_excluded_list":["curated-search"],"st_category_email":["st-category-email-subscribe"],"reservation_calendars":["cp-reservation-calendar"],"appstorestat":["appstore"],"v_0_newsletter_adr":["eelv-newsletter"],"clgp":["crudlab-google-plus"],"avc_page_visit_history":["advanced-page-visit-counter"],"bookaroom_times_deleted":["book-a-room"],"registry_paypal_payment_info":["gift-registry"],"bookaroom_times":["book-a-room"],"bookaroom_rooms":["book-a-room"],"bookaroom_roomconts_members":["book-a-room"],"sellsy_ticket":["sellsy"],"pt_api_key":["printrove-integration-for-woocommerce"],"res_paysys":["wp-reservation"],"social_all_in_one_bot_queue":["social-all-in-one-bot"],"cpis_purchase":["cp-image-store"],"res_resources":["wp-reservation"],"sellsy_contact":["sellsy"],"ptw_usage_stat":["woo-product-pricing-tables"],"ptw_tables":["woo-product-pricing-tables"],"ptw_products":["woo-product-pricing-tables"],"ptw_product_property_codes":["woo-product-pricing-tables"],"ptw_product_properties":["woo-product-pricing-tables"],"ptw_modules_type":["woo-product-pricing-tables"],"bpec_groups_events":["bp-events-calendar"],"pt_orders":["printrove-integration-for-woocommerce"],"ptw_modules":["woo-product-pricing-tables"],"sellsy_contact_form":["sellsy"],"sellsy_error":["sellsy"],"sbtracking":["crawlrate-tracker"],"sticker_notes":["wp-sticker-notes"],"cron_logs":["cron-logger"],"wpinstaroll_instapics_track_table":["wp-instaroll"],"sellsy_setting":["sellsy"],"nkr_check_links":["backlink-rechecker"],"wpgamelist_jre_saved_game_log":["wpgamelist"],"wpgamelist_jre_post_options":["wpgamelist"],"downloader_info":["ebook-downloader"],"dmarcian_cache":["dmarcian"],"bber_thread":["easy-grabber"],"wpmarketing_visitors":["wp-marketing"],"polarsteps":["integrate-polarsteps"],"bugerator_visits":["bugerator"],"wppp_convert_all":["wp-pixpie"],"suptic_forms":["support-tickets-v2"],"suptic_messages":["support-tickets-v2"],"coin_imp":["coin-miner"],"coin_hive":["coin-miner"],"bber_log":["easy-grabber"],"dms_contact_meta":["deluxe-marketing-suite"],"dms_contacts":["deluxe-marketing-suite"],"as_progress_tracker_users":["progress-tracker"],"dms_custom_fields":["deluxe-marketing-suite"],"dms_popup_fields":["deluxe-marketing-suite"],"dms_popups":["deluxe-marketing-suite"],"bulk_edit":["bulk-postmeta-editor"],"shop_attribute":["orillacart"],"shop_attribute_property":["orillacart"],"bber_queue":["easy-grabber"],"bber_hist":["easy-grabber"],"shop_cart":["orillacart"],"wpejunkie_html_code":["wp-ejunkie"],"sms_networks":["mediaburst-email-to-sms"],"dex_reservations_discount_codes":["cp-reservation-calendar"],"bm_bids_responses":["wp-bid-manager"],"bm_bids":["wp-bid-manager"],"dfp_files":["file-provider"],"dfp_group":["file-provider"],"diary_and_availability_calendar":["diary-availability-calendar"],"wpsctotop":["crudlab-scroll-to-top"],"bugerator_issues":["bugerator"],"aru_readmorelogin_statistics":["read-more-login"],"dinatur":["dinatur"],"dintextos":["dinatur"],"direction_map":["direction-map"],"bugerator_notes":["bugerator"],"bugerator_projects":["bugerator"],"bugerator_subscriptions":["bugerator"],"salavatcounter":["salavat-counter"],"aru_readmorelogin_registration":["read-more-login"],"disable_content_editor":["disable-contect-editor-for-specific-template"],"shop_attribute_set":["orillacart"],"shop_category_xref":["orillacart"],"shop_methods":["orillacart"],"binarymlm_users":["binarymlm"],"_link_structures":["wp-internal-links-lite"],"wppus_licenses":["wp-plugin-update-server"],"binarymlm_rightleg":["binarymlm"],"binarymlm_referral_commission":["binarymlm"],"binarymlm_product_price":["binarymlm"],"cp_ppp_posts":["payment-form-for-paypal-pro"],"nation":["wp-ip2nation-installer"],"shop_order_attribute_item":["orillacart"],"ce_category":["community-events"],"shop_order_item":["orillacart"],"shop_product_attribsets":["orillacart"],"shop_products_stockroom_xref":["orillacart"],"nationcountries":["wp-ip2nation-installer"],"pmpt_templates":["plugmatter-pricing-table"],"pmpt_group_templates":["plugmatter-pricing-table"],"pmpt_ab_test":["plugmatter-pricing-table"],"pmpt_ab_stats":["plugmatter-pricing-table"],"ccpw":["cryptocurrency-pricing-list"],"_link_struct_to_links":["wp-internal-links-lite"],"shop_country":["orillacart"],"wpsp_list":["wp-subscription"],"poc_cache":["plugin-output-cache"],"suptic_meta":["support-tickets-v2"],"y_gallery_line":["simple-gallery-odihost"],"suptic_tickets":["support-tickets-v2"],"surveys":["wp-surveys","isurvey","getopenion"],"surveys_data":["wp-surveys"],"wpsp_forms":["wp-subscription"],"surveys_extended_answer":["surveys-extended"],"y_gallery":["simple-gallery-odihost"],"aweber_registrations":["aweber-registration-integration"],"ce_events":["community-events"],"report":["magic-wp-coupons"],"o_scans_auto_data":["wp-seo-plugin-optimizer"],"wpsp_subscribers":["wp-subscription"],"version_books":["youversion"],"wppp_converted_images":["wp-pixpie"],"donation":["wordpress-donation-plugin-with-goals-and-paypal-ipn-by-nonprofitcmsorg"],"doviz_kurlari":["ninja-araclar"],"wppp_log":["wp-pixpie"],"ce_venues":["community-events"],"sms_countries":["mediaburst-email-to-sms"],"stats":["feed-subscriber-stats"],"zsys_file":["nubuilder-forte"],"zsys_run_list":["nubuilder-forte"],"o_plugin_regions":["wp-seo-plugin-optimizer"],"subscription_payu_latam_spl_transactions":["subscription-payu-latam"],"suh_permban":["superadmin-helper"],"wpgamelist_jre_game_quotes":["wpgamelist"],"wpgamelist_jre_active_extensions":["wpgamelist"],"comment_warning":["comment-warning"],"appointgen_timeslot":["wp-appointment-booking-manager"],"cfx_email":["contact-form-x"],"broo_condition":["badgearoo"],"broo_action":["badgearoo"],"spbsm_position":["superb-social-share-and-follow-buttons"],"spbsm":["superb-social-share-and-follow-buttons"],"superlig_puan":["ninja-araclar"],"pra_testimonial_settings":["awesome-testimonials"],"appointgen_services":["wp-appointment-booking-manager"],"broo_condition_step":["badgearoo"],"appointgen_schedules":["wp-appointment-booking-manager"],"sgbb_breadcrumb":["breadcrumbs-builder"],"sgbb_position":["breadcrumbs-builder"],"cfx_form_forms":["crm-perks-forms"],"wpgamelist_jre_list_company_names":["wpgamelist"],"broo_condition_step_meta":["badgearoo"],"wpgamelist_jre_list_genre_names":["wpgamelist"],"zsys_form":["nubuilder-forte"],"wpns_malware_scan_report_details":["miniorange-malware-protection"],"wpns_malware_skip_files":["miniorange-malware-protection"],"zsys_format":["nubuilder-forte"],"comments_reported":["report-comments"],"prenotazioni_spazi":["prenotazioni"],"wpoc_sliders":["wp-touch-slider"],"wpgamelist_jre_page_options":["wpgamelist"],"wpgamelist_jre_list_platform_names":["wpgamelist"],"wpoc_slides":["wp-touch-slider"],"wpgamelist_jre_list_dynamic_db_names":["wpgamelist"],"zsys_object":["nubuilder-forte"],"nkr_check_settings":["backlink-rechecker"],"comments_moderated":["report-comments"],"zsys_php":["nubuilder-forte"],"redirect_it":["cleverwise-redirect-it"],"zsys_report":["nubuilder-forte"],"zsys_report_data":["nubuilder-forte"],"premmerce_currencies":["premmerce-woocommerce-multi-currency"],"appointgen_ustsappointments":["wp-appointment-booking-manager"],"o_plugin_groups":["wp-seo-plugin-optimizer"],"broo_user_action":["badgearoo"],"dex_reservations":["cp-reservation-calendar"],"bowob":["bowob"],"posts_to_do_list":["posts-to-do-list"],"wpfb_logs":["wp-fb-comments"],"bm_responder":["wp-bid-manager"],"bm_notifications":["wp-bid-manager"],"sharelink":["share-link"],"colortheme":["easy-form-builder-by-bitware"],"wpmarketing_ctas":["wp-marketing"],"postmails":["email-form-under-post"],"scribblemaps":["scribble-maps"],"apdfg_values":["advanced-pdf-generator"],"wpmarketing_events":["wp-marketing"],"sharelink_options":["share-link"],"sharelink_settings":["share-link"],"post_voting_style":["vote-my-post"],"post_voting_settings":["vote-my-post"],"post_voting_mode":["vote-my-post"],"devat_adnotes":["admin-notes"],"wpseotags_referer":["wp-seo-tags"],"post_vote_counts":["vote-my-post"],"postscompare_search_result":["posts-compare"],"zsys_debug":["nubuilder-forte"],"o_page_register":["wp-seo-plugin-optimizer"],"endance_list":["attendance-list"],"app_user_info":["wp-jobs"],"cforms_template":["cforms-plugin"],"sgbb_theme":["breadcrumbs-builder"],"cforms_submission":["cforms-plugin"],"mute":["buddypress-mute"],"zsys_select":["nubuilder-forte"],"dashboard_chat":["wp-dashboard-chat"],"cforms_form":["cforms-plugin"],"cforms_field":["cforms-plugin"],"cforms_email":["cforms-plugin"],"dcf_entry_meta":["dialog-contact-form"],"artb_setting":["add-richtext-toolbar-button"],"zsys_select_clause":["nubuilder-forte"],"o_page_groups":["wp-seo-plugin-optimizer"],"broo_user_action_meta":["badgearoo"],"broo_user_assignment":["badgearoo"],"bm_user":["wp-bid-manager"],"bv_gr_clicks_impressions":["breezeview"],"bm_responder_emails":["wp-bid-manager"],"dcf_entries":["dialog-contact-form"],"srty_campaigns":["shorty-lite"],"js_vehiclemanager_vehicletypes":["js-vehicle-manager"],"egoi_sms_order_billets":["sms-orders-alertnotifications-for-woocommerce"],"gcm_users":["wp-gcm"],"garagesale_stuff":["garagesale"],"moos_oauth_users":["miniorange-oauth-20-server"],"moos_oauth_scopes":["miniorange-oauth-20-server"],"moos_oauth_refresh_tokens":["miniorange-oauth-20-server"],"moos_oauth_public_keys":["miniorange-oauth-20-server"],"moos_oauth_clients":["miniorange-oauth-20-server"],"moos_oauth_authorized_apps":["miniorange-oauth-20-server"],"moos_oauth_authorization_codes":["miniorange-oauth-20-server"],"moos_oauth_access_tokens":["miniorange-oauth-20-server"],"ite_line_itemsmeta":["ninja-shop"],"ite_line_items":["ninja-shop"],"motorracingleague_entry":["motor-racing-league"],"gdpr_cookie_post_cookies":["gdpr-cookie-consent"],"gdpr_cookie_scan_categories":["gdpr-cookie-consent"],"ite_address":["ninja-shop"],"lddbusinessdirectory":["ldd-business-directory"],"lddbusinessdirectory_cats":["ldd-business-directory"],"wiziq_wclasses":["wiziq"],"lddbusinessdirectory_docs":["ldd-business-directory"],"wiziq_enroluser":["wiziq"],"oke_twitter_login":["wiloke-twitter-login"],"wiziq_courses":["wiziq"],"trigger":["wp-triggers-lite"],"motorracingleague_championship":["motor-racing-league"],"motorracingleague_participant":["motor-racing-league"],"wiziq_contents":["wiziq"],"gallerio_images":["gallerio"],"woo_transition":["woo-superb-slideshow-transition-gallery-with-random-effect"],"totalsoft_ptable_sets_prev":["woo-pricing-table"],"wmail_newsletter_list":["wp-email-newsletter"],"wmail_newsletter":["wp-email-newsletter"],"wm_get_ebay_fb_table":["get-your-ebay-feedback"],"mpmf_messages":["multi-purpose-mail-form"],"mpmf_forms":["multi-purpose-mail-form"],"mpmf_form_fields":["multi-purpose-mail-form"],"mpmf_field_options":["multi-purpose-mail-form"],"gallerio":["gallerio"],"motorracingleague_prediction":["motor-racing-league"],"ite_transactions":["ninja-shop"],"ite_sessions":["ninja-shop"],"ite_refundsmeta":["ninja-shop"],"ite_refunds":["ninja-shop"],"ite_payment_tokensmeta":["ninja-shop"],"ite_payment_tokens":["ninja-shop"],"ite_logs":["ninja-shop"],"tracks":["tune-library"],"motorracingleague_result":["motor-racing-league"],"motorracingleague_race":["motor-racing-league"],"ts_favorites":["tweetsuite"],"geopress":["geopress"],"totalsoft_ptable_manager":["woo-pricing-table"],"ucontext_click_log":["ucontext"],"mjuh_datas":["mj-update-history"],"twispay_tw_transactions":["twispay"],"admin_blog_posts":["wp-admin-microblog"],"admin_blog_meta":["wp-admin-microblog"],"miwowidgets":["miwowidgets"],"admin_blog_likes":["wp-admin-microblog"],"twitterfriends":["twitter-friends-widget"],"ublinks":["ultimate-blogroll"],"ubsites":["ultimate-blogroll"],"ucontext_cache":["ucontext"],"ucontext_keyword":["ucontext"],"admin_blog_relations":["wp-admin-microblog"],"ucontext_spider_agent":["ucontext"],"udisg_plugin":["up-down-image-slideshow-gallery"],"udmanager_download_history":["simba-plugin-updates-manager"],"udmanager_plugins":["simba-plugin-updates-manager"],"udmanager_user_entitlements":["simba-plugin-updates-manager"],"uiform_addon":["zigaform-form-builder-lite"],"uiform_addon_details":["zigaform-form-builder-lite"],"uiform_addon_details_log":["zigaform-form-builder-lite"],"uiform_fields":["zigaform-form-builder-lite"],"uiform_fields_type":["zigaform-form-builder-lite"],"uiform_form":["zigaform-form-builder-lite"],"mjuh_logs":["mj-update-history"],"admin_blog_tags":["wp-admin-microblog"],"mobile_tab_data":["mobile-tabs"],"mobile_tab":["mobile-tabs"],"ts_mine":["tweetsuite"],"withdrawls":["fantasy-sports"],"gg_offer_calculator":["service-calculator"],"wws_categories":["woo-salesforce-connector"],"ghazale_inquiry_c":["inquiry-calc"],"ghazale_inquiry_q":["inquiry-calc"],"ghostimporter_log":["import-from-ghost"],"wws_products":["woo-salesforce-connector"],"tweetbacks":["tweetsuite"],"mlm_referral_commission":["binarymlm"],"twispay_tw_configuration":["twispay"],"mlm_product_price":["binarymlm"],"wibstats_sessions":["wibstats-statistics-for-wordpress-mu"],"mlm_epins":["binarymlm"],"wibstats_pages":["wibstats-statistics-for-wordpress-mu"],"totalsoft_ptable_sets":["woo-pricing-table"],"totalsoft_ptable_id":["woo-pricing-table"],"uiform_form_records":["zigaform-form-builder-lite"],"w9ss_order":["sleekstore"],"woosfrest_users":["woo-salesforce-connector"],"woosfrest_products":["woo-salesforce-connector"],"woosfrest_orders":["woo-salesforce-connector"],"woosfrest_categories":["woo-salesforce-connector"],"flexibleslider":["flexible-slider"],"kindred_posts_visits":["kindred-posts"],"flicker_types":["cool-flickr-slideshow"],"flickpress":["flickpress"],"flickpress_cache":["flickpress"],"awsompxggalleries":["awsom-pixgallery"],"w9ss_item":["sleekstore"],"job_bm_cp_follow":["job-board-manager-company-profile"],"knowledgegraph":["knowledge-graph"],"komper_field":["komper"],"komper_product":["komper"],"komper_value":["komper"],"jb7_notification_templates":["joebooking"],"jb7_conf":["joebooking"],"vyps_points_log":["vidyen-point-system-vyps"],"vyps_points":["vidyen-point-system-vyps"],"mystyle_sessions":["mystyle-custom-product-designer"],"mystyle_designs":["mystyle-custom-product-designer"],"jb7_calendars":["joebooking"],"wc_fedapay_orders_transactions":["woo-gateway-fedapay"],"flaggedcontent":["flagged-content"],"fny_configs":["fny-database-backup"],"filled_in_extensions":["filled-in"],"wovax_idx_feeds":["wovax-idx"],"kbs_customermeta":["kb-support"],"wovax_idx_feed_rules":["wovax-idx"],"kbs_customers":["kb-support"],"wovax_idx_feed_fields":["wovax-idx"],"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"],"filled_in_data":["filled-in"],"filled_in_errors":["filled-in"],"filled_in_forms":["filled-in"],"fixon_011026":["fixon-cadastro-de-clientes"],"filled_in_useragents":["filled-in"],"wordpress_user":["e-mailing-service"],"finance":["wp-finance"],"finance_currencies":["wp-finance"],"nc_taxonomy_meta":["nc-taxonomy-meta"],"nc_taxonomies":["nc-taxonomy-meta"],"firebase_tokens":["fantasy-sports"],"fitsoft":["gym-studio-membership-management"],"fixon_011001":["fixon-cadastro-de-clientes"],"fixon_011002":["fixon-cadastro-de-clientes"],"fny_backups":["fny-database-backup"],"jb7_bookings":["joebooking"],"totalsoft_ptable_cols":["woo-pricing-table"],"_lib":["wordpress-code-snippet"],"vxcf_insightly":["cf7-insightly"],"fppp_poll_results":["flashpoll"],"fppp_polls":["flashpoll"],"vxcf_infusionsoft_log":["cf7-infusionsoft"],"frames_playlists":["frames-video-gallery"],"frames_themes":["frames-video-gallery"],"frames_videos":["frames-video-gallery"],"freepostmailtable":["free-post-mail"],"vxcf_infusionsoft_accounts":["cf7-infusionsoft"],"vxcf_infusionsoft":["cf7-infusionsoft"],"woocommerce_digiwallet":["digiwallet-for-woocommerce"],"vxcf_insightly_accounts":["cf7-insightly"],"msf_fileds":["syncfields"],"ft_brp":["bible-reading-plan"],"ft_wpecards":["wp-ecards"],"vw_vmls_sessions":["ppv-live-webcams"],"vw_vmls_private":["ppv-live-webcams"],"fullcircle_error_log":["full-circle"],"fullcircle_postmap":["full-circle"],"fundhistory":["fantasy-sports"],"vw_vmls_chatlog":["ppv-live-webcams"],"vw_vmls_actions":["ppv-live-webcams"],"vw_videorecordings":["video-posts-webcam-recorder"],"fppp_poll_answers":["flashpoll"],"vxcf_insightly_log":["cf7-insightly"],"totalsoft_icons":["woo-pricing-table"],"foodlist_menu_tagmeta":["foodlist"],"jb7_availability_sync":["joebooking"],"jb7_availability":["joebooking"],"vxg_infusionsoft_log":["gf-infusionsoft"],"vxg_infusionsoft_accounts":["gf-infusionsoft"],"vxg_infusionsoft":["gf-infusionsoft"],"kt_bseo_keywords":["keyword-tag-wrapper"],"vxg_freshdesk_log":["gf-freshdesk"],"vxg_freshdesk_accounts":["gf-freshdesk"],"my_library_items":["my-library"],"vxg_freshdesk":["gf-freshdesk"],"jb7_audit":["joebooking"],"form1":["form1"],"_lang":["wordpress-code-snippet"],"lana_security_login_logs":["lana-security"],"lana_security_logs":["lana-security"],"forminformationdata":["easy-form-builder-by-bitware"],"ai_link":["flovidy"],"formsubmitdata":["easy-form-builder-by-bitware"],"vxcf_mailchimp_log":["cf7-mailchimp"],"vxcf_mailchimp_accounts":["cf7-mailchimp"],"vxcf_mailchimp":["cf7-mailchimp"],"larsenscalender":["larsens-calender"],"latencytracker":["latency-tracker"],"launchkey_sso_sessions":["launchkey"],"uiform_form_log":["zigaform-form-builder-lite"],"uiform_settings":["zigaform-form-builder-lite"],"wovax_idx_shortcode":["wovax-idx"],"rturls":["tweetsuite"],"wec_calendar":["wordpress-event-calendar"],"maintenance_plugin_templates":["best-maintenance-mode"],"webtechglobal_schedule":["csv-2-post"],"webshrinker":["web-shrinker-web-site-preview-link-thumbnails"],"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"],"vom":["verse-o-matic"],"hcim_v1_sales":["z-inventory-manager"],"wec_event_category_relationships":["wordpress-event-calendar"],"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"],"wec_event":["wordpress-event-calendar"],"wec_event_tag_relationships":["wordpress-event-calendar"],"heatmap":["heatmap"],"image_optimize_log":["just-image-optimizer"],"imc_tokens":["improve-my-city"],"imc_posts_index":["improve-my-city"],"imc_logs":["improve-my-city"],"imc_keys":["improve-my-city"],"ha_v6_logaudit":["joebooking"],"ha_v6_objectmeta":["joebooking"],"image_optimize_log_details":["just-image-optimizer"],"ha_v6_orders":["joebooking"],"ha_v6_packs":["joebooking"],"ha_v6_promotions":["joebooking"],"zi2_conf":["z-inventory-manager"],"image_optimize":["just-image-optimizer"],"ha_v6_users":["joebooking"],"mappins_markers":["map-pins"],"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"],"ilenvideolock":["ilen-video-locker"],"iire_social_lite":["iire-social-lite"],"yarq_quotes":["yet-another-random-quote"],"hcim_v1_shipments":["z-inventory-manager"],"helion_bestsellers":["helion-widgets-pro"],"imc_users_firebase":["improve-my-city"],"visitorflow_meta":["wp-visitorflow"],"web_invoice_log":["web-invoice"],"vio_content":["viralism"],"vio_content_social":["viralism"],"vio_pinterest":["viralism"],"vio_twitter":["viralism"],"vip_purchases":["pro-vip"],"vip_users":["pro-vip","wp-vip"],"yabp":["yabp"],"visitorflow_aggregation":["wp-visitorflow"],"visitorflow_flow":["wp-visitorflow"],"visitorflow_pages":["wp-visitorflow"],"web_invoice_meta":["web-invoice"],"visitorflow_visits":["wp-visitorflow"],"visual_developer_page_version":["visual-developer-custom-css"],"visual_developer_page_version_assign":["visual-developer-custom-css"],"yabp_deals":["yabp"],"accordions_or_faqs_style":["accordions-or-faqs"],"accordions_or_faqs_items":["accordions-or-faqs"],"yabp_deals_items":["yabp"],"yabp_items":["yabp"],"absp_ipdeny":["apptivo-business-site"],"visual_developer_page_version_conversion":["visual-developer-custom-css"],"visual_developer_page_version_display":["visual-developer-custom-css"],"web_invoice_main":["web-invoice"],"web_invoice_payment":["web-invoice"],"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"],"video_embed":["video-embed-box"],"videostir_videos":["videostir-spokesperson"],"vidyen_wm_settings":["vidyen-point-system-vyps"],"local_like_and_share_user_like":["local-like-and-share"],"hsgpi_gallery":["horizontal-scroll-google-picasa-images"],"mail_system":["wp-mail"],"webling_memberlists":["webling"],"local_like_and_share_user_share":["local-like-and-share"],"webling_forms":["webling"],"webling_form_fields":["webling"],"webling_cache":["webling"],"hmaptracker_clicks":["heat-map-tracker"],"hmaptracker_mmove":["heat-map-tracker"],"hotmart_ads":["hotmart-wp"],"menuobfuscator":["menu-obfuscator"],"web_invoice_payment_meta":["web-invoice"],"zi2_items":["z-inventory-manager"],"masvideos_attribute_taxonomies":["masvideos"],"gk_sslcommerz_payments":["gk-sslcommerz"],"gtabber":["wp-tabber-widget"],"lemonway_wktoken":["lemon-way-for-ecommerce"],"egoi_sms_order_reminders":["sms-orders-alertnotifications-for-woocommerce"],"ipb_hits":["trustedsite-ip-blocker"],"ipag_gateway":["ipag-woocommerce"],"great_newsletter":["wp-great-newsletter"],"ip_log":["wp-parsi-statistics","carla"],"usage_ref":["media-usage"],"user_extended":["fantasy-sports"],"gs_store":["glossy"],"user_payment":["fantasy-sports"],"lemonway_oneclic":["lemon-way-for-ecommerce"],"member":["add-edit-delete-listing-for-member-module"],"wcra_api_base":["custom-wp-rest-api"],"user_quotes":["quote-cart"],"wcra_api_endpoints":["custom-wp-rest-api"],"wcra_api_log":["custom-wp-rest-api"],"melibu_dcb_sub":["download-counter-button"],"melibu_dcb":["download-counter-button"],"user_teams":["fantasy-sports"],"userlogs":["user-tracker"],"usermap":["usermap"],"wcra_notification_log":["custom-wp-rest-api"],"lemonway_wallet":["lemon-way-for-ecommerce"],"vtcrt_purchase_log_product":["cart-deals-for-woocommerce"],"wh_messages":["well-handled"],"ipblock":["ipblock"],"adguru_zones":["wp-ad-guru-lite"],"adguru_links":["wp-ad-guru-lite"],"adguru_ads":["wp-ad-guru-lite"],"adfoxly_statistics_views":["adfoxly"],"adfoxly_statistics_clicks":["adfoxly"],"ipb_rules":["trustedsite-ip-blocker"],"addressbook":["addressbook"],"undelete_posts":["wp-undelete-restore-deleted-posts"],"misiek_albums_images":["misiek-photo-album"],"misiek_albums":["misiek-photo-album"],"wh_message_queue":["well-handled"],"lemonway_moneyout":["lemon-way-for-ecommerce"],"wh_message_links":["well-handled"],"google_api_setting":["wp-google-calendar"],"google_events":["wp-google-calendar"],"wh_message_errors":["well-handled"],"mi_stats":["welcome-mat"],"mi_contacts":["welcome-mat"],"lemonade_autoposter_posts_published":["lemonade-sna-pinterest-edition"],"lemonade_autoposter_templates":["lemonade-sna-pinterest-edition"],"add_hierarchy_parent_to_post__errors_log":["add-hierarchy-parent-to-post"],"lemonway_iban":["lemon-way-for-ecommerce"],"vtcrt_purchase_log_product_rule":["cart-deals-for-woocommerce"],"wcrw_request_notes":["wc-return-warrranty"],"imc_users_slogin":["improve-my-city"],"ha_v6_conf":["joebooking"],"importyml_changed":["wp-shop-yml-parser"],"importyml_category":["wp-shop-yml-parser"],"live_calendar":["live-calendar"],"live_calendar_categories":["live-calendar"],"live_calendar_config":["live-calendar"],"live_calendar_locations":["live-calendar"],"ha_v6_accounting_assets":["joebooking"],"ha_v6_accounting_journal":["joebooking"],"ha_v6_accounting_posting":["joebooking"],"ha_v6_appointments":["joebooking"],"ha_v6_coupons":["joebooking"],"importyml_project":["wp-shop-yml-parser"],"ha_v6_form_controls":["joebooking"],"ha_v6_forms":["joebooking"],"ha_v6_invoice_items":["joebooking"],"ha_v6_invoices":["joebooking"],"ha_v6_languages":["joebooking"],"usf_records":["users-searched-for"],"usf_settings":["users-searched-for"],"usts_currency_list":["wp-appointment-booking-manager","restaurant-table-booking-manager"],"usu_url":["url-shortener-ultimate"],"ha_v6_locations":["joebooking"],"imc_votes":["improve-my-city"],"importyml_offer":["wp-shop-yml-parser"],"wec_eventcalendarmeta":["wordpress-event-calendar"],"wcrw_request_product_map":["wc-return-warrranty"],"linklog_descriptions":["link-log"],"wcrw_warranty_requests":["wc-return-warrranty"],"vtcrt_purchase_log":["cart-deals-for-woocommerce"],"instagrabber_streams":["instagrabber"],"instagrabber_images":["instagrabber"],"ink_coming_soon":["ink-coming-soon-page"],"limit_access":["limit-access"],"linklog":["link-log"],"mef_media_extra_field":["media-extra-fields"],"meetup_users":["meetup"],"guardian_headlines":["guardian-news-headlines"],"links_dump":["mylinksdump"],"mdjm_avail":["mobile-dj-manager"],"gwptb_chat_subscription":["green-wp-telegram-bot-by-teplitsa"],"links_dump_rating":["mylinksdump"],"gwptb_log":["green-wp-telegram-bot-by-teplitsa"],"mdpartners":["partners"],"links_rss":["rssfeedchecker"],"xpost_blogs":["xpost"],"xpost_posts":["xpost"],"wec_recurrence":["wordpress-event-calendar"],"wec_feed":["wordpress-event-calendar"],"mdjm_availabilitymeta":["mobile-dj-manager"],"mdjm_availability":["mobile-dj-manager"],"gallerio_config":["gallerio"],"wovax_idx_shortcode_filters":["wovax-idx"],"wpapl_publication":["wp-academic-people"],"js_vehiclemanager_mileages":["js-vehicle-manager"],"js_vehiclemanager_models":["js-vehicle-manager"],"ezcache_webp_images":["ezcache"],"js_vehiclemanager_modelyears":["js-vehicle-manager"],"ezscmf_debug":["ez-schedule-manager-free"],"jwp_a11y_checks_ngs":["jwp-a11y"],"js_vehiclemanager_fueltypes":["js-vehicle-manager"],"js_vehiclemanager_states":["js-vehicle-manager"],"ezscmf_schedules":["ez-schedule-manager-free"],"ezscmf_settings":["ez-schedule-manager-free"],"ezscmf_settings_schedule":["ez-schedule-manager-free"],"jswprediction_types":["joomsport-prediction"],"jswprediction_scorepredict":["joomsport-prediction"],"jswprediction_round_users":["joomsport-prediction"],"js_vehiclemanager_makes":["js-vehicle-manager"],"wpapl_project":["wp-academic-people"],"jswprediction_round_matches":["joomsport-prediction"],"wpapl_people":["wp-academic-people"],"js_vehiclemanager_emailtemplates":["js-vehicle-manager"],"wpapl_category":["wp-academic-people"],"js_vehiclemanager_emailtemplates_config":["js-vehicle-manager"],"ntracker":["track-site-traffic"],"tnc_bg_process":["tainacan"],"tnf_log":["twitter-news-feed"],"todolists_iptask":["todo-lists-for-membership-sites"],"oks_weixin_robot_extends":["wp-weixin-robot"],"js_vehiclemanager_fieldsordering":["js-vehicle-manager"],"oks_weixin_robot":["wp-weixin-robot"],"todolists_usertask":["todo-lists-for-membership-sites"],"ns_redirection_campaign_builder":["ns-redirection-and-ga-campaign-link-builder"],"zmhub_forms":["zoho-marketinghub"],"top_stories":["top-social-stories-free"],"nppp":["performance-profiler"],"wpapl_people_project":["wp-academic-people"],"facetedsearch":["faceted-search"],"wpapl_publication_people":["wp-academic-people"],"tmsht_legends":["timesheet"],"js_vehiclemanager_system_errors":["js-vehicle-manager"],"owt_lib_return_book":["library-management-system"],"owt_lib_staff_type":["library-management-system"],"owt_lib_staffs":["library-management-system"],"wp_beautiful_charts_data":["wp-beautiful-charts"],"wp_beautiful_charts":["wp-beautiful-charts"],"owt_lib_students":["library-management-system"],"kament_plain":["sv-kament-comments-integration"],"js_vehiclemanager_transmissions":["js-vehicle-manager"],"owt_lib_currency_code":["library-management-system"],"oxi_div_category":["team-showcase-ultimate"],"eis_items":["wp-eis"],"imize_status_log":["optimize"],"ninja_shop_transactions":["ninja-shop"],"ninja_shop_sessions":["ninja-shop"],"ninja_shop_refundsmeta":["ninja-shop"],"ninja_shop_refunds":["ninja-shop"],"owt_lib_late_fine":["library-management-system"],"owt_lib_country":["library-management-system"],"noindex_by_path":["noindex-by-path"],"jswprediction_private_users":["joomsport-prediction"],"wpapl_research_area":["wp-academic-people"],"eis_name":["wp-eis"],"owt_lib_book_issue":["library-management-system"],"owt_lib_books":["library-management-system"],"jswprediction_round":["joomsport-prediction"],"failling_images":["falling-things"],"jswprediction_private_league":["joomsport-prediction"],"wp_bible":["wp-bible"],"jswprediction_private_based":["joomsport-prediction"],"jswprediction_league":["joomsport-prediction"],"tosendit_attachs":["pafacile"],"zi2_shipments_lines":["z-inventory-manager"],"tosendit_log":["pafacile"],"owt_lib_branch":["library-management-system"],"owt_lib_category":["library-management-system"],"tmsht_ts":["timesheet"],"k_note":["sticky-note"],"ninja_shop_payment_tokens":["ninja-shop"],"ewz_webform":["entrywizard"],"evr_cost":["events-calendar-registration-booking-by-events-plus"],"the_welcomizer":["the-welcomizer"],"evr_category":["events-calendar-registration-booking-by-events-plus"],"evr_attendee":["events-calendar-registration-booking-by-events-plus"],"evr_answer":["events-calendar-registration-booking-by-events-plus"],"jwp_a11yc_data":["jwp-a11y"],"ewz_layout":["entrywizard"],"wp_sudoku":["wp-sudoku-plus"],"evr_event":["events-calendar-registration-booking-by-events-plus"],"eventplusmeta":["events-calendar-registration-booking-by-events-plus"],"etm_mt":["mini-testimonials"],"etm_contact_settings":["fabulous-form-maker"],"wauc_winners":["woo-auction"],"wauc_auction_log":["woo-auction"],"etm_contact":["fabulous-form-maker"],"wpaccounting_ledger":["wp-accounting"],"thinkit_contact_form":["thinkit-wp-contact-form"],"evr_payment":["events-calendar-registration-booking-by-events-plus"],"wpadguads":["wp-adsense-guard"],"jwp_a11yc_bresults":["jwp-a11y"],"jwp_a11y_maintenance":["jwp-a11y"],"jwp_a11y_pages":["jwp-a11y"],"jwp_a11y_setup":["jwp-a11y"],"jwp_a11yc_bchecks":["jwp-a11y"],"ewz_item":["entrywizard"],"ewz_field":["entrywizard"],"jwp_a11y_bulk_ngs":["jwp-a11y"],"jwp_a11y_bulk":["jwp-a11y"],"evr_question":["events-calendar-registration-booking-by-events-plus"],"timeline":["timeline-calendar"],"han_maps":["neshan-maps"],"ticketmaster_widgets":["ticketmaster"],"wbbm_bus_booking_list":["bus-booking-manager"],"jwp_a11yc_caches":["jwp-a11y"],"jwp_a11yc_checks":["jwp-a11y"],"offers":["offers-popup"],"wpaccounting_meta":["wp-accounting"],"wpadgublocked_ips":["wp-adsense-guard"],"js_vehiclemanager_cylinders":["js-vehicle-manager"],"js_vehiclemanager_countries":["js-vehicle-manager"],"o10n__cache_js_concat":["javascript-optimization"],"js_vehiclemanager_conditions":["js-vehicle-manager"],"o10n__cache_css_concat":["css-optimization"],"js_vehiclemanager_config":["js-vehicle-manager"],"orr_exceptions":["online-restaurant-reservation"],"orr_sessions":["online-restaurant-reservation"],"envialia_carrier":["envialia-carrier-for-woocomerce"],"o10n__cache":["javascript-optimization","css-optimization","web-font-optimization","pwa-optimization"],"orb_cyber_store_products":["orbisius-cyberstore"],"engage_messages":["engage-forms"],"engage_forms":["engage-forms"],"engage_emails":["engage-forms"],"js_vehiclemanager_currencies":["js-vehicle-manager"],"awsompxgcommenttracking":["awsom-pixgallery"],"wbnl":["simple-newsletter"],"js_vehiclemanager_cities":["js-vehicle-manager"],"wpag_audios":["wp-audio-gallery"],"wpadgunots":["wp-adsense-guard"],"wp_post_pordered":["order-post"],"jwp_a11yc_issuesbbs":["jwp-a11y"],"jwp_a11yc_maintenance":["jwp-a11y"],"aliprice_products":["aliprice"],"jwp_a11yc_pages":["jwp-a11y"],"jwp_a11yc_results":["jwp-a11y"],"jwp_a11yc_settings":["jwp-a11y"],"aliprice_product_review":["aliprice"],"jwp_a11yc_uas":["jwp-a11y"],"oa_og":["oa-open-graph-for-fb"],"wp_post_po":["order-post"],"jwp_a11yc_versions":["jwp-a11y"],"js_vehiclemanager_activitylog":["js-vehicle-manager"],"js_vehiclemanager_adexpiries":["js-vehicle-manager"],"optimum_gravatar_cache":["optimum-gravatar-cache"],"oks_weixin_robot_reply":["wp-weixin-robot"],"oks_weixin_robot_menu":["wp-weixin-robot"],"ninja_shop_payment_tokensmeta":["ninja-shop"],"ezscmf_entries":["ez-schedule-manager-free"],"ninja_shop_logs":["ninja-shop"],"wow_countdown_free":["wpcalc-cookie-timer"],"amzfulfillment_listing":["amazing-fullfilment-integration-for-woocommerce"],"oxi_div_social_icon":["team-showcase-ultimate"],"fdc_entries_meta":["form-data-collector"],"fdc_entries":["form-data-collector"],"jschat_canal":["javascript-chat-for-wordpress"],"amzfulfillment_inventory":["amazing-fullfilment-integration-for-woocommerce"],"zi2_receipts_lines":["z-inventory-manager"],"jschat_messages":["javascript-chat-for-wordpress"],"g_secret_key":["ping-list-pro"],"js_vehiclemanager_vehicles":["js-vehicle-manager"],"js_vehiclemanager_vehicleimages":["js-vehicle-manager"],"wow_signup_free":["viral-signup"],"fbimporter":["facebook-importer"],"zi2_sales":["z-inventory-manager"],"amzfulfillment_fulfillment":["amazing-fullfilment-integration-for-woocommerce"],"zi2_sales_lines":["z-inventory-manager"],"zi2_shipments":["z-inventory-manager"],"js_vehiclemanager_users":["js-vehicle-manager"],"fb2wp_debug":["fb2wp-integration-tools"],"amzfulfillment_log":["amazing-fullfilment-integration-for-woocommerce"],"amzfulfillment_orderupdatetime":["amazing-fullfilment-integration-for-woocommerce"],"ngssamrequests":["ngs-sam-integrator"],"egrower_related":["engagement-grower"],"wovax_idx_shortcode_rules":["wovax-idx"],"wow_armory_table_chars":["guild-armory-roster","world-of-warcraft-armory-table"],"newsletter_popup_options":["simple-popup-newsletter"],"newsletter_popup_subscribers":["simple-popup-newsletter"],"egrower":["engagement-grower"],"egrower_keyword":["engagement-grower"],"wow_armory_table_classes":["guild-armory-roster","world-of-warcraft-armory-table"],"zi2_purchases":["z-inventory-manager"],"zi2_purchases_lines":["z-inventory-manager"],"egrower_time":["engagement-grower"],"wow_armory_table_groups":["guild-armory-roster","world-of-warcraft-armory-table"],"fgcfc_form_table":["easy-contact-form-solution"],"egrower_user":["engagement-grower"],"analyticbridge_metrics":["ga-popular-posts"],"wow_armory_table_groups_mapping":["guild-armory-roster","world-of-warcraft-armory-table"],"amzfulfillment_package":["amazing-fullfilment-integration-for-woocommerce"],"wow_armory_table_progress_mapping":["guild-armory-roster","world-of-warcraft-armory-table"],"newsscroller":["wp-sc-news-scroller"],"zi2_receipts":["z-inventory-manager"],"jwp_a11y_checks":["jwp-a11y"],"fattura_tax":["fattura24"],"ninja_shop_line_items":["ninja-shop"],"ninja_shop_line_itemsmeta":["ninja-shop"],"ninja_shop_address":["ninja-shop"],"mark_as_read_data":["mark-as-read"],"rpsl_config":["rapid-secure-login"],"rpsl_certificates":["rapid-secure-login"],"mwt_search_terms":["search-analytics"],"js_type":["jobsearch"],"mwt_search_history":["search-analytics"],"gform_form_page":["gf-form-locator"],"ib_countries":["inbound-brew"],"couponcodes":["coupon-code-plugin"],"classified_maker_wishlist":["classified-maker"],"plg_sp_answs":["simply-polls"],"plg_sp_ip":["simply-polls"],"wpyog_documents":["wpyog-documents"],"rpsl_devices":["rapid-secure-login"],"wpyog_categories":["wpyog-documents"],"plg_sp_polls":["simply-polls"],"gw_lookup":["icafe-library"],"shortcode_form":["icontact-infusionsoft-from-popup"],"widget_revisions":["widget-revisions"],"ib_leads":["inbound-brew"],"abtimeslotmst":["appointment-buddy-online-appointment-booking-by-accrete"],"rpsl_sessions":["rapid-secure-login"],"spotify":["wp-spotify"],"gw_sections":["icafe-library"],"gw_tiles":["icafe-library"],"migratepost_domains":["migrate-post"],"js_param":["jobsearch"],"js_skill":["jobsearch"],"wpthumbtack_post_templates":["wp-thumbtack-review-slider"],"playlists_yt":["playlist-for-youtube"],"bmp_bonus":["binary-mlm-plan"],"_exp_default":["arbitrage-expert"],"ib_contact_field":["inbound-brew"],"sm_entity_options":["connect-sociallymap"],"taxibooked":["fare-calculator"],"aho":["as-heard-on"],"js_experiment":["jobsearch"],"_containerrating":["star-review-manager"],"pwooapp_notify":["persian-woocommerce-app"],"gcpf_custom_products":["exportfeed-for-woocommerce-google-product-feed"],"gcp_feeds":["exportfeed-for-woocommerce-google-product-feed"],"sm_entities":["connect-sociallymap"],"lumia_calender":["lumia-calender"],"ib_campaign_step":["inbound-brew"],"bmp_commission":["binary-mlm-plan"],"js_basis":["jobsearch"],"vsq_questions":["very-simple-quiz"],"ffirewall_block_list":["fullworks-firewall"],"bmp_country":["binary-mlm-plan"],"svs_pricing_tables":["svs-pricing-tables"],"bmp_currency":["binary-mlm-plan"],"qcld_seo_help_urls_locations":["seo-help"],"ib_campaign_master":["inbound-brew"],"qcld_seo_help_scans":["seo-help"],"geodatastore":["geo-data-store","wp-geoloc"],"ib_linkedin_reports":["inbound-brew"],"js_category":["jobsearch"],"gen_ustsbooking_paymentmethods":["wp-booking-manager"],"gen_ustsbooking":["wp-booking-manager"],"vsq_filter_results":["very-simple-quiz"],"vsq_quizzes":["very-simple-quiz"],"ib_post_keyword":["inbound-brew"],"abholidaymst":["appointment-buddy-online-appointment-booking-by-accrete"],"directory_improvements":["directory-builder"],"directory_fields":["directory-builder"],"directory_booking":["directory-builder"],"gradebook_assignments":["an-gradebook"],"js_apply":["jobsearch"],"gradebook_cells":["an-gradebook"],"weallopass_stat":["wordpress-easy-allopass"],"ultimate_promo_hits":["ultimate-promo-code"],"directory_ads":["directory-builder"],"directory_activities":["directory-builder"],"scrolling_down_popup":["scrolling-down-popup-plugin"],"vxcf_zendesk_accounts":["cf7-zendesk"],"sm_options":["connect-sociallymap"],"_inventory_import":["cardealerpress"],"vxcf_zendesk":["cf7-zendesk"],"ultimate_promo_code":["ultimate-promo-code"],"directory_packages":["directory-builder"],"_inventory":["cardealerpress"],"ib_lead_views":["inbound-brew"],"realty_property_type":["realty"],"realty_property_period":["realty"],"realty_property_info":["realty"],"realty_currency":["realty"],"_inventory_import_1":["cardealerpress"],"vxcf_zendesk_log":["cf7-zendesk"],"adguru_ad_links":["wp-ad-guru"],"bauernregeln":["bauernregeln"],"js_api":["jobsearch"],"directory_support":["directory-builder"],"_exp_iframe":["arbitrage-expert"],"directory_registration":["directory-builder"],"sm_published":["connect-sociallymap"],"bbusagestats_track":["bb-usage-stats"],"weallopass_prod":["wordpress-easy-allopass"],"_inventory_1":["cardealerpress"],"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-php-fusion-to-wp-migration","cms2cms-plone-to-wp-migration","cms2cms-silverstripe-to-wp-migration","cms2cms-smf-to-bbpress-convertor","cms2cms-telerik-sitefinity-to-wp-migration","cms2cms-vbulletin-to-wp-migration","cms2cms-kentico-to-wp-migration","cms2cms-mybb-to-bbpress-convertor","cms2cms-ip-board-to-bbpress-migrator","cms2cms-e107-to-wp-migration","cms2cms-automated-kunena-to-bbpress-switch","cms2cms-automated-tumblr-to-wp-migration","cms2cms-automated-vbulletin-to-bbpress-migrator","cms2cms-b2evolution-to-wp-migration","cms2cms-datalife-engine-to-wp-convertor","cms2cms-dnn-software-to-wp-migrator"],"vsq_results":["very-simple-quiz"],"ib_campaign":["inbound-brew"],"wpthumbtack_reviews":["wp-thumbtack-review-slider"],"usermessages":["simple-chat"],"audior_permissions":["audio-comments"],"audior_comments":["audio-comments"],"easy_ads_taxnomy_sections_meta":["easy-ads-manager"],"js_applydetail":["jobsearch"],"schat_users":["simple-chat"],"ib_analytic_reports":["inbound-brew"],"schat_channels":["simple-chat"],"schat_channel_users":["simple-chat"],"likephoto_votes":["like-photo"],"abservicemst":["appointment-buddy-online-appointment-booking-by-accrete"],"abslotmappingdetails":["appointment-buddy-online-appointment-booking-by-accrete"],"ib_lead_history":["inbound-brew"],"wpsp_templates":["shopping-pages"],"easy_circles_contents":["easy-circle-content"],"_rating":["star-review-manager"],"_users":["star-review-manager"],"tzpost_optionset":["post-display"],"activity_log":["activity-logs"],"dimwwt_requests":["connect-with-telegram"],"audior_settings":["audio-comments"],"smc_message_published":["connect-sociallymap"],"smc_logs":["connect-sociallymap"],"tzpost_thumbnail":["post-display"],"_data":["cardealerpress"],"smc_entities":["connect-sociallymap"],"js_applyattachment":["jobsearch"],"smc_entities_categories":["connect-sociallymap"],"ip_comment_trace":["comment-ip-trace"],"reportattacks_loginlog":["reportattacks"],"tables_list_wooexp":["wp-tables"],"easy_circles_contents_data":["easy-circle-content"],"tfsl_songs":["tf-song-list"],"bmp_epins":["binary-mlm-plan"],"wpbc_stamp_txs":["wp-blockchain"],"abappointmentmst":["appointment-buddy-online-appointment-booking-by-accrete"],"lcache_events":["wp-lcache"],"bmp_royalty":["binary-mlm-plan"],"bmp_users":["binary-mlm-plan"],"afm_list":["appointment-form-manager"],"js_industry":["jobsearch"],"abadminprofiledetails":["appointment-buddy-online-appointment-booking-by-accrete"],"bmp_referral_commission":["binary-mlm-plan"],"fpcats":["sticky-front-page-categories-and-tags"],"konnichiwa_content":["konnichiwa"],"konnichiwa_files":["konnichiwa"],"gradebook_courses":["an-gradebook"],"konnichiwa_payments":["konnichiwa"],"wpbc_stamps":["wp-blockchain"],"konnichiwa_plans":["konnichiwa"],"bmp_rightposition":["binary-mlm-plan"],"ays_fbl":["ays-facebook-popup-likebox"],"konnichiwa_usage":["konnichiwa"],"ib_keywords":["inbound-brew"],"fare":["fare-calculator","asi-taxi-booking","asi-fare-map-calculator","asi-fare-calculator"],"sendsmaily_config":["sendsmaily-subscription-opt-in-form"],"wls_logs":["wordpress-logging-service"],"js_langused":["jobsearch"],"cs_settings":["wp-slide-categorywise"],"ib_facebook_reports":["inbound-brew"],"ez_subscribers":["eztexting-sms-notifications"],"tp_yahoo_finance":["top-position-yahoo-finance"],"lcache_tags":["wp-lcache"],"cso_my_income":["apm-child"],"webpush_subscription":["web-push"],"cso_options":["apm-child"],"cso_post_snippets":["apm-child"],"js_version":["jobsearch"],"bmp_product_price":["binary-mlm-plan"],"woo_quote_calculator":["woo-quote-calculator-order"],"konnichiwa_subscriptions":["konnichiwa"],"fpcats_tags":["sticky-front-page-categories-and-tags"],"js_lastupdt":["jobsearch"],"category_slider":["wp-slide-categorywise"],"ib_social_network_post_settings":["inbound-brew"],"act_stop_spam":["act-stop-spam"],"ib_social_network_post_setting_accounts":["inbound-brew"],"views_count":["content-stats"],"storelocatorwidget":["store-locator-widget"],"wp2pcloud_config":["wp2pcloud"],"views_date":["content-stats"],"wpbc_locks":["wp-blockchain"],"zws_antispam":["zws-wp-comments-anti-spam-hyperlink-blocker"],"campayn_forms":["campayn-email-newsletter-sign-up"],"ib_lead_data":["inbound-brew"],"ib_lead_fields":["inbound-brew"],"ib_social_network_post_records":["inbound-brew"],"ib_social_network_accounts":["inbound-brew"],"rocketgalleries":["rocket-galleries"],"laybuy_revision_reports":["put-it-on-lay-buy-powered-by-paypal-for-woocommerce"],"ib_states":["inbound-brew"],"wpsp_pages":["shopping-pages"],"webleesbookmark":["fixed-image-all-position-drag-and-drop"],"ib_lead_campaign_events_log":["inbound-brew"],"webleesbookmark_orders":["fixed-image-all-position-drag-and-drop"],"wpsp_ebaycache":["shopping-pages"],"appreplica_social_icons":["appreplica-social-icons"],"current_requests":["music-request-manager"],"wpbc_stamp_tx_confirmations":["wp-blockchain"],"_companies":["cardealerpress"],"laybuy_response":["put-it-on-lay-buy-powered-by-paypal-for-woocommerce"],"ib_twitter_reports":["inbound-brew"],"gradebook_users":["an-gradebook"],"ib_tracking_events":["inbound-brew"],"wpbc_stamp_trees":["wp-blockchain"],"wp2pcloud_logs":["wp2pcloud"],"as_tejus_slideshow":["image-slider"],"ib_emails":["inbound-brew"],"js_visa":["jobsearch"],"aff_logs":["affilicious"],"ib_downloads":["inbound-brew"],"js_currency":["jobsearch"],"ptest_answer":["ptest-personality-tests-for-wordpress"],"dday":["dday"],"wpsf_question_option":["wp-simple-forms"],"cpvg_list_views":["custom-post-view-generator"],"cpvg_post_views":["custom-post-view-generator"],"domain":["wp-domain-redirect"],"nari100_transactions":["nari-accountant"],"nari100_definitions":["nari-accountant"],"ptest_dimension":["ptest-personality-tests-for-wordpress"],"nari100_accounts":["nari-accountant"],"ib_ctas":["inbound-brew"],"ptest_main":["ptest-personality-tests-for-wordpress"],"ptest_question":["ptest-personality-tests-for-wordpress"],"ib_settings":["inbound-brew"],"ib_email_field":["inbound-brew"],"wpsf_question":["wp-simple-forms"],"wpsf_attendee_custom_question":["wp-simple-forms"],"cwp_custom_field_properties":["custom-write-panel"],"bmp_payout":["binary-mlm-plan"],"cwp_custom_field_options":["custom-write-panel"],"ib_email_templates":["inbound-brew"],"bmp_leftposition":["binary-mlm-plan"],"btpi":["post-ideas"],"ib_reports":["inbound-brew"],"svg_playlist":["simple-video-gallery"],"steam_group_widget":["steam-group-viewer"],"wls_entries":["wordpress-logging-service"],"wpsf_template":["wp-simple-forms"],"mf_timeline_stories":["wp-facebook-timeline-mf-timeline"],"em_main":["eventify"],"edoc_form_saved":["edoc-employee-application"],"cwp_panel_standard_field":["custom-write-panel"],"svg_video":["simple-video-gallery"],"cwp_standard_fields":["custom-write-panel"],"js_education":["jobsearch"],"ib_cta_post_linkages":["inbound-brew"],"cwp_write_panels":["custom-write-panel"],"cwp_panel_custom_field":["custom-write-panel"],"_container":["star-review-manager"],"sendsmaily_autoresp":["sendsmaily-subscription-opt-in-form"],"djisharelinks":["flodjishare"],"bmp_payout_master":["binary-mlm-plan"],"ib_email_track":["inbound-brew"],"xyz_wp_posts_filter":["wp-filter-posts"],"ib_cta_templates":["inbound-brew"],"cwp_panel_hidden_external_field":["custom-write-panel"],"ib_redirects":["inbound-brew"],"js_company":["jobsearch"],"emaillist":["ebook-download"],"cwp_panel_category":["custom-write-panel"],"cwp_custom_field_types":["custom-write-panel"],"url_table":["carousel-widget"],"azr_visitor_posts":["marketing-automation-by-azexo"],"zcf_form_list":["contact-form-z"],"up_down_post_vote_totals":["updownupdown-postcomment-voting"],"merlic_pollresult":["poll-lite"],"goodway":["goodway-group-pixel"],"up_down_post_vote":["updownupdown-postcomment-voting"],"hexam_userdata":["hexam"],"up_down_comment_vote":["updownupdown-postcomment-voting"],"zcf_form_list_history":["contact-form-z"],"elmttolink":["tag-to-link-jqueryrank-sculpting"],"hexam_testnames":["hexam"],"uposhta_invoices":["woo-ukrposhta"],"sogrid_objects":["sogrid-lite-social-networks-posts-grid"],"hexam_questions":["hexam"],"up_down_comment_vote_totals":["updownupdown-postcomment-voting"],"easy_todo":["wordpress-easy-todo"],"pbci_mail_control":["mail-queues"],"tap_log":["tweets-as-posts"],"pbci_mail_queue":["mail-queues"],"yardsale":["community-yard-sale"],"ecf":["contact-form-db-for-enfold"],"zcf_form_save":["contact-form-z"],"watuchimp_relations":["watu-bridge-to-mailchimp"],"webclap_comments":["wp-webclap","yet-another-webclap-for-wordpress"],"ecampaign_log":["ecampaign"],"amms_renewal":["association-membership-management-software"],"amms_members":["association-membership-management-software"],"panion_map_config":["companion-map"],"panion_map_mitglieder":["companion-map"],"socal_count_cache":["step-by-step-social-count-cache"],"skt_choose_currency_twocheckout":["skt-donation"],"wsc_gocodes":["wpneon-gocodes"],"webclap":["wp-webclap","yet-another-webclap-for-wordpress"],"linkedinclude_posts":["linkedinclude"],"inazo_tor_logs":["tor-blocker-by-inazo"],"guitar_tuners":["guitar-tuner"],"skt_choose_currency_paypal":["skt-donation"],"hatena_notation_link_titles":["wp-hatena-notation"],"testimonials_pro":["testimonials-pro"],"achievements":["wpachievements-free"],"merlic_poll":["poll-lite"],"member_db":["member-database"],"sogrid_object_meta":["sogrid-lite-social-networks-posts-grid"],"azr_page_visits":["marketing-automation-by-azexo"],"memeone_backgrounds":["memeone"],"memeone":["memeone"],"wf_ip_list":["world-flags"],"amazon_setting":["amazon-product-price"],"tbl_offlinechat":["live-chat-support-system"],"tbl_messages":["live-chat-support-system"],"tgdprc_settings":["total-gdpr-compliance-lite"],"tgdprc_custom_template":["total-gdpr-compliance-lite"],"sppl_fields":["supple-forms"],"tgdprc_consent_log":["total-gdpr-compliance-lite"],"skt_donation_amount":["skt-donation"],"etsy_treasury":["etsy-treasury-posting-tool"],"sppl_snips":["supple-forms"],"tbl_conversation":["live-chat-support-system"],"tbl_agents":["live-chat-support-system"],"zcf_form_list_post":["contact-form-z"],"sppl_lookup":["supple-forms"],"sppl_forms":["supple-forms"],"skt_country_type_currency":["skt-donation"],"edt_payments":["easy-donations"],"lbb":["lbb-little-black-book"],"agoda_countries":["old-to-new-agoda-link-converter"],"vxc_sales_accounts":["woo-salesforce-plugin-crm-perks"],"myadmanager_ads":["myadmanager"],"myadmanager_regions":["myadmanager"],"myadmanager_transactions":["myadmanager"],"wsf_form":["ws-form"],"dwrp_alert":["download-directory"],"vxc_sales_log":["woo-salesforce-plugin-crm-perks"],"wpcj_testimonials":["wpcj-testimonials"],"babe_discount":["ba-book-everything"],"base_locations":["wp-base-booking-of-appointments-services-and-events"],"wpla_logs":["wp-log-action"],"babe_order_itemmeta":["ba-book-everything"],"babe_order_items":["ba-book-everything"],"wsf_group_meta":["ws-form"],"babe_payment_tokenmeta":["ba-book-everything"],"piplus":["post-ideas-plus"],"agoda_settings":["old-to-new-agoda-link-converter"],"bns_email_news_open_track":["best-newsletter"],"twm_user_lessons_quizes":["memberwunder"],"wsf_section_meta":["ws-form"],"wsf_section":["ws-form"],"base_meta":["wp-base-booking-of-appointments-services-and-events"],"twm_user_lessons":["memberwunder"],"download_data":["fb-viral-downloader"],"ppc_tracker_archived":["ppc-fraud-detctor"],"babe_payment_tokens":["ba-book-everything"],"babe_rates":["ba-book-everything"],"pw_adboxes":["plugin-wonderful"],"wpc_entry":["wp-contest"],"wpc_phase_one_votiong":["wp-contest"],"wpc_phase_two_votiong":["wp-contest"],"wpci_id_associations":["products-csv-importer-for-woocommerce"],"wsf_form_meta":["ws-form"],"wsf_form_stat":["ws-form"],"wsf_submit":["ws-form"],"svs_shortlinks":["svs-shortlink-analytics"],"companion_map_mitglieder":["companion-map"],"bns_email_news_list_extra":["best-newsletter"],"adv_reviews":["advanc-link-directory"],"nl_localizations":["nlingual"],"bns_email_news_sending_slots":["best-newsletter"],"companion_map_config":["companion-map"],"svs_statistics":["svs-shortlink-analytics"],"babe_av_cal":["ba-book-everything"],"babe_booking_rules":["ba-book-everything"],"wiqet":["wiqet-photo-voice-and-webcam-video-personal-presentation-plugin"],"bns_email_news_templ":["best-newsletter"],"mlq_mail_users":["email-queue"],"mlq_mail_send":["email-queue"],"mlq_mail_plugins":["email-queue"],"dynamic_custom_url_seo":["dynamic-url-seo"],"wsf_group":["ws-form"],"bns_email_new_sending_extra":["best-newsletter"],"wp_a_log":["wp-activity-log"],"affilinker_db":["affilinker"],"affilinker_db_stat":["affilinker"],"affilinker_db_stat_uniq":["affilinker"],"bns_email_new_sending":["best-newsletter"],"ispconfig_invoice":["wp-ispconfig3","wc-invoice-pdf"],"base_bookings":["wp-base-booking-of-appointments-services-and-events"],"dynamic_custom_url_seo_schema":["dynamic-url-seo"],"bns_email_news_unsubscribe_track":["best-newsletter"],"bns_email_news_templ_track":["best-newsletter"],"qnibus_naversyndication":["naver-syndication"],"bns_email_new_temp_all_track":["best-newsletter"],"bns_email_new_temp_link":["best-newsletter"],"bns_email_news_list":["best-newsletter"],"noshop_product_specs":["noshop"],"ppc_tracker":["ppc-fraud-detctor"],"nl_translations":["nlingual"],"bhn_v2_setting":["blue-hat-cdn"],"aparg_flexslider":["aparg-slider"],"prt_statistics":["immobilien-leadgenerator"],"prtools_pr":["pagerank-tools"],"prtools_url":["pagerank-tools"],"wpc_contests":["wp-contest"],"cptslotsbk_forms":["wp-time-slots-booking-form"],"cptslotsbk_messages":["wp-time-slots-booking-form"],"cte":["wp-basic-crud"],"ajax_faq_categories":["wp-responsive-faqs"],"wsf_field":["ws-form"],"plugin_settings":["instant-gallery"],"wsf_field_meta":["ws-form"],"tp_google_finance":["top-position-google-finance"],"bhn_v2_setting_tmp":["blue-hat-cdn"],"bhn_v2_mesh_hash_requests":["blue-hat-cdn"],"prt_requests":["immobilien-leadgenerator"],"bhn_v2_file":["blue-hat-cdn"],"kb_recipes":["kitchenbug"],"kb_recipes_only":["kitchenbug"],"ajax_faq_cat":["wp-responsive-faqs"],"ajax_faq":["wp-responsive-faqs"],"kcaptcha_setting":["kcaptcha"],"tracker_peers":["katracker"],"base_workers":["wp-base-booking-of-appointments-services-and-events"],"shortener_cache":["surly"],"azr_visitor_tags":["marketing-automation-by-azexo"],"bhn_v2_mesh_hash_data":["blue-hat-cdn"],"base_wh_w":["wp-base-booking-of-appointments-services-and-events"],"azr_visitors":["marketing-automation-by-azexo"],"gallerymeta":["gallery-stacked-slideshow"],"galleryfield":["gallery-stacked-slideshow"],"aparg_flexslider_options":["aparg-slider"],"plugin_audit":["plugin-auditor"],"ugf_fields":["data-collection-form"],"wc_shop_category":["webful-simple-grocery-shop"],"wsf_submit_meta":["ws-form"],"wc_order_meta":["webful-simple-grocery-shop"],"wc_orders":["webful-simple-grocery-shop"],"vw_videocomrecordings":["video-comments-webcam-recorder"],"ugf_fields_attributes":["data-collection-form"],"wc_product_menu":["webful-simple-grocery-shop"],"ugf_fields_validations":["data-collection-form"],"base_wh_a":["wp-base-booking-of-appointments-services-and-events"],"babe_rates_meta":["ba-book-everything"],"ugf_forms":["data-collection-form"],"base_transactions":["wp-base-booking-of-appointments-services-and-events"],"base_services":["wp-base-booking-of-appointments-services-and-events"],"tzcustom_thumbnail":["custom-post-slider"],"wsf_wizard":["ws-form"],"newsticker_aink":["newsticker-aink"],"noshop_products":["noshop"],"tzcustom_optionset":["custom-post-slider"],"base_wh_s":["wp-base-booking-of-appointments-services-and-events"],"wsf_wizard_category":["ws-form"],"aparg_flexslider_sliders":["aparg-slider"],"iboard_setting":["iboard"],"iboard_meta":["iboard"],"custom_wa":["power-widgets-lite"],"ced_umb_ebayprofiles":["product-lister-ebay"],"fresh_page_reports":["fresh-connect"],"prototypes_wa":["power-widgets-lite"],"simpleal_slider":["simple-al-slider"],"overriding_prot_wa":["power-widgets-lite"],"banner_sliders":["jquery-banner-rotate"],"simpleal_images":["simple-al-slider"],"ibeffects_layers":["image-banner-effects-lite"],"cbxrbooking_log_manager":["cbx-restaurant-booking"],"cbxrbooking_branch_manager":["cbx-restaurant-booking"],"vxcf_dynamics":["cf7-dynamics-crm"],"vxcf_dynamics_accounts":["cf7-dynamics-crm"],"vxcf_dynamics_log":["cf7-dynamics-crm"],"ced_umb_ebay_description_templates":["product-lister-ebay"],"el_email_sent_subscribers":["email-list"],"fancybox":["schmancy-box"],"el_subscribers":["email-list"],"ela_log":["elderlawanswers-post-importer"],"fresh_page_stats":["fresh-connect"],"iboard_comment":["iboard"],"ccwca_cryptocurrencies":["cryptocurrency-widgets-using-coingecko-api"],"iboard_item":["iboard"],"pluginstalkplinkeroptions":["post-linker"],"pluginstalkplinker":["post-linker"],"csh_callback_request":["csh-callback"],"el_email_sent":["email-list"],"smareviewsb":["quick-business-website"],"wptb":["wp-tweet-plus"],"ced_umb_ebayfiletracker":["product-lister-ebay"],"cluevo_modules_progress":["cluevo-lms"],"wpcommerce_customer_meta":["webinane-commerce"],"visitor_analytics_visitors":["visitor-analytics"],"postoftheday":["post-of-the-day"],"default_wa":["power-widgets-lite"],"visitormailer":["visitor-mailer"],"kg":["knowledge-google-par-jm-crea"],"jmk_alt_tags":["image-alt-tager"],"donate_form":["idonateie-donate-now"],"database_autobackup":["wp-auto-backup"],"visitor_analytics_fingerprint":["visitor-analytics"],"rpd_relations":["related-pages"],"visitor_analytics":["visitor-analytics"],"fmecfa_fields":["fma-additional-checkout-attributes"],"fmecfa_meta":["fma-additional-checkout-attributes"],"mytweetlinks_plg_tweets":["mytweetlinks"],"vxg_zoho_log":["gf-zoho"],"vxg_zoho_accounts":["gf-zoho"],"hst_tickets_statuses":["helpdesk-support-tickets"],"hst_tickets_priorities":["helpdesk-support-tickets"],"rpd_related_pages":["related-pages"],"rpd_settings":["related-pages"],"hst_tickets_categories":["helpdesk-support-tickets"],"bibliplug_creators":["enhanced-bibliplug"],"new_simple_gallery":["new-simple-gallery"],"itormailer":["visitor-mailer"],"post_email_subscriber":["post-to-email"],"job_castrop_events":["rich-snippets-vevents"],"job_castrop_event_lists":["rich-snippets-vevents"],"logy_users":["logy"],"bibliplug_bibliography":["enhanced-bibliplug"],"bibliplug_creatortypes":["enhanced-bibliplug"],"rpd_titles":["related-pages"],"bibliplug_fields":["enhanced-bibliplug"],"fiddlemail_wblist":["fiddlemail"],"fiddlemail_log":["fiddlemail"],"bibliplug_typecreatortypes":["enhanced-bibliplug"],"bibliplug_typefields":["enhanced-bibliplug"],"bibliplug_types":["enhanced-bibliplug"],"bibliplug_zoteroconnections":["enhanced-bibliplug"],"hst_tickets_events":["helpdesk-support-tickets"],"hst_tickets":["helpdesk-support-tickets"],"multix":["multix"],"banners":["jquery-banner-rotate","apa-banner-slider"],"subme":["subme"],"sh9_betakeys":["wp-keys-giveaway"],"bookings_states":["resource-booking-and-availability-calendar"],"customslider_settings":["wp-custom-slider"],"agilepress_lookup_values":["agilepress"],"customslider_images":["wp-custom-slider"],"agilepress_lookup_types":["agilepress"],"simple_graph":["simple-graph"],"wpcommerce_sessions":["webinane-commerce"],"wpcommerce_payment_tokens":["webinane-commerce"],"wpcommerce_payment_tokenmeta":["webinane-commerce"],"wpcommerce_order_items":["webinane-commerce"],"cartypes":["asi-taxi-booking","asi-fare-map-calculator","asi-fare-calculator"],"weblizar_testimonials":["testimonial-by-weblizar"],"wpcommerce_log":["webinane-commerce"],"wpcommerce_customers":["webinane-commerce"],"subme_queue":["subme"],"fastflow_settings":["fast-flow-dashboard"],"roveridx_tracking":["rover-idx"],"eip_rule":["easy-ip-redirection"],"rtseo_analytics":["realtime-seo"],"rtseo_content_protection":["realtime-seo"],"hst_attachments":["helpdesk-support-tickets"],"vxg_zoho":["gf-zoho"],"supracsvparser_plugin_presets":["supra-csv-parser"],"support_reply_noti":["wp-support-ticket"],"support_reply":["wp-support-ticket"],"support_attachment":["wp-support-ticket"],"mynearbyplaces_sub_category":["wp-nearby-places-basic"],"lwp_transaction":["literally-wordpress"],"mynearbyplaces_category":["wp-nearby-places-basic"],"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"],"bookings":["resource-booking-and-availability-calendar"],"crm_company":["dx-sales-crm"],"toolshot_player":["toolshot-player"],"bookme_pro_sub_services":["bookme-pro-free-appointment-booking-system"],"xeroom_license_key_status":["xeroom"],"crm_roadmap":["dx-sales-crm"],"cluevo_user_exp_log":["cluevo-lms"],"exercise_log":["walking-log"],"bookme_pro_staff_services":["bookme-pro-free-appointment-booking-system"],"exercise_location":["walking-log"],"admin_user_message_settings":["admin-user-messages"],"admin_user_message":["admin-user-messages"],"xeroom_credentials":["xeroom"],"bp_group_chat_online":["bp-group-chatroom"],"123flashchat":["wordpress-chat-plugin-by-123-flash-chat"],"esp_question_allowed_ext":["files-addon-for-event-espresso-4"],"ex_subset":["exam-matrix"],"ex_set":["exam-matrix"],"bookme_pro_schedule_item_breaks":["bookme-pro-free-appointment-booking-system"],"sms4wp_templates":["sms4wp"],"bookme_pro_sent_notifications":["bookme-pro-free-appointment-booking-system"],"pets_fields":["pets"],"bp_group_chat":["bp-group-chatroom"],"bp_group_chat_threads":["bp-group-chatroom"],"rank4win_app":["rank4win"],"quranaday":["quran-verse-a-day"],"es_category":["business-card-by-esterox-100"],"amaps_markers":["wp-map"],"pike_firewall_crawl_fake_ip":["pike-firewall"],"cluevo_languages":["cluevo-lms"],"amaps_locations":["wp-map"],"amaps_countries":["wp-map"],"bookme_pro_staff_schedule_items":["bookme-pro-free-appointment-booking-system"],"indicadores_economicos":["indicadores-economicos"],"bp_group_chat_updates":["bp-group-chatroom"],"cluevo_competences_to_areas":["cluevo-lms"],"cluevo_competences":["cluevo-lms"],"sm_sql_logs":["sm-sql-logs"],"infusionsoft_forms":["wp-infusionsoft"],"exercise_type":["walking-log"],"cluevo_competence_areas":["cluevo-lms"],"vssgv_gallery":["vertical-scroll-slideshow-gallery-v2"],"xeroom_tax":["xeroom"],"pets_fields_sections":["pets"],"rank4win_document":["rank4win"],"quizleads_tbl":["quizleads"],"old_default_wa":["power-widgets-lite"],"pike_firewall_range_ip":["pike-firewall"],"pike_firewall_login":["pike-firewall"],"great_caroussels_contents":["great-caroussel"],"pike_firewall_log_crawlers":["pike-firewall"],"great_caroussels":["great-caroussel"],"sms4wp_groups":["sms4wp"],"pike_firewall_log":["pike-firewall","tor-exit-nodes-blocker"],"pike_firewall_ip_range":["tor-exit-nodes-blocker"],"upper_winds":["aviation-weather-briefing"],"bookme_pro_services":["bookme-pro-free-appointment-booking-system"],"pike_firewall_filesystem_scan":["pike-firewall"],"pike_firewall_crawl_range_ip":["pike-firewall"],"adback_account":["adback-solution-to-adblock"],"adback_end_point":["adback-solution-to-adblock"],"adback_full_tag":["adback-solution-to-adblock"],"pike_firewall_crawl_ip":["pike-firewall"],"als_log":["ajax-live-search"],"adback_myinfo":["adback-solution-to-adblock"],"bookme_pro_staff":["bookme-pro-free-appointment-booking-system"],"bookme_pro_series":["bookme-pro-free-appointment-booking-system"],"rank4win_process":["rank4win"],"sms4wp_sends":["sms4wp"],"rank4win_taxonomy":["rank4win"],"ex_session":["exam-matrix"],"ex_result":["exam-matrix"],"swx":["aviation-weather-briefing"],"amaps_configs":["wp-map"],"als_index":["ajax-live-search"],"ex_questions":["exam-matrix"],"replacement_wa":["power-widgets-lite"],"sms4wp_receivers":["sms4wp"],"pike_firewall_single_ip":["pike-firewall","tor-exit-nodes-blocker"],"sms4wp_options":["sms4wp"],"cluevo_user_groups":["cluevo-lms"],"admin_bar_table":["easy-custom-admin-bar"],"xeroom_debug":["xeroom"],"amaps_categories":["wp-map"],"cluevo_users_to_groups":["cluevo-lms"],"ex_mapping":["exam-matrix"],"rbookinglogs":["cbx-restaurant-booking"],"es_bcard":["business-card-by-esterox-100"],"amaps_locations_categories":["wp-map"],"widgets_table":["create-custom-dashboard-widget"],"cluevo_tree_module_dependencies":["cluevo-lms"],"moolamojo_products":["moolamojo"],"moolamojo_packages":["moolamojo"],"moolamojo_orders":["moolamojo"],"moolamojo_levels":["moolamojo"],"wp_key_mon_keyword_results":["wp-keyword-monitor"],"ayspoll_answers":["poll-maker"],"ydn_downloads_history":["ydn-download"],"wp_key_mon_keywords":["wp-keyword-monitor"],"nv_slider":["nv-slider"],"masklinks":["affiliate-tools-viet-nam"],"month_firstdate":["xllentech-english-islamic-calendar"],"month_days":["xllentech-english-islamic-calendar"],"branch_manager":["cbx-restaurant-booking"],"kshelf_sales":["bookshelf"],"bookme_pro_appointments":["bookme-pro-free-appointment-booking-system"],"ayspoll_categories":["poll-maker"],"cluevo_tree_modules":["cluevo-lms"],"ispring_data":["embed-ispring"],"moolamojo_transactions":["moolamojo"],"cluevo_tree_item_types":["cluevo-lms"],"pbl_listings":["paid-business-listings"],"wdm_download_records":["woo-download-monitor"],"crm_project":["dx-sales-crm"],"crm_customer":["dx-sales-crm"],"cf7_dbt_entries":["cf7-db-tool"],"cf7_dbt_forms":["cf7-db-tool"],"cluevo_scorm_parameters":["cluevo-lms"],"cluevo_tree":["cluevo-lms"],"movdb_sources":["movie-database"],"uniquep2views":["unique-post-view-conter"],"movdb_screenings":["movie-database"],"back_link":["back-link-tracker"],"movdb_reservations":["movie-database"],"movdb_movies":["movie-database"],"social_shares_report":["word-count-and-social-shares"],"recipe_schema_ingredients":["recipe-schema"],"simpleal_slides":["simple-al-slider"],"bookme_pro_staff_preference_orders":["bookme-pro-free-appointment-booking-system"],"cluevo_tree_dependencies":["cluevo-lms"],"gautohyperlink":["g-auto-hyperlink"],"simpleal_texts":["simple-al-slider"],"cluevo_modules_competences":["cluevo-lms"],"pbl_categories":["paid-business-listings"],"adback_token":["adback-solution-to-adblock"],"gestion_tarif":["gestion-tarifs"],"bookme_pro_notifications":["bookme-pro-free-appointment-booking-system"],"cluevo_module_types":["cluevo-lms"],"oqey_header":["oqey-headers"],"xyz_cfl_group":["custom-field-manager"],"wiw_type":["where-i-was-where-i-will-be"],"wiw_locals":["where-i-was-where-i-will-be"],"xyz_cfl_fields":["custom-field-manager"],"bookme_pro_payments":["bookme-pro-free-appointment-booking-system"],"ayspoll_reports":["poll-maker"],"cluevo_user_data":["cluevo-lms"],"testimonials":["web-testimonials","rotating-testimonial","client-testimonials-quotes"],"active_login":["rnd-active-login"],"links_stats":["affiliate-tools-viet-nam"],"cluevo_module_mime_types":["cluevo-lms"],"searchlog":["log-searches"],"amazon_link_cache":["recipe-schema"],"clearent_transaction":["clearent-payments"],"cluevo_modules":["cluevo-lms"],"upela_connector":["upela-e-commerce-connector"],"bookme_pro_coupon_services":["bookme-pro-free-appointment-booking-system"],"cluevo_tree_perms":["cluevo-lms"],"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_categories":["bookme-pro-free-appointment-booking-system"],"ayspoll_polls":["poll-maker"],"social_media_email_alerts":["social-media-email-alerts"],"tags_stats":["fast-flow-dashboard"],"mcpu_customized_plugins":["manage-customized-plugin-updates"],"pbl_trans_log":["paid-business-listings"],"pbl_packages":["paid-business-listings"],"bookme_pro_holidays":["bookme-pro-free-appointment-booking-system"],"bw_helpdesk_tickets":["bravowp-helpdesk"],"wpsc_templates":["wp-support-centre"],"warehouse":["small-package-quotes-wwe-edition","ltl-freight-quotes-worldwide-express-edition","ltl-freight-quotes-cerasis-edition"],"bw_helpdesk_notifications":["bravowp-helpdesk"],"bw_category_1":["bet-on-sports"],"bepro_listings_realestate_types":["bepro-listings-real-estate"],"bepro_listings_realestate":["bepro-listings-real-estate"],"bw_helpdesk_attachments":["bravowp-helpdesk"],"bw_category":["bet-on-sports"],"bw_helpdesk_messages":["bravowp-helpdesk"],"signupmeta":["wp-user-signups"],"bw_helpdesk_categories":["bravowp-helpdesk"],"wpsc_threads":["wp-support-centre"],"wpsc_threads_read":["wp-support-centre"],"likertm_qcats":["likert-survey-master"],"sitehealth_errorlog":["site-health"],"social_to_post":["social-media-integration"],"social_keys":["social-media-integration"],"leadeo_lite_temp":["leadeo-lite"],"leadeo_lite_data":["leadeo-lite"],"leadeo_lite":["leadeo-lite"],"slidorion":["slidorion"],"seomonitor_ranks":["seo-monitor"],"wcwizard_posts":["word-count-wizard"],"seomonitor_keywords":["seo-monitor"],"selfshortener_url":["self-shortener"],"_categories":["weecomments"],"lo_optin_forms":["leadoutcome"],"author_details_db":["author-details"],"im_wp_linker_lite_related_temp":["im-wp-linker-lite-for-woocommerce"],"im_wp_linker_lite_related":["im-wp-linker-lite-for-woocommerce"],"_comments":["weecomments"],"send_to_twitter":["send-to-twitter"],"bw_item_1":["bet-on-sports"],"yblog":["yblog-stats"],"_comments_replies":["weecomments"],"_products":["weecomments"],"s3_image_queue":["wp-s3"],"wpstacker_posted_links":["wp-stacker"],"jk_login_log":["jeffrey-keijzer-wp-login-count"],"ir_submissions":["inbound-rocket"],"ir_emails":["inbound-rocket"],"ir_leads":["inbound-rocket"],"ir_pageviews":["inbound-rocket"],"sm_object_permissions":["wp-snakemember-integration"],"wpsc_tickets":["wp-support-centre"],"wpsc_tickets_recurring":["wp-support-centre"],"likabradashboard":["dashboard-info"],"ir_shares":["inbound-rocket"],"likeit":["like-it"],"smugmug_widget":["smugmug-widget"],"likertm_choices":["likert-survey-master"],"likertm_questions":["likert-survey-master"],"likertm_surveys":["likert-survey-master"],"likertm_takings":["likert-survey-master"],"likertm_user_answers":["likert-survey-master"],"ir_tag_relationships":["inbound-rocket"],"simplepayulatam_trans":["simple-payu-latam"],"ir_tags":["inbound-rocket"],"bw_item":["bet-on-sports"],"wpfilmlist_jre_saved_film_log":["wpfilmlist"],"bw_sports":["bet-on-sports"],"bw_sports_1":["bet-on-sports"],"project_clients":["wp-project"],"project_projects":["wp-project"],"project_tasks":["wp-project","project-tasks"],"appointment_data":["ink-appointment-booking"],"cubesliderconfig":["cube-slider"],"ftm_task_lists":["simple-tasks-todos"],"wswl_product_list":["wc-simple-waiting-list"],"rksheet_class":["emarksheet"],"wswl_product_list_log":["wc-simple-waiting-list"],"ps_puffar_relations":["puffar"],"gallary_setting":["youtube-gallery"],"wt_wishlists":["wt-woocommerce-wishlist"],"wkg_kml_list":["simple-kml-generator"],"wkg_kml_index":["simple-kml-generator"],"countdown":["wp-countdown"],"profile_editor_fields":["profile-editor"],"rksheet_marks":["emarksheet"],"copyscape":["copyscape"],"mx_seo_ignore":["matrixseo"],"da_ga_settings":["goanimate"],"alate_offers":["escalate-network-affiliate-plugin"],"alate_offer_files":["escalate-network-affiliate-plugin"],"da_ga_effects":["goanimate"],"fodds_customization":["football-odds"],"fodds_settings":["football-odds"],"mx_seo_urls":["matrixseo"],"mx_seo_history":["matrixseo"],"rksheet_setting":["emarksheet"],"mx_seo_actions":["matrixseo"],"price_excel":["import-excel"],"rksheet_subject":["emarksheet"],"rksheet_student":["emarksheet"],"pro_registration_detail":["paypal-frontend-registration"],"pro_temp_users":["paypal-frontend-registration"],"sts_options":["simple-support-ticket-system"],"traitwareapprovals":["traitware-login-manager"],"traitwarelogins":["traitware-login-manager"],"dae_links":["download-after-email"],"upzfilemanager_folders":["unpointzero-filemanager"],"clm_applicants":["car-loan-application-and-calculator-module"],"wfs_editor_fonts":["webfontswordpressjsonwitheditor","webfontswordpressxmlwitheditor"],"wfs_configure":["webfontswordpressjsonwitheditor","webfontswordpressxmlwitheditor","webfontswordpressxmlwithouteditor"],"registration_control":["registration-control"],"registrationuser":["user-drop-down-roles-in-registration"],"upzfilemanager_files":["unpointzero-filemanager"],"upzfilemanager_group":["unpointzero-filemanager"],"upi_invoice_template":["ultimate-pdf-invoice"],"upzfilemanager_userfiles":["unpointzero-filemanager"],"sq_questions":["screening-questions-for-wp-job-manager"],"user_chat":["wp-ajax-user-chat"],"sq_answers":["screening-questions-for-wp-job-manager"],"gtg_ap":["gtg-audio-player"],"gtg_ap_options":["gtg-audio-player"],"gtg_ap_songs":["gtg-audio-player"],"clm_co_buyers":["car-loan-application-and-calculator-module"],"globalcontentbybb":["global-content"],"traitwareusers":["traitware-login-manager"],"wukstats":["wukch-dns-prefetch-prerender"],"wkg_kml_cache":["simple-kml-generator"],"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"],"conferencer_shortcode_cache":["conferencer"],"ssjp":["slippy-slider-responsive-touch-navigation-slider"],"ucwp_items":["ultracart-ecommerce-shopping-cart"],"collectiveaccess_cache":["wp-collectiveaccess"],"mk_form_name":["mailkitchen-official-plugin"],"mk_form_content":["mailkitchen-official-plugin"],"mk_connect":["mailkitchen-official-plugin"],"give_it_away":["give-it-away-now"],"rav_cav_session":["currently-active-visitors"],"ucwp_item_post_rel":["ultracart-ecommerce-shopping-cart"],"da_goanimate":["goanimate"],"c_messages":["text-message-contact-form"],"gtt":["go-to-top-button"],"thirukural_explanation":["tamil-thirukural"],"optify_form":["optify-for-wordpress"],"perso_product_buy":["perso-recommendation-engine-for-woocommerce"],"perso_product_views":["perso-recommendation-engine-for-woocommerce"],"perso_visitor_views":["perso-recommendation-engine-for-woocommerce"],"thirukural":["tamil-thirukural"],"obk_texts":["oui-booking"],"team_bullet_list_ultimate_list":["bullet-list"],"obk_spaces":["oui-booking"],"obk_shortcodes":["oui-booking"],"obk_parameters":["oui-booking"],"obk_options":["oui-booking"],"obk_modifyprice_spaces":["oui-booking"],"obk_modifyprice_bookings":["oui-booking"],"obk_modifyprice":["oui-booking"],"team_bullet_list_ultimate_style":["bullet-list"],"obk_locations":["oui-booking"],"tbank_users_statustype":["timebank-system"],"td_tts_settings":["td-ticket-system"],"td_tts_responses":["td-ticket-system"],"td_tts_messages":["td-ticket-system"],"td_tts_departments":["td-ticket-system"],"zvideo_management":["fma-media-gallery"],"zvideo_settings":["fma-media-gallery"],"password_log":["prevent-password-reuse"],"tbank_users_alerttype":["timebank-system"],"enit_order_details":["small-package-quotes-wwe-edition"],"tbank_users":["timebank-system"],"tbank_exchange_statustype":["timebank-system"],"tbank_exchange_manager":["timebank-system"],"tbank_exchange_denegationtype":["timebank-system"],"tbank_exchange":["timebank-system"],"tbank_conf":["timebank-system"],"emojiemo_emojis":["emoji-reactions"],"pictagger":["wp-pic-tagger"],"obk_bookings":["oui-booking"],"dae_subscribermeta":["download-after-email"],"deals":["shareasale-dealsbar"],"post_feed_seo":["feed-seo"],"wpeuc_data":["wp-energy-usage-calculator"],"dietmaster":["dietmaster-pro-nutrition"],"aipwp_ads":["ads-inside-post-aipwp"],"demon_imagenote":["demon-image-annotation"],"firedrum_wc_customer_carts":["firedrum-email-marketing"],"wpfilmlist_jre_list_dynamic_db_names":["wpfilmlist"],"dls_error_log":["error-manager"],"wpfilmlist_jre_movie_quotes":["wpfilmlist"],"wpfilmlist_jre_saved_film_for_widget":["wpfilmlist"],"wpfilmlist_jre_user_options":["wpfilmlist"],"c_settings":["text-message-contact-form"],"pp_album_review2_comment_table":["albumreviewer"],"pp_album_review2_page_table":["albumreviewer"],"dae_subscribers":["download-after-email"],"displayembeddedvideosbydb":["display-embedded-videos-by-dbiota"],"wow_brmp":["border-menu"],"all_in_one_post_ratings":["wp-category-tag-ratings"],"njt_fb_mess_senders":["fb-messenger-bulksender"],"dynamicsync_settings":["dynamicsync"],"du":["wp-display-users"],"plugin_dir_stats":["plugin-directory-stats"],"njt_fb_mess_pages":["fb-messenger-bulksender"],"feedbacks_summary":["rate-this-page-plugin"],"njt_fb_mess_category_sender":["fb-messenger-bulksender"],"njt_fb_mess_categories":["fb-messenger-bulksender"],"wpcui_custom_template":["wp-cookie-user-info"],"dingpages":["html-landing-page"],"wpcui_settings":["wp-cookie-user-info"],"feed_seo":["feed-seo"],"megaoptim_opt":["megaoptim-image-optimizer"],"ftm_tasks":["simple-tasks-todos"],"cb_transactions":["wp-clickbank-vendor"],"classdex_customers":["classdex"],"abr_tests":["ab-rankings-testing-tool"],"rf_modifyprice_bookings":["reservation-facile"],"rf_modifyprice":["reservation-facile"],"rpam_shortcodes":["rp-ads-manager"],"rpam_rel":["rp-ads-manager"],"rpam_options":["rp-ads-manager"],"rf_locations":["reservation-facile"],"rf_bookings":["reservation-facile"],"classdex_classes":["classdex"],"classdex_payments":["classdex"],"rf_parameters":["reservation-facile"],"wpsc_status":["wp-support-centre"],"utt_lectures_view":["unitimetable"],"cb_customers":["wp-clickbank-vendor"],"audio_tracklist":["playlist-audio-player"],"rpam_groups":["rp-ads-manager"],"au_urls":["auto-url"],"rpam_codes":["rp-ads-manager"],"rpam_ads":["rp-ads-manager"],"cb_access":["wp-clickbank-vendor"],"rf_modifyprice_spaces":["reservation-facile"],"utt_teachers":["unitimetable"],"ssfade":["wp-crossfade"],"matches_matches":["matches"],"utt_groups":["unitimetable"],"chapitres":["chapters"],"utt_holidays":["unitimetable"],"utt_events":["unitimetable"],"utt_classrooms":["unitimetable"],"utt_attribute_taxonomies":["ultimate-travel"],"ce_sswidget_leagues":["webeki-soccer-scores"],"bandcamplib":["dq-bandcamp-library"],"log_users":["separate-login"],"matches_teams":["matches"],"wpsc_piping_preview":["wp-support-centre"],"atpf_options":["add-to-post-footer"],"log_translate":["separate-login"],"log_sessions":["separate-login"],"sumuixcareer":["career-work-with-us"],"wpsc_notifications":["wp-support-centre"],"utt_lectures":["unitimetable"],"rf_spaces":["reservation-facile"],"rf_shortcodes":["reservation-facile"],"bw_tournament_1":["bet-on-sports"],"abr_test_urls":["ab-rankings-testing-tool"],"xola_listings":["xola-bookings-for-tours-activities"],"classdex_registrations":["classdex"],"wpsc_settings":["wp-support-centre"],"madeit_forms":["forms-by-made-it"],"wpsc_imap":["wp-support-centre"],"yanewsletter_emails":["yet-another-newsletter"],"wpsc_priority":["wp-support-centre"],"wpsc_account":["wp-support-centre"],"utt_subjects":["unitimetable"],"utt_periods":["unitimetable"],"cformssubmissions":["cforms2-old-tracking-db"],"wpsc_categories":["wp-support-centre"],"madeit_form_inputs":["forms-by-made-it"],"cformsdata":["cforms2-old-tracking-db"],"cat_sub_categories_users":["category-subscriptions"],"hover_image":["hover-image-and-text"],"hkp_reactions_posts":["wp-reactions-box"],"bw_tournament":["bet-on-sports"],"wpsc_additional_fields_meta":["wp-support-centre"],"wpsc_reminders":["wp-support-centre"],"cat_sub_messages":["category-subscriptions"],"pricingtableconfig":["triple-pricing-table"],"komtetkassa_reports":["komtetkassa"],"fms2018_fazy":["bet-wc-2018-russia"],"mw_faktury":["fakturace"],"fms2018_mecze":["bet-wc-2018-russia"],"dam_bid":["dutch-auction-masters"],"izeechat":["izeechat"],"form_manage_order":["devnet-eantrm"],"share_posts":["eelv-share-post"],"dam_auction":["dutch-auction-masters"],"dam_order":["dutch-auction-masters"],"dam_shipping_address":["dutch-auction-masters"],"w4c_widget":["widget4call"],"dashylite":["dashylite"],"cuv_log":["count-unique-visitors-widget"],"manage_link_shortcode":["devnet-eantrm"],"woomotiv_custom_popups":["woomotiv"],"cuterecords_tracks":["bizarski-cute-records"],"woomotiv_stats":["woomotiv"],"cuterecords":["bizarski-cute-records"],"bsk_files_manager_cats":["bsk-files-manager"],"form_manage_lead":["devnet-eantrm"],"shared_article_subscriptions":["wl-article-adopter"],"jcsp_post_permalinks":["jadedcoder-sticky-permalinks"],"sume_clientes_conf":["sumeclientes"],"art_images":["art-picture-gallery"],"wdl_pedigree_person":["lyons-barton-family-history-and-genealogy-pedigree-chart"],"blope_donation_buttons":["bloks-stripe-donation"],"snapcam":["wp-snapcam"],"bxgastats":["google-analytics-link-builder"],"followize_fields":["followize"],"followize_form":["followize"],"followize_form_fields":["followize"],"sume_clientes_paginas":["sumeclientes"],"jcsp_category_permalinks":["jadedcoder-sticky-permalinks"],"wdl_pedigree_marriage":["lyons-barton-family-history-and-genealogy-pedigree-chart"],"sume_clientes_variaciones":["sumeclientes"],"fms2018_typy":["bet-wc-2018-russia"],"fms2018_stadiony":["bet-wc-2018-russia"],"art_user":["art-picture-gallery"],"idcard_users":["smart-id"],"ect_timers":["easy-countdown-timer"],"kvcodes_email":["kv-send-email-from-admin"],"mytext_link":["own-text-links"],"bsk_files_manager_files":["bsk-files-manager"],"bxgalinks":["google-analytics-link-builder"],"fms2018_panstwa":["bet-wc-2018-russia"],"amo_shortcodes_cache":["wp-amo"],"netblog_footprint":["netblog"],"tejus_djcat":["tejus-add-cat-image"],"mactrak_route":["mactrak"],"socialfeed_plugin_data":["social-feed"],"mactrak_markers":["mactrak"],"f_a_link_performance":["fast-affiliate"],"simple_network_login_log":["simple-multisite-login-log"],"wpcht_chat":["wp-user-chat"],"draugiem_users":["draugiem-pase"],"mactrak_markertypes":["mactrak"],"ninjanotes":["ninja-notes"],"pluginsl_plagiary_search":["plagiary-search"],"ngv_used_serials":["numbers-generator-and-validator"],"cartpauj_pm_attachments":["devnia-pm-based-on-cartpauj-pm"],"cartpauj_pm_messages":["devnia-pm-based-on-cartpauj-pm"],"feed_the_grid_streams":["feed-the-grid"],"hfpl_record":["hungred-feature-post-list"],"ajf_nl_sections":["nearby-locations"],"ajf_nl_locations":["nearby-locations"],"ajeadresse":["adresses-maps-pages-et-categories"],"mactrak_customlines":["mactrak"],"m2a_message":["message-to-author"],"azc_ffi_images":["azurecurve-floating-featured-image"],"rotating_ad_groups":["rotating-ad"],"pisg_superb_gallery":["pixelating-image-slideshow-gallery"],"sp_login_details":["loginplus"],"swipe_app_users":["swipe"],"swipe_app_logs":["swipe"],"swipe":["swipe"],"wptofb":["wptofacebook"],"rotating_ad":["rotating-ad"],"html5lyrics_songs":["html5-lyrics-karaoke-player"],"nuceyt":["nuceyt-sayac-eklentisi"],"dwr_donations":["donate-with-robokassa"],"lxt_jast_surveys":["jast-another-survey-tool"],"yaawp_nodes":["yaawp"],"plnl_locations":["nearby-locations"],"plnl_sections":["nearby-locations"],"nuceyt_log":["nuceyt-sayac-eklentisi"],"nuceyt_ayarlar":["nuceyt-sayac-eklentisi"],"easyimage_slideshow":["easy-image-slideshow"],"district":["devnet-eantrm"],"wpquiz_questions":["wpquiz"],"smackhelpdeskformrelation":["wp-helpdesk-integration"],"smackhelpdesk_field_manager":["wp-helpdesk-integration"],"netblog_rel_extnd":["netblog"],"smackhelpdesk_form_field_manager":["wp-helpdesk-integration"],"smackhelpdesk_shortcode_manager":["wp-helpdesk-integration"],"s3userdbinfo":["amazon-s3-simple-upload-form"],"netblog_ext":["netblog"],"netblog_caption":["netblog"],"netblog_bibrefs_rel_items":["netblog"],"amd_recipeseo_ingredients":["recipeseo"],"netblog_bibrefs":["netblog"],"netblog_bibitem":["netblog"],"netblog":["netblog"],"s_promo_hits":["simple-promo-code"],"pcx":["post-content-xmlrpc"],"wpquiz_quiz":["wpquiz"],"amd_recipeseo_recipes":["recipeseo"],"totalsoft_evcal_ids":["event-calendars"],"tag_category_mapping":["auto-assign-post-category"],"totalsoft_evcal_eff_data":["event-calendars"],"amazon_cache":["amazon-tools"],"totalsoft_evcal_eff_p1":["event-calendars"],"amazon_lists":["amazon-tools"],"totalsoft_evcal_eff_p2":["event-calendars"],"totalsoft_evcal_events":["event-calendars"],"totalsoft_evcal_manager":["event-calendars"],"netblog_testpilot":["netblog"],"dimbal_poll_manager_zone_item":["dimbal-poll-manager"],"amazon_template_fields":["amazon-tools"],"amazon_templates":["amazon-tools"],"dimbal_poll_manager_zone":["dimbal-poll-manager"],"dimbal_poll_manager_settings":["dimbal-poll-manager"],"dimbal_poll_manager_poll_response":["dimbal-poll-manager"],"dimbal_poll_manager_poll_question":["dimbal-poll-manager"],"smackhelpdesk_ecom_info":["wp-helpdesk-integration"],"osc_locations":["fma-google-maps"],"laterpay_terms_price":["laterpay"],"forzr_distances":["lazyeater"],"wes_banner_stats":["campaigndot"],"realty_tech_links":["apex-idx"],"eflyermaker_popup_form_options":["eflyermaker-sign-up-form-builder"],"google_real_estate_map":["google-real-estate-maps"],"google_reviews_on_pages":["nueve-solutions-google-places-reviews"],"lexicographer":["lexicographer"],"404_error_log_report_by_duo_leaf_log":["404-error-log-report-by-duo-leaf"],"_tebravo_scan_ps":["bravo-security"],"metaapp_ads":["ads-easy-simple-for-ads-into-post"],"restrict_registration":["restrict-registration"],"sraf_ip":["super-refer-a-friend"],"_tebravo_firewall_actions":["bravo-security"],"wes_months":["campaigndot"],"rsv_rss":["rsv-rss-viewer"],"media_cache_registry":["blogtext"],"ias_cntrs_trans":["ias-countries"],"ias_cntrs_base":["ias-countries"],"resa_alert":["resa-online"],"realty_tech_api":["apex-idx"],"whatsapp_software":["whatsapp-subscription"],"resa_appointment_member":["resa-online"],"adminnote":["admin-note"],"gift_certificates":["gift-certificate-creator"],"jsss_stylesheet":["js-ss"],"ydsts_ticket":["yds-support-ticket-system"],"jsss_settings":["js-ss"],"login_protection_auth_fail":["login-protection"],"xero_auth":["invoice-sync-for-xero-and-wpecommerce"],"xero_history":["invoice-sync-for-xero-and-wpecommerce"],"wpmp_subscribers":["wp-maintenance-page"],"sbg":["search-box-google-par-jm-crea"],"ydsts_ticket_thread":["yds-support-ticket-system"],"twitter_it_tinyurls":["twitter-it"],"einsaetze":["wp-einsatz"],"eflyermaker_forms_builder":["eflyermaker-sign-up-form-builder"],"iqamahtimes":["salah-world-prayer-iqamah-timings-for-your-masjids"],"_tebravo_traffic":["bravo-security"],"iproperty_properties":["intellectual-property-basic"],"resa_appointment":["resa-online"],"resa_appointment_number_price":["resa-online"],"searchhistory":["user-recent-search-history"],"resa_reduction_conditions_application":["resa-online"],"insertify":["insertify"],"resa_reduction_condition_service":["resa-online"],"vstemplate_tc":["vstemplate-creator"],"resa_reduction_conditions":["resa-online"],"insertagram_media":["insertagram"],"wpxapi_queue":["wp-experience-api"],"insertagram_instances":["insertagram"],"bp_profile_visitors":["buddypress-profile-visitors"],"resa_service":["resa-online"],"resa_reduction_condition":["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"],"_tebravo_attemps":["bravo-security"],"resa_reduction_condition_application":["resa-online"],"resa_reduction_application":["resa-online"],"resa_appointment_reduction":["resa-online"],"resa_form":["resa-online"],"resa_ask_payment":["resa-online"],"scheduledthemes":["wp-scheduled-themes"],"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_equipment":["resa-online"],"resa_group":["resa-online"],"resa_reduction":["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"],"adsense_settings":["adsense-revenue-sharing"],"adsense_id":["adsense-revenue-sharing"],"ydsts_priority":["yds-support-ticket-system"],"wdl_pedigree_category":["lyons-barton-family-history-and-genealogy-pedigree-chart"],"woocommerce_downloadable_product_emails_tld":["tld-woocommerce-downloadable-product-update-emails"],"eewee_restaurant_lang":["eewee-restaurant-menu"],"wdh_svwe_temporary_css":["synoptic-web-designer-best-design-tool"],"art_config":["art-picture-gallery"],"eewee_restaurant_lang_plat":["eewee-restaurant-menu"],"eewee_restaurant_menu":["eewee-restaurant-menu"],"appdesign_gdpr_comments_wordpress":["webappdesign-gdpr-comments"],"eewee_restaurant_devise":["eewee-restaurant-menu"],"ax_sidebar":["ax-sidebar"],"wdh_svwe_settings":["synoptic-web-designer-best-design-tool"],"wdh_svwe_history":["synoptic-web-designer-best-design-tool"],"eewee_restaurant_menu_composition":["eewee-restaurant-menu"],"wdh_svwe_general_settings":["synoptic-web-designer-best-design-tool"],"advert_logged":["advert"],"province":["devnet-eantrm"],"smackthirdpartyhelpdeskformfieldrelation":["wp-helpdesk-integration"],"eewee_restaurant_menu_type":["eewee-restaurant-menu"],"anc_fields":["any-custom-field"],"private_feed_keys":["private-feed-keys"],"liveshoutbox":["azurecurve-floating-featured-image"],"wdl_pedigree_css":["lyons-barton-family-history-and-genealogy-pedigree-chart"],"affp_referrals":["affiliate-plus"],"laterpay_passes":["laterpay"],"laterpay_subscriptions":["laterpay"],"art_galerie":["art-picture-gallery"],"affliate_url_cloacker":["custom-affiliate-links-cloaker"],"product_licenses":["wp-license-manager"],"art_freigaben":["art-picture-gallery"],"zgmap_settings":["fma-google-maps"],"engine":["ad-engine"],"spc_photos":["simple-photos-contest"],"spc_votes":["simple-photos-contest"],"breadcrumbs_shortcode__errors_log":["breadcrumbs-shortcode"],"eewee_restaurant_plat":["eewee-restaurant-menu"],"ydsts_agent_settings":["yds-support-ticket-system"],"gear":["runners-log"],"tr_result":["team-results-widget-displaying-scores-for-teams"],"ydsts_category":["yds-support-ticket-system"],"eewee_restaurant_plat_categorie":["eewee-restaurant-menu"],"transients":["dedicated-transients"],"advert_payment":["advert"],"pvs_counter":["post-views-stats-counter"],"trendmd_indexed_articles":["trendmd"],"consolety_backlinks":["consolety"],"eewee_restaurant_taxe":["eewee-restaurant-menu"],"tripetto_attachments":["tripetto"],"tripetto_entries":["tripetto"],"tripetto_forms":["tripetto"],"troll_comments":["trollguard"],"troll_log":["trollguard"],"wdh_svwe_css":["synoptic-web-designer-best-design-tool"],"ydsts_attachments":["yds-support-ticket-system"],"credly_login_ids":["credly-login"],"tr_team":["team-results-widget-displaying-scores-for-teams"],"pterotype_actor_likes":["pterotype"],"pterotype_actors":["pterotype"],"pterotype_blocks":["pterotype"],"pterotype_comments":["pterotype"],"pterotype_followers":["pterotype"],"pterotype_following":["pterotype"],"pterotype_inbox":["pterotype"],"pterotype_keys":["pterotype"],"pterotype_object_likes":["pterotype"],"pimwick_affiliate":["pw-woocommerce-affiliates"],"sendfeed_lock":["sendfeed"],"pterotype_shares":["pterotype"],"pterotype_objects":["pterotype"],"pterotype_outbox":["pterotype"],"sendfeed":["sendfeed"],"sendfeed_logs":["sendfeed"],"sp_polls":["simple-poll"],"timesheet_approvers":["time-sheets"],"timesheet":["time-sheets"],"template_on_the_fly_template_sidebar":["wp-template-on-the-fly"],"visitor_audit_history":["visitoraudit"],"timesheet_client_project_autoclose":["time-sheets"],"visitor_audit":["visitoraudit"],"timesheet_client_projects":["time-sheets"],"template_on_the_fly_template":["wp-template-on-the-fly"],"tagwebs_data":["beauty-contact-form"],"visitor_audit_banned":["visitoraudit"],"timesheet_approvers_approvies":["time-sheets"],"users_banned":["wp-ban-user"],"timesheet_clients":["time-sheets"],"wst_options":["wp-appointments"],"woocommerce_apirone_transactions":["apirone-bitcoin-forwarding"],"woocommerce_b2w_skyhub_log":["b2w-skyhub"],"woocommerce_b2w_skyhub_queue":["b2w-skyhub"],"wpgp_runs":["wp-gistpen"],"wpgp_messages":["wp-gistpen"],"wst_staff":["wp-appointments"],"wst_services":["wp-appointments"],"wst_locations":["wp-appointments"],"vxc_qbooks_accounts":["wp-woocommerce-quickbooks"],"stockmanager":["stock-manager-pro"],"stripe_transaction_table":["recurring-payment-donation-through-stripe"],"wpsd_ticket_users":["wp-support-desk"],"woocommerce_product_batch":["product-batch-for-woocommerce"],"wst_connections":["wp-appointments"],"wst_appointments":["wp-appointments"],"social_sites":["juicedmetrics"],"vxc_qbooks_log":["wp-woocommerce-quickbooks"],"woocommerce_apirone_secret":["apirone-bitcoin-forwarding"],"wpsd_custom_field":["wp-support-desk"],"twobc_formsecurity_log":["2bc-form-security"],"snapshot":["static-snapshot"],"user_status_manager":["user-status-manager"],"user_shipit":["shipit"],"sprouted_gtmetrix":["sproutedweb-wp-support"],"social_feed_files":["social-feed-shortcode"],"u2gform_data":["hkinfosoft-unbounce-to-gravity-form-integration"],"twounter":["twounter"],"usm_post_message":["user-status-manager"],"woocommerce_apirone_sale":["apirone-bitcoin-forwarding"],"widget_changer":["wp-widget-changer"],"tvbookmark":["web-tv-videos-widget"],"wpo_email_list":["wp-popup-optin"],"transactions":["pp-recurring-payment"],"wppartner_links":["wp-partner"],"woo_zoho_crm":["woo-zoho-crm"],"woo_zoho_crm_field_mapping":["woo-zoho-crm"],"woo_zoho_crm_report":["woo-zoho-crm"],"social_sites_config":["juicedmetrics"],"wpsd_assigned_tickets_users":["wp-support-desk"],"sm_sliders":["slider-options"],"timesheet_users":["time-sheets"],"rm_attendance":["wp-hrm-lite-human-resource-management-system"],"wow_login":["wow-login"],"zillow":["wp-zillow"],"wbe_shortcodes":["wpbmb-entrez"],"wbe_meta":["wpbmb-entrez"],"wbe_cache":["wpbmb-entrez"],"wp_gcp_pdf_posts":["unprintable-blog"],"timesheet_recurring_invoices_monthly":["time-sheets"],"rm_designation":["wp-hrm-lite-human-resource-management-system"],"wp_logs":["wp-log"],"timesheet_payrollers":["time-sheets"],"timesheet_manage_client_users":["time-sheets"],"timesheet_invoicers":["time-sheets"],"timesheet_employee_always_to_payroll":["time-sheets"],"timesheet_comment_audit":["time-sheets"],"timesheet_clients_users":["time-sheets"],"sp_rates":["simple-poll"],"rm_department":["wp-hrm-lite-human-resource-management-system"],"rm_financials":["wp-hrm-lite-human-resource-management-system"],"rm_settings":["wp-hrm-lite-human-resource-management-system"],"wpec_compare_categories":["wp-ecommerce-compare-products"],"wppt_tables":["wp-pricing-table"],"social_stats":["juicedmetrics"],"wootomoo_links":["woo-to-moodle"],"rm_salary":["wp-hrm-lite-human-resource-management-system"],"vem_date_terms":["venture-event-manager"],"vem_event_dates":["venture-event-manager"],"wpec_compare_fields":["wp-ecommerce-compare-products"],"wpec_compare_cat_fields":["wp-ecommerce-compare-products"],"rm_holidays":["wp-hrm-lite-human-resource-management-system"],"wps_am_events_log":["wp-activity-monitor"],"rm_notifications":["wp-hrm-lite-human-resource-management-system"],"rm_notice":["wp-hrm-lite-human-resource-management-system"],"smack_sync_process_id":["mage-wp-sync"],"smack_letme_sync":["mage-wp-sync"],"rm_messages":["wp-hrm-lite-human-resource-management-system"],"rm_leavetypes":["wp-hrm-lite-human-resource-management-system"],"subscription_epayco":["subscription-epayco"],"miwovideos_reports":["miwovideos"],"ctlg_petiteannonce__txt":["annonces"],"cf7_pods":["follow-hook"],"pushall_log":["pushall"],"pws_eordem":["eshop-order-emailer"],"rd_countrynames":["regiondetect"],"rd_ipcache":["regiondetect"],"rd_useragentlog":["regiondetect"],"mh_dpt_friday_times":["mh-display-prayer-times"],"mh_dpt_daily_times":["mh-display-prayer-times"],"aps_organisation":["ap-schema"],"chameleon_css_date":["chameleon-css"],"ptp_local_transactions":["pay-to-post"],"realcontentlocker":["real-content-locker"],"chameleon_css_day":["chameleon-css"],"chameleon_css_info":["chameleon-css"],"chameleon_css_month":["chameleon-css"],"chameleon_css_time":["chameleon-css"],"recent_logins":["recent-logins"],"cj_latest_visitors":["most-recent-visitors"],"clgs_entries":["custom-logging-service"],"clgs_logs":["custom-logging-service"],"ptp_paypal_transactions":["pay-to-post"],"adbreach_adb_images":["anti-adblock-adbreach"],"rednao_wcrbc_privileges":["woo-restrict-by-category"],"miwovideos_report_reasons":["miwovideos"],"pripre_dist_log_download":["pripre"],"pripre_dist_tag":["pripre"],"pripre_dist_version":["pripre"],"pripre_post_param":["pripre"],"pripre_user_style":["pripre"],"miwovideos_videos":["miwovideos"],"miwovideos_video_categories":["miwovideos"],"miwovideos_subscriptions":["miwovideos"],"miwovideos_processes":["miwovideos"],"adbreach_images":["anti-adblock-adbreach"],"miwovideos_process_type":["miwovideos"],"miwovideos_process_log":["miwovideos"],"miwovideos_playlists":["miwovideos"],"miwovideos_playlist_videos":["miwovideos"],"miwovideos_likes":["miwovideos"],"miwovideos_files":["miwovideos"],"miwovideos_fields":["miwovideos"],"miwovideos_channels":["miwovideos"],"miwovideos_categories":["miwovideos"],"member_page":["wp-member-page"],"reglevel":["reglevel"],"pripre_dist_cart_buy":["pripre"],"ctlg_petiteannonce__version":["annonces"],"ctlg_petiteannonce__attributint":["annonces"],"ctlg_petiteannonce__attributtext":["annonces"],"ctlg_petiteannonce__geolocalisation":["annonces"],"ctlg_petiteannonce__groupeattribut":["annonces"],"ctlg_petiteannonce__groupeattribut_attribut":["annonces"],"ll_page_mappings":["landing-lion-landing-pages"],"ctlg_petiteannonce__passerelle":["annonces"],"ctlg_petiteannonce__photos":["annonces"],"ctlg_petiteannonce__tempphoto":["annonces"],"ctlggi_order_downloads":["cataloggi"],"ctlg_petiteannonce__attributdate":["annonces"],"ctlggi_order_itemmeta":["cataloggi"],"ctlggi_order_items":["cataloggi"],"cultivate_form_assoc":["follow-hook"],"custom_fields":["follow-hook"],"cwx_project":["cwx-project"],"cwx_project_meta":["cwx-project"],"cf7_users":["contact-form-7-round-robin-lead-distribution"],"cf7_sent":["contact-form-7-round-robin-lead-distribution"],"cf7_mail":["contact-form-7-round-robin-lead-distribution"],"ctlg_petiteannonce__attributdec":["annonces"],"ctlg_petiteannonce__attributchar":["annonces"],"mega_messages":["light-messages"],"courtres_courts":["court-reservation"],"rep_options":["user-and-document-monitoring","real-estate-property-monitor"],"rep_user":["user-and-document-monitoring","real-estate-property-monitor"],"requests":["playme"],"comments_meta":["twitter-avatar"],"concertpress_events":["concertpress"],"concertpress_programmes":["concertpress"],"concertpress_venues":["concertpress"],"mapply":["mapply"],"malicious_checker":["malicious-checker"],"courtres_events":["court-reservation"],"ctlg_petiteannonce__attribut":["annonces"],"courtres_reservations":["court-reservation"],"courtres_settings":["court-reservation"],"cpm_meta":["cubepm"],"cpm_msg":["cubepm"],"loopfuse_forms":["wp-loopfuse-oneview"],"loopfuse_cid":["wp-loopfuse-oneview"],"logbookref":["adif-log-search-widget"],"logbookbooks":["adif-log-search-widget"],"ctlg_petiteannonce":["annonces"],"pripre_dist_cart_item":["pripre"],"pripre_dist_cart":["pripre"],"legisearch_votestracked":["wp-legisearch"],"nv_nominee":["nomination-and-voting"],"amsgboard":["admin-msg-board"],"oo_subscribe_form":["online-outbox-subscription-form"],"play_pause_video":["play-pause-button-for-video"],"playlist":["mp3-playlist","playlist-217"],"playlist_data":["mp3-playlist"],"al3x_fl_mngr_users":["al3x-file-manager"],"bbpress_likes":["bbpress-like-topics"],"nv_vote":["nomination-and-voting"],"nv_visitor":["nomination-and-voting"],"nv_nomination":["nomination-and-voting"],"owl_carousel_tbl":["responsive-owl-carousel"],"betterbuttons":["better-buttons"],"bg_jobs":["async-background-worker"],"plm_manager_domains":["product-license-manager"],"plm_manager_keys":["product-license-manager"],"nsd_site_setup_wizard":["site-setup-wizard"],"plugin_wp_thumbs":["wp-thumbs"],"ply_optins":["platformly"],"ply_pages":["platformly"],"ply_project_code":["platformly"],"oqeypdfs":["oqey-pdfs"],"legisearch_os_cache":["wp-legisearch"],"paymentsmeta":["prospress"],"aps_event":["ap-schema"],"aps_book":["ap-schema"],"aps_person":["ap-schema"],"aps_product":["ap-schema"],"aps_recipe":["ap-schema"],"aps_review":["ap-schema"],"article":["contaqt"],"pc_like_counts":["pearlcore-faq"],"apc_shortcodes":["aspose-cloud-excel-to-form-builder"],"payments_log":["prospress"],"payments":["prospress"],"author_ranking":["wp-author-ranking"],"author_users":["admin10x"],"authors2categories":["authors2categories"],"autopost":["auto-post-posts"],"page_navigation_menu":["page-navigation-menu"],"pabc_slides":["banner-cycler"],"pabc_cyclers":["banner-cycler"],"blda_log":["better-learndash-api"],"popup":["unlimited-popups"],"pripre_dist":["pripre"],"premium_testimonials_script":["premium-testimonials"],"pr_donations":["peerraiser"],"pr_donormeta":["peerraiser"],"pr_donors":["peerraiser"],"monero_gateway_quotes_txids":["monero-woocommerce-gateway"],"monero_gateway_quotes":["monero-woocommerce-gateway"],"monero_gateway_live_rates":["monero-woocommerce-gateway"],"calameo_publications":["athlon-manage-calameo-publications"],"campaign_touchpoints":["follow-hook"],"mobapp_stats":["mobile-appwidget"],"mobapp_downloadurls":["mobile-appwidget"],"pplsorders":["paypal-link-sale"],"mobapp_devlist":["mobile-appwidget"],"mobapp_campaigns_apps":["mobile-appwidget"],"mobapp_campaigns":["mobile-appwidget"],"mobapp_appslist":["mobile-appwidget"],"mobapp_adtemplates":["mobile-appwidget"],"pripre_book":["pripre"],"pripre_book_param":["pripre"],"mlchpfrppl_mailchimp_settings":["mailchimp-for-paypal-shopping-cart"],"pripre_book_post_param":["pripre"],"pr_donationmeta":["peerraiser"],"pplsipn":["paypal-link-sale"],"newsflash_aink":["newsflash-aink"],"bookingrobin_object":["bookingrobin"],"bmail_hotkeys":["bmail"],"nc_myfeeds":["newscred"],"nc_autopublish":["newscred"],"booking_barcode":["wp-easy-booking"],"booking_location_schedule":["wp-easy-booking"],"booking_log":["wp-easy-booking"],"bookingrobin_appointment":["bookingrobin"],"bookingrobin_appointmentmeta":["bookingrobin"],"bookingrobin_association":["bookingrobin"],"postlogo":["post-logo"],"mtr_selected_tags_rss_settings":["selected-tags-rss"],"postpoll":["postpoll"],"bookingrobin_objectmeta":["bookingrobin"],"bookingrobin_term":["bookingrobin"],"bookingrobin_termmeta":["bookingrobin"],"bp_group_livechat":["bp-group-livechat"],"multilingual_refs":["multilingual-wordpress"],"bp_group_livechat_online":["bp-group-livechat"],"mtr_selected_tags_rss_subscribers":["selected-tags-rss"],"aps_movie":["ap-schema"],"legisearch_billstracked":["wp-legisearch"],"g_calendar_inactivity_times":["appointment-booking-for-business"],"fp_venue":["football-predictor"],"fp_team":["football-predictor"],"fp_stage":["football-predictor"],"event_locations":["event-post-type"],"simple_post_gmaps":["simple-post-gmaps"],"easy_notes":["easy-notes"],"fp_prediction":["football-predictor"],"simpleapplinks_cache":["simpleapplinks"],"simplelikecounter":["simple-like-dislike-posts"],"g_booking":["appointment-booking-for-business"],"g_calendar_timing":["appointment-booking-for-business"],"sibs_transaction":["sibs-woocommerce"],"fp_match":["football-predictor"],"g_calendars":["appointment-booking-for-business"],"g_customers":["appointment-booking-for-business"],"g_extra_calendar":["appointment-booking-for-business"],"g_extras":["appointment-booking-for-business"],"iconic_woosocial_activity_log":["woosocial-social-ecommerce-for-woocommerce"],"faqs_details":["faqs"],"g_payment_systems":["appointment-booking-for-business"],"kc_keywords":["keywords-cloud-for-wordpress"],"shipit":["shipit"],"ship200bulk":["ship200-bulk-processing"],"faqs_categories":["faqs"],"hopos_lite":["hopos-slider-lite"],"g_payment_transactions":["appointment-booking-for-business"],"dws_gan":["google-affiliate-network"],"group_components":["tag-grouping"],"itsbsde_sl_visits":["statistics-light"],"group_posts":["tag-grouping"],"group_term_groups":["tag-grouping"],"_products_ad_table":["google-affiliate-network"],"grs_main":["google-reader-stats"],"enl_users":["enl-newsletter"],"oder_payza":["payza-payments"],"fullbackslider":["fullscreen-background-slider"],"dws_gan_merch":["google-affiliate-network"],"itsbsde_sl_visitor":["statistics-light"],"ollowers_widget":["instagram-followers"],"fstaf_data":["fs-tell-a-friend"],"frequently_searched_words":["wp-frequently-searched-words"],"itsbsde_sl_referer":["statistics-light"],"enl_newsletter":["enl-newsletter"],"freights":["ltl-freight-quotes-worldwide-express-edition"],"haet_currency_list":["wp-e-commerce-currency-helper"],"itsbsde_sl_pages":["statistics-light"],"facebook_importfeel":["facebook-import-feed"],"sibs_payment_information":["sibs-woocommerce"],"ealist":["ajax-easy-attendance-list"],"ollowers_global_settings":["instagram-followers"],"g_payment_systems_calendar":["appointment-booking-for-business"],"g_extras_booking":["appointment-booking-for-business"],"faqs_questions":["faqs"],"inazo_wp_adv_ads_management_the_adds":["inazo-advanced-ads-management"],"sga":["simple-google-adsense-par-jm-crea"],"flightlog_flights_remarks":["flightlog"],"g_stripe_settings":["appointment-booking-for-business"],"flightlog_flights":["flightlog"],"flightlog_carriers":["flightlog"],"flightlog_airports":["flightlog"],"flightlog_aircrafts":["flightlog"],"skylite_srcf_settings":["send-reply-contact-form"],"skylite_srcf_user_submissions":["send-reply-contact-form"],"importpost_lastchoice":["importyourpost"],"edc_en_quran":["quran-shortcode"],"galcategory":["categorized-gallery"],"runpress_db":["runpress"],"idgm_games":["indiedev-game-marketer"],"fav_notifications_posts":["favicon-notifications"],"ifs_mailinglist":["ifs-simple-e-mail-management"],"idgm_tweets":["indiedev-game-marketer"],"fav_notifications_unread":["favicon-notifications"],"edc_suraames":["quran-shortcode"],"delta_adsense_in_post":["insert-adsense-code-in-post"],"edc_quran":["quran-shortcode"],"gga_dynamic_images_stats":["dynamic-placeholder-images"],"leaves":["wordpress-falling-leaves"],"galimage":["categorized-gallery"],"importpost_history":["importyourpost"],"fastsheep_fstaf_data":["fs-tell-a-friend"],"g_stripe_transactions":["appointment-booking-for-business"],"ils_catch_all":["emails-catch-all"],"campaignlist":["e-mail-campaign-manager"],"userlist":["e-mail-campaign-manager"],"cf7_forms":["contact-form-7-round-robin-lead-distribution"],"lacrm_connector":["lacrm-connector-for-contact-form7"],"_log":["wp-email-logs"],"eshop_magic_transaction_log":["eshop-magic"],"sales_report_page":["juicedmetrics"],"rwssn_schemas":["rank-with-schema"],"iiam_ads":["in-image-ads-manager"],"sales_report":["juicedmetrics"],"fav_notifications":["favicon-notifications"],"mp_ips":["mpoperationlogs"],"mr_forum_post":["member-register"],"wpac_reactions_system":["wpac-like-system"],"giml_subgroup":["gi-media-library"],"giml_playlisttablecolumn":["gi-media-library"],"mr_group":["member-register"],"giml_groupsubgroup":["gi-media-library"],"mr_file":["member-register"],"widg_dashboard":["dashboard-widget-control"],"giml_playlistcolumn":["gi-media-library"],"mr_payment":["member-register"],"mr_forum_topic":["member-register"],"tv_cs_emails":["coming-soon-free"],"eupago_mbway":["eupago-mbway"],"mp_logs":["mpoperationlogs"],"giml_playlisttable":["gi-media-library"],"travelermap_maps":["wp-travelermap"],"giml_playlistsectioncolumn":["gi-media-library"],"wpac_like_system":["wpac-like-system"],"giml_playlistsection":["gi-media-library"],"mpimporter":["marketpress-product-importer"],"giml_playlistcomboitem":["gi-media-library"],"giml_playlistcombo":["gi-media-library"],"mr_group_member":["member-register"],"track_logins":["track-logins"],"mr_country":["member-register"],"hangout_data":["hangouts-cosmoquest"],"whippet_enabled":["whippet"],"miwoshop_review":["miwoshop"],"ubigeo_departamento":["ubigeo-peru"],"ubigeo_distrito":["ubigeo-peru"],"miwoshop_user":["miwoshop"],"miwoshop_url_alias":["miwoshop"],"miwoshop_upload":["miwoshop"],"miwoshop_tax_rule":["miwoshop"],"miwoshop_tax_rate_to_customer_group":["miwoshop"],"miwoshop_tax_rate":["miwoshop"],"miwoshop_tax_class":["miwoshop"],"miwoshop_store":["miwoshop"],"miwoshop_stock_status":["miwoshop"],"miwoshop_setting":["miwoshop"],"miwoshop_return_status":["miwoshop"],"miwoshop_voucher":["miwoshop"],"miwoshop_return_reason":["miwoshop"],"miwoshop_return_history":["miwoshop"],"miwoshop_return_action":["miwoshop"],"ucontext4a_cache":["ucontext-for-amazon"],"ucontext4a_click_log":["ucontext-for-amazon"],"ucontext4a_keyword":["ucontext-for-amazon"],"ucontext4a_spider_agent":["ucontext-for-amazon"],"miwoshop_return":["miwoshop"],"miwoshop_recurring_description":["miwoshop"],"miwoshop_recurring":["miwoshop"],"miwoshop_product_to_store":["miwoshop"],"miwoshop_product_to_layout":["miwoshop"],"miwoshop_product_to_download":["miwoshop"],"miwoshop_user_group":["miwoshop"],"icerik_bulutu_imports":["icerik-bulutu"],"whippet_disabled":["whippet"],"hangout_shows":["hangouts-cosmoquest"],"gridbuddytable":["grid-buddy"],"twg_member_fields":["twg-members"],"twg_memberfield_values":["twg-members"],"twg_members":["twg-members"],"gseor_pages":["gseor"],"gseor_searchs":["gseor"],"weseedo_screens":["weseedo"],"weontech_logs":["weontech-auto-social-poster"],"wemalo_return_pos":["wemalo-api"],"wemalo_custom_orderstatus":["wemalo-api"],"webxpay_ipg":["webxpay-payment-gateway-for-woocommerce"],"giml_group":["gi-media-library"],"hangouts":["hangouts-cosmoquest"],"miwoshop_voucher_history":["miwoshop"],"txtbear_thumb_cache":["txtbear"],"txtimpact_received_messages":["360imobile-txtimpact-sms-messaging-plug-in"],"txtimpact_sent_messages":["360imobile-txtimpact-sms-messaging-plug-in"],"txtimpact_subscribers":["360imobile-txtimpact-sms-messaging-plug-in"],"httpflood":["http-flood"],"i_list":["interesting-links-list"],"iar_config":["i-am-reading-continued"],"miwoshop_zone_to_geo_zone":["miwoshop"],"miwoshop_zone":["miwoshop"],"miwoshop_weight_class_description":["miwoshop"],"miwoshop_weight_class":["miwoshop"],"miwoshop_voucher_theme_description":["miwoshop"],"miwoshop_voucher_theme":["miwoshop"],"wp_super_heatmap_dots":["wp-super-heatmap"],"nameday":["nameday"],"msa_audit_posts":["site-audit"],"thema_page_settings":["at-many-themes"],"wptodo_comments":["wp-todo"],"wptodo":["wp-todo"],"online_visitors":["who-is-online-now"],"olyos_livreblanc_user":["wp-livre-blanc"],"olyos_livreblanc_download":["wp-livre-blanc"],"olyos_livreblanc":["wp-livre-blanc"],"olr_temporary_reservation_data":["online-reservation"],"olr_send_enquiry_attempt":["online-reservation"],"thema_category_settings":["at-many-themes"],"thema_expressions_settings":["at-many-themes"],"thema_main":["at-many-themes"],"thema_post_settings":["at-many-themes"],"wptodo_email":["wp-todo"],"olr_lockout_reservation":["online-reservation"],"olr_find_table_attempt":["online-reservation"],"odyssey_pp2wp":["pixelpost-importer"],"banman":["banman"],"banner_aink":["banner-aink"],"object":["feedgeorge-augmented-reality-plugin"],"wp_bot_counter":["wp-bot-counter"],"bibliography":["scholarpress-courseware"],"bistri_desk_agents":["live-support-desk"],"bistri_desk_agents_roles":["live-support-desk"],"bistri_desk_messages":["live-support-desk"],"testimonials_widget":["rotating-testimonial"],"testimonials_params":["rotating-testimonial"],"fancysearch":["fancy-search"],"wp2flickr":["wp2flickr"],"fcp_likes_ip":["facebook-comments-points-fcp"],"wow_vimp":["vertical-icon-menu"],"fbexppar_stat":["express-partage-facebook-button"],"assignment2project":["scholarpress-courseware"],"assignments":["scholarpress-courseware"],"ataswp_scheduler_log":["atas-auto-tweet-and-scheduler"],"pbsocialnetworks_stats":["pbsocialnetworks"],"paywhirl_user_invoices":["paywhirl-recurring-payments"],"payu_latam_sdk_pls_transactions":["woo-payu-latam-sdk"],"paulus_quotes":["paulus-czytania"],"axeptio_configuration":["axeptio"],"axeptio_user":["axeptio"],"fonts":["post-font-selector"],"axeptio_user_configuration":["axeptio"],"ayssocial_buttons":["ays-social-buttons"],"telegram_chat_history":["telegram-chat"],"telegram_chat_info":["telegram-chat"],"opizo_shrinked_urls":["opizo"],"bistri_desk_queue":["live-support-desk"],"tokenmanager":["token-manager"],"msa_audits":["site-audit"],"mytube_playlist":["mytube"],"nfbu_ignore":["find-broken-url"],"g4b_gallery_photos":["g4b-photo-gallery"],"newsletter_composer":["newsletter-composer"],"ncfbx":["notify-connect-par-jm-crea"],"woo_live_notify":["woo-live-sale-notify"],"miwoshop_product_special":["miwoshop"],"mytube_videos":["mytube"],"blog_authors":["blog-authors"],"muv_kk_kundendaten_ext":["muv-kundenkonto"],"muv_kk_kundendaten":["muv-kundenkonto"],"muv_kk_kunden":["muv-kundenkonto"],"wljp_candidate_job":["jobs-portal"],"msbdt_time_slote":["multi-scheduler"],"msbdt_template":["multi-scheduler"],"msbdt_professional":["multi-scheduler"],"msbdt_organization":["multi-scheduler"],"msbdt_location":["multi-scheduler"],"msbdt_booking":["multi-scheduler"],"geomap":["geoportail-shortcode"],"nfbu_url":["find-broken-url"],"blockio_solicitudes":["wp-faucet-direct"],"tokenmanagerpages":["token-manager"],"g4b_gallery_albums":["g4b-photo-gallery"],"tokenmanagertypes":["token-manager"],"tokenmanagertypesversions":["token-manager"],"tokenmanagerversions":["token-manager"],"nr_image_gallery_images":["nr-image-gallery"],"nr_image_gallery":["nr-image-gallery"],"bistri_desk_roles":["live-support-desk"],"friendfeedcomments":["friendfeed-comments"],"kcf_entries":["chiliforms"],"blfpst_exclude_recipients":["bluff-post"],"blfpst_logs":["bluff-post"],"blfpst_mail_froms":["bluff-post"],"blfpst_mail_templates":["bluff-post"],"ninjamotd":["ninja-motd"],"blfpst_recipients":["bluff-post"],"blfpst_send_mails":["bluff-post"],"blfpst_target_conditionals":["bluff-post"],"blfpst_targets":["bluff-post"],"blm_export_logs_feed":["wp-property-blm-export-add-on"],"blm_export_logs_feed_error":["wp-property-blm-export-add-on"],"blm_export_logs_feed_portal":["wp-property-blm-export-add-on"],"total_reviews_facebook_page":["total-wp-reviews"],"total_reviews_google_place":["total-wp-reviews"],"total_reviews_google_review":["total-wp-reviews"],"blm_export_logs_feed_portal_property":["wp-property-blm-export-add-on"],"blockio_ajustes":["wp-faucet-direct"],"miwoshop_product_to_category":["miwoshop"],"miwoshop_order_voucher":["miwoshop"],"miwoshop_product_reward":["miwoshop"],"lr_popup_custom_fields_dropdown":["advanced-user-registration-and-management"],"madeit_sec_filelist":["wp-security-by-made-it"],"madeit_sec_blockip":["wp-security-by-made-it"],"m360_presentations":["market-360-viewer"],"cpt_sentry_groups":["custom-post-type-privacy"],"lr_volunteer":["advanced-user-registration-and-management"],"lr_twitter_mentions":["advanced-user-registration-and-management"],"lr_status":["advanced-user-registration-and-management"],"lr_sports":["advanced-user-registration-and-management"],"lr_social_invite_tokens":["advanced-user-registration-and-management"],"lr_social_invite_contacts":["advanced-user-registration-and-management"],"lr_skills":["advanced-user-registration-and-management"],"lr_recommendations_received":["advanced-user-registration-and-management"],"lr_positions":["advanced-user-registration-and-management"],"lr_popup_custom_fields_map":["advanced-user-registration-and-management"],"lr_popup_custom_fields_data":["advanced-user-registration-and-management"],"madeit_sec_login":["wp-security-by-made-it"],"lr_phone_numbers":["advanced-user-registration-and-management"],"lr_patents":["advanced-user-registration-and-management"],"lr_linkedin_companies":["advanced-user-registration-and-management"],"lr_languages":["advanced-user-registration-and-management"],"lr_inspirational_people":["advanced-user-registration-and-management"],"lr_imaccounts":["advanced-user-registration-and-management"],"lr_groups":["advanced-user-registration-and-management"],"lr_favorites":["advanced-user-registration-and-management"],"lr_facebook_posts":["advanced-user-registration-and-management"],"lr_facebook_likes":["advanced-user-registration-and-management"],"lr_facebook_events":["advanced-user-registration-and-management"],"lr_extended_profile_data":["advanced-user-registration-and-management"],"lr_extended_location_data":["advanced-user-registration-and-management"],"lr_emails":["advanced-user-registration-and-management"],"madeit_sec_issues":["wp-security-by-made-it"],"madeit_sec_login_attempts":["wp-security-by-made-it"],"lr_current_status":["advanced-user-registration-and-management"],"mediator_tech_stats":["mediator"],"userdetails":["ana-chatbot"],"easywpm_membership_packages":["easy-wp-members"],"megaticker_sessions":["megaticker"],"megaticker_counters":["megaticker"],"megaticker_campaigns":["megaticker"],"easyling":["easyling-for-wp"],"comic_category":["kommiku"],"comic_chapter":["kommiku"],"comic_page":["kommiku"],"users_archive":["rsvpmaker-for-toastmasters"],"mediaview_media":["mediaview"],"comic_scanlator":["kommiku"],"comic_series":["kommiku"],"mediaview_dataset":["mediaview"],"mbot_gravity_form":["fb-messenger-bot"],"dyamar_contacts_data":["dyamar-contacts"],"version_control_templates":["wp-source-control"],"dyamar_contacts_data_entries":["dyamar-contacts"],"dyamar_contacts_data_fields":["dyamar-contacts"],"dyamar_contacts_field_entries":["dyamar-contacts"],"couponfeeder":["coupon-grab"],"count_views_db":["count-post-views"],"version_controls":["wp-source-control"],"version_control_posts":["wp-source-control"],"mbot_fb_session":["fb-messenger-bot"],"dyamar_contacts_fields":["dyamar-contacts"],"map_products":["jvzoo-wpestore-integration"],"dyamar_contacts_forms":["dyamar-contacts"],"dynamic_qr":["dynamic-qr-code-saver"],"mblogicricket":["mblogi-cricket"],"lr_education":["advanced-user-registration-and-management"],"lr_courses":["advanced-user-registration-and-management"],"user_tokens":["api-bearer-auth"],"wphealthtracker_user_daily_data_exercise":["wphealthtracker"],"wpf_entry_meta":["power-forms-builder"],"linksynceparcel_order_statuses":["blaze-online-eparcel-for-woocommerce"],"linksynceparcel_nonlinksync":["blaze-online-eparcel-for-woocommerce"],"linksynceparcel_manifest":["blaze-online-eparcel-for-woocommerce"],"linksynceparcel_international_fields":["blaze-online-eparcel-for-woocommerce"],"linksynceparcel_consignment_temp_cost":["blaze-online-eparcel-for-woocommerce"],"linksynceparcel_consignment":["blaze-online-eparcel-for-woocommerce"],"linksynceparcel_article_preset":["blaze-online-eparcel-for-woocommerce"],"linksynceparcel_article":["blaze-online-eparcel-for-woocommerce"],"linksynceparcel_address_valid":["blaze-online-eparcel-for-woocommerce"],"linklaunder":["linklaunder-seo-plugin"],"wphealthtracker_users":["wphealthtracker"],"wphealthtracker_user_daily_data_vitals":["wphealthtracker"],"link_monitor_clicks":["link-monitor"],"limit_max_ips_per_user":["limit-max-ips-per-user"],"layer":["feedgeorge-augmented-reality-plugin"],"vxc_mailchimp_log":["woo-mailchimp-crm-perks"],"vtpkonfigurator":["3d-viewer-configurator"],"daskal_templates":["daskal"],"daskal_ratings":["daskal"],"lbakgc_product_table":["lbak-google-checkout"],"vxc_mailchimp_accounts":["woo-mailchimp-crm-perks"],"da_r_votes":["da-reactions"],"da_r_reactions":["da-reactions"],"wphealthtracker_user_daily_data_diet":["wphealthtracker"],"wpgafeeds":["wpgalerts"],"wpgalerts":["wpgalerts"],"wpf_gdpr_requested_data":["power-forms-builder"],"custom_post_type_tree":["custom-post-type-tree"],"wpf_gdpr_delete_data":["power-forms-builder"],"wphealthtracker_general_settings":["wphealthtracker"],"wpf_entries":["power-forms-builder"],"kw_config":["kursy-walut-exchange-rates"],"lr_contacts":["advanced-user-registration-and-management"],"lost_and_found":["the-lost-and-found"],"lr_companies":["advanced-user-registration-and-management"],"lr_certifications":["advanced-user-registration-and-management"],"visitor_data":["free-web-push-notification"],"lr_basic_profile_data":["advanced-user-registration-and-management"],"lr_albums":["advanced-user-registration-and-management"],"lr_addresses":["advanced-user-registration-and-management"],"lplanner_config":["weekly-planner"],"lplanner":["weekly-planner"],"crea_agent":["aretk-crea"],"visitorinfo":["geo-location"],"crea_api_log":["aretk-crea"],"crea_api_log_exclusive":["aretk-crea"],"crea_lead_reminder_detail":["aretk-crea"],"crea_listing_detail_count":["aretk-crea"],"jne_shipping":["jne-shipping"],"kratosantispam":["kratos-anti-spam"],"kcf_entries_meta":["chiliforms"],"dlmc":["wp-download-mirror-counter"],"dm_dish":["daily-menu"],"dm_menu":["daily-menu"],"killboardverbs":["eve-killboard"],"kcf_forms":["chiliforms"],"kcf_fields":["chiliforms"],"volunteerinfo":["volunteer-form"],"wpcursos_prematriculas":["wpcursos"],"localistcalendar":["localist-calendar"],"location_click_map_data":["location-click-map"],"crea_user_listing_detail":["aretk-crea"],"kanpress_task":["kanpress"],"crea_listing_images_detail":["aretk-crea"],"crea_listing_document_detail":["aretk-crea"],"megaticker_sessions_data":["megaticker"],"megaticker_splashes":["megaticker"],"miwoshop_product_related":["miwoshop"],"miwoshop_filter_group":["miwoshop"],"miwoshop_location":["miwoshop"],"miwoshop_length_class_description":["miwoshop"],"miwoshop_length_class":["miwoshop"],"miwoshop_layout_route":["miwoshop"],"miwoshop_layout_module":["miwoshop"],"miwoshop_layout":["miwoshop"],"miwoshop_language":["miwoshop"],"miwoshop_j_integrations":["miwoshop"],"miwoshop_information_to_store":["miwoshop"],"miwoshop_information_to_layout":["miwoshop"],"miwoshop_information_description":["miwoshop"],"miwoshop_information":["miwoshop"],"miwoshop_geo_zone":["miwoshop"],"miwoshop_filter_group_description":["miwoshop"],"miwoshop_filter_description":["miwoshop"],"miwoshop_manufacturer_to_store":["miwoshop"],"miwoshop_filter":["miwoshop"],"miwoshop_extension":["miwoshop"],"miwoshop_event":["miwoshop"],"miwoshop_download_description":["miwoshop"],"miwoshop_download":["miwoshop"],"miwoshop_customer_transaction":["miwoshop"],"miwoshop_customer_reward":["miwoshop"],"miwoshop_customer_online":["miwoshop"],"miwoshop_customer_login":["miwoshop"],"miwoshop_customer_ip":["miwoshop"],"miwoshop_customer_history":["miwoshop"],"miwoshop_customer_group_description":["miwoshop"],"miwoshop_customer_group":["miwoshop"],"miwoshop_customer_ban_ip":["miwoshop"],"miwoshop_manufacturer":["miwoshop"],"miwoshop_marketing":["miwoshop"],"miwoshop_customer":["miwoshop"],"miwoshop_order_recurring_transaction":["miwoshop"],"miwoshop_product_recurring":["miwoshop"],"uemla_email_log":["email-logger-for-user-profiles-made-easy"],"miwoshop_product_option_value":["miwoshop"],"miwoshop_product_option":["miwoshop"],"iframe_plugin":["wp-iframe-images-gallery"],"miwoshop_product_image":["miwoshop"],"miwoshop_product_filter":["miwoshop"],"miwoshop_product_discount":["miwoshop"],"miwoshop_product_description":["miwoshop"],"miwoshop_product_attribute":["miwoshop"],"miwoshop_product":["miwoshop"],"miwoshop_order_total":["miwoshop"],"miwoshop_order_status":["miwoshop"],"miwoshop_order_recurring":["miwoshop"],"miwoshop_mgroup_cgroup_map":["miwoshop"],"miwoshop_option_description":["miwoshop"],"miwoshop_mgroup_ugroup_map":["miwoshop"],"miwoshop_modification":["miwoshop"],"miwoshop_module":["miwoshop"],"miwoshop_muser_ocustomer_map":["miwoshop"],"miwoshop_muser_ouser_map":["miwoshop"],"miwoshop_option":["miwoshop"],"miwoshop_option_value":["miwoshop"],"miwoshop_order_product":["miwoshop"],"miwoshop_option_value_description":["miwoshop"],"miwoshop_order":["miwoshop"],"miwoshop_order_custom_field":["miwoshop"],"miwoshop_order_fraud":["miwoshop"],"miwoshop_order_history":["miwoshop"],"miwoshop_order_option":["miwoshop"],"miwoshop_customer_activity":["miwoshop"],"miwoshop_custom_field_value_description":["miwoshop"],"colorkeywords":["color-keywords"],"chat_sessions":["single-user-chat"],"cf7_blacklist_list":["bsk-contact-form-7-blacklist"],"cf7restplugin_submits":["contact-form-7-to-rest-call"],"mergebot_deployment_inserts":["mergebot"],"mergebot_conflicts":["mergebot"],"cf7save":["cf7save-extension"],"cfom":["n-media-woocommerce-checkout-fields"],"wpperecords":["wp-promo-emails"],"wppenewsletter":["wp-promo-emails"],"instruct":["instruct"],"instruct_progress":["instruct"],"instruct_step":["instruct"],"ecs_snippets":["easy-code-snippets"],"chat_data":["single-user-chat"],"ipqs_cache":["ipqualityscore-fraud-detection"],"cigicigi_post_guest":["cigicigi-post-guest"],"cc_bad_words":["comments-censure"],"mendeleyrelatedcache":["mendeley-related-research"],"user_status":["agilityfeats-click-to-call"],"easywpm_membership_post_rel":["easy-wp-members"],"easywpm_orders":["easy-wp-members"],"mergebot_changesets":["mergebot"],"cinemarx_ieme":["imdb-easy-movie-embed-ieme"],"cm_climadata":["klima-monitor"],"clik_stats":["clikstats"],"click_derecho":["menu-contextual-personalizado"],"easywpm_role_post_rel":["easy-wp-members"],"easywpm_subscriptions":["easy-wp-members"],"infusionsoftaffiliates":["infusionsoft-affiliates"],"imkt_influencers":["influencer-marketing"],"miwoshop_custom_field_value":["miwoshop"],"miwoshop_category":["miwoshop"],"miwoshop_custom_field_description":["miwoshop"],"miwoshop_custom_field_customer_group":["miwoshop"],"miwoshop_custom_field":["miwoshop"],"miwoshop_currency":["miwoshop"],"miwoshop_coupon_product":["miwoshop"],"miwoshop_coupon_history":["miwoshop"],"miwoshop_coupon_category":["miwoshop"],"miwoshop_coupon":["miwoshop"],"miwoshop_country":["miwoshop"],"miwoshop_category_to_store":["miwoshop"],"miwoshop_category_to_layout":["miwoshop"],"miwoshop_category_path":["miwoshop"],"miwoshop_category_filter":["miwoshop"],"miwoshop_category_description":["miwoshop"],"units":["scholarpress-courseware"],"cbt_tweets":["comment-by-tweet"],"miwoshop_affiliate_transaction":["miwoshop"],"cbt_hash":["comment-by-tweet"],"cbt_api":["comment-by-tweet"],"miwoshop_address":["miwoshop"],"miwoshop_affiliate":["miwoshop"],"miwoshop_affiliate_activity":["miwoshop"],"miwoshop_affiliate_login":["miwoshop"],"miwoshop_api":["miwoshop"],"miwoshop_banner_image_description":["miwoshop"],"miwoshop_attribute":["miwoshop"],"miwoshop_attribute_description":["miwoshop"],"miwoshop_attribute_group":["miwoshop"],"miwoshop_attribute_group_description":["miwoshop"],"miwoshop_banner":["miwoshop"],"miwoshop_banner_image":["miwoshop"],"cf7_blacklist_items":["bsk-contact-form-7-blacklist"],"ubigeo_provincia":["ubigeo-peru"],"_history":["woo-customer-insight"],"reviewr_reviewmeta":["wp-reviewr"],"scroll_popup_html_content_ads":["scroll-popup-html-content-ads"],"reviewr_reviews":["wp-reviewr"],"smp_twitter":["smp-twitter-module-oauth"],"_user_session":["woo-customer-insight"],"stumble":["stumble-for-wordpress"],"stumble_stats":["stumble-for-wordpress"],"yt_videos":["youtube-add-video"],"_user_purchased_history":["woo-customer-insight"],"_user_profile_updated":["woo-customer-insight"],"_successful_purchases":["woo-customer-insight"],"rg_banner":["revglue-coupons","revglue-cashback","revglue-stores","revglue-product-feeds","revglue-mobile-comparison","revglue-daily-deals","revglue-broadbands"],"your_tables_fields":["your-tables"],"_events":["woo-customer-insight"],"_activity":["woo-customer-insight"],"previewnpl":["amazing-youtube-player"],"_abandon_cart":["woo-customer-insight"],"rg_categories":["revglue-coupons","revglue-cashback","revglue-stores","revglue-product-feeds","revglue-daily-deals"],"adpage":["adpage-connect"],"rg_coupons":["revglue-coupons"],"subscribe_order":["wx-subscribe"],"rg_projects":["revglue-coupons","revglue-cashback","revglue-daily-deals","revglue-broadbands","revglue-product-feeds","revglue-mobile-comparison","revglue-stores"],"ronline":["lord-linus-online-visitor"],"rg_stores":["revglue-coupons","revglue-cashback","revglue-broadbands","revglue-stores","revglue-product-feeds","revglue-mobile-comparison","revglue-daily-deals"],"swiftcloud_welcome_capture_list":["swiftcloud"],"restrictor_logins":["login-tracker-logs"],"_urls_parsed":["template-seo-checker"],"stm_schedule":["social-time-master"],"and_imagefields":["auto-image-field"],"amz_servers":["amazon-search"],"spy_analytics":["spy-analytics-lite"],"ptw":["popular-this-week"],"seoquery":["seo-query"],"psfa":["personal-statistics-for-authors"],"stm_accounts":["social-time-master"],"projects":["scholarpress-courseware","wp-fansubpagemanager"],"project_tasks_process":["project-tasks"],"stm_postlog":["social-time-master"],"stm_templates":["social-time-master"],"restbl_uststablebookings_paymentmethods":["restaurant-table-booking-manager"],"stm_timeline":["social-time-master"],"stm_urls":["social-time-master"],"stm_variations":["social-time-master"],"project_task_targets":["project-tasks"],"project_task_process_objects":["project-tasks"],"spost_temp_users":["sidebar-post"],"pirates_search":["wp-pirates-search"],"pl_management":["pl-manager"],"progressfly":["progressfly"],"product_view_counter":["product-view-counter"],"3eo_tagbank":["wp-fixtag"],"restbl_uststablebookings":["restaurant-table-booking-manager"],"schedule2unit":["scholarpress-courseware"],"schedule":["scholarpress-courseware"],"push_notification":["free-web-push-notification"],"pops_design":["conversion-popup-survey"],"zndskhc_attachments":["zendesk-help-center"],"zndskhc_articles":["zendesk-help-center"],"poi":["feedgeorge-augmented-reality-plugin"],"rp_units":["rentpress"],"rpg_levels":["wprpg"],"sully":["sully"],"rpg_races":["wprpg"],"rs_google_analytics":["rs-google-analytics"],"zc_connections":["zigconnect"],"zc_data":["zigconnect"],"zc_fields":["zigconnect"],"pops_surveys":["conversion-popup-survey"],"zndskhc_comments":["zendesk-help-center"],"af_ctc_call":["agilityfeats-click-to-call"],"zc_links":["zigconnect"],"wxlog_log":["wxlog"],"publicidad":["publicidad"],"pqc_materials":["3d-printing-quote-calculator-by-phanes"],"pqc_data":["3d-printing-quote-calculator-by-phanes"],"postcode_lookup_form":["wp-postcode-lookup-form"],"postcode_lookup_form_log":["wp-postcode-lookup-form"],"posteventregister":["post-event2"],"wxlog_custom_reply":["wxlog"],"posts_sections_votes":["post-section-votes"],"salesmatelogs":["gf-salesmate-add-on"],"zndskhc_categories":["zendesk-help-center"],"zndskhc_labels":["zendesk-help-center"],"aidn_stats":["affiliateimporteram"],"aidn_goods":["affiliateimporteram"],"ztr_list":["ztr-zeumic-work-timer"],"smsgw_contacts":["sms-sender"],"_url_errors":["template-seo-checker"],"plgsgegeor_config":["easy-geo-redirect"],"_errors":["template-seo-checker"],"svs_quiz_form_submit":["svs-quiz-survey-contact"],"rms_email_setting":["rms-interaction"],"svs_quiz":["svs-quiz-survey-contact"],"aidn_price_formula":["affiliateimporteram"],"aidn_log":["affiliateimporteram"],"aidn_goods_archive":["affiliateimporteram"],"aidn_blacklist":["affiliateimporteram"],"robcore_netatmo_data":["robcore-netatmo"],"aidn_account":["affiliateimporteram"],"rms_infusionsoft":["rms-interaction"],"rms_notification_aff_setting":["rms-interaction"],"ahop_textcomp_offerpacks":["avirato-hotels-promotional-packs"],"pluginsl_quotation":["simple-quotation"],"ahop_cats_offerpacks":["avirato-hotels-promotional-packs"],"smsgw_groups":["sms-sender"],"smsgw_messages":["sms-sender"],"smsgw_send":["sms-sender"],"rms_order_form":["rms-interaction"],"rms_order_form_log":["rms-interaction"],"zndskhc_sections":["zendesk-help-center"],"animated_al_list_items":["animated-al-list"],"your_tables":["your-tables"],"shorten2list":["shorten2list"],"t_sounds":["chatlive"],"t_sessions":["chatlive"],"srzinst_cache":["srizon-instagram-album"],"srzinst_albums":["srizon-instagram-album"],"sr_other":["seo-rets"],"sr_user_note":["seo-rets"],"sr_users":["seo-rets"],"yd_searchlog":["yd-search-functions"],"tent_party_token":["content-party"],"aphorismus":["aphorismus"],"ab_press_optimizer_lite_variations":["ab-press-optimizer-lite"],"ap_adblock_detector_log":["adblock-detector"],"ions_cache":["related-ways-to-take-action"],"ab_press_optimizer_lite_experiment":["ab-press-optimizer-lite"],"sr_savesearch":["seo-rets"],"_compress":["wp-easy-tools-compression"],"share_files_dls":["cleverwise-share-files"],"pigeonpack_subscribers":["pigeon-pack"],"redirection":["wp-redirection"],"silvasoft_woo_log":["silvasoft-boekhouden"],"animated_al_list_main":["animated-al-list"],"rad_rapidology_stats":["retainly"],"hari_chapters":["sahih-al-bukhari-hadiths"],"t_messages":["chatlive"],"sr_stat_option":["seo-rets"],"st_widdgets":["live-sports-streamthunder"],"share_files_cats":["cleverwise-share-files"],"t_options":["chatlive"],"siteselector_config":["siteselector"],"sma_lead_report":["swiftcloud"],"stars_smtp_settings":["stars-smtp-mailer"],"shipping_coordinadora_cities":["shipping-coordinadora-woocommerce"],"access_codes":["wp-access-codes"],"stars_emails_log":["stars-smtp-mailer"],"sr_stat_mls":["seo-rets"],"sma_log":["swiftcloud"],"sr_favorites":["seo-rets"],"role_members":["jdefender","jcatalog"],"sp_gwa_sales":["salespage-gwa"],"squirrels_inventory":["squirrels-auto-inventory"],"censorship":["censorship"],"ced_etsy_etsyprofiles":["product-lister-etsy"],"currency_conversion":["jdefender","jcatalog"],"upmp_private_page":["ultimate-private-member-portal-lite"],"wpr_log":["wp-reserves"],"role_trans":["jdefender","jcatalog"],"re_lat_lng":["reactive-lite-advance-searching-filtering-grid"],"mievaluacion":["mis-cursos"],"rcpm_recipe_ingredients":["recipe-manager"],"role_node":["jdefender","jcatalog"],"sro_queries":["search-results-optimizer"],"iel_network":["social-network"],"list_location":["wordpress-world-map-global-presence-plugin-lite-by-nonprofitcmsorg"],"locater_entries":["geo-locater"],"rightnow":["right-now-extended"],"onomy_man":["taxonomy-manager"],"space_trans":["jdefender","jcatalog"],"space_theme":["jdefender","jcatalog"],"space_node":["jdefender","jcatalog"],"ch_fichajes":["control-horas"],"reader_source_relationships":["awe"],"reader_posts":["awe"],"readbloggcm":["readblog"],"role_joomlacontent":["jdefender","jcatalog"],"sro_clicks":["search-results-optimizer"],"list_category":["wordpress-world-map-global-presence-plugin-lite-by-nonprofitcmsorg"],"message_queue":["jdefender","jcatalog"],"cf7lm":["cf7-lead-manager"],"sro_results":["search-results-optimizer"],"sro_themehashes":["search-results-optimizer"],"voyeur":["blog-voyeur"],"sro_themes":["search-results-optimizer"],"role_joomlacategories":["jdefender","jcatalog"],"mis_cursos_register":["mis-cursos"],"likes_comments":["likes-posts-comments"],"rs_admin_pages":["rs-user-access"],"ss_packagemeta":["simple-sponsorships"],"dataset_tables":["jdefender","jcatalog"],"wpfhdownloads":["wp-file-hide"],"rules_arguments":["mwp-rules"],"rules_bundles":["mwp-rules"],"rules_conditions":["mwp-rules"],"rules_custom_logs":["mwp-rules"],"rcode_ads":["video-with-ads"],"wpfancygallery_hu_fancy_images":["wp-fancy-gallery"],"wpfancygallery_hu_fancy_gallery":["wp-fancy-gallery"],"deals_deals":["deals"],"deals_settings":["deals"],"rcal_resource":["resource-calendar"],"rules_hooks":["mwp-rules"],"rules_logs":["mwp-rules"],"dataset_constraintsitems":["jdefender","jcatalog"],"lb_users_counter":["lb-users-counter"],"rules_rules":["mwp-rules"],"rules_scheduled_actions":["mwp-rules"],"lb_page_protect":["lemonberry-page-protect"],"layout_trans":["jdefender","jcatalog"],"layout_node":["jdefender","jcatalog"],"runtasticwidgetcache":["runtastic-widget"],"layout_multiformstrans":["jdefender","jcatalog"],"layout_multiforms":["jdefender","jcatalog"],"ss_packages":["simple-sponsorships"],"layout_mlinkstrans":["jdefender","jcatalog"],"layout_mlinks":["jdefender","jcatalog"],"rcal_reservation":["resource-calendar"],"layout_listingstrans":["jdefender","jcatalog"],"dataset_foreign":["jdefender","jcatalog"],"dataset_constraints":["jdefender","jcatalog"],"miscursos":["mis-cursos"],"custom_taxonomies":["custom-taxonomies"],"miseventos":["mis-cursos"],"liketounlock":["facebook-content-locker"],"likes_posts":["likes-posts-comments"],"credentials_type":["jdefender","jcatalog"],"miseventos_usuario":["mis-cursos"],"lightchat":["light-chat"],"misficheros":["mis-cursos"],"mislogs":["mis-cursos"],"currency_conversion_history":["jdefender","jcatalog"],"currency_country":["jdefender","jcatalog"],"currency_node":["jdefender","jcatalog"],"currency_table":["fx-currency-tables"],"mispreguntas":["mis-cursos"],"customads":["my-custom-ads"],"dataset_columns":["jdefender","jcatalog"],"wpgigs":["happy-gig-calendar"],"wpgeo_campaign":["wp-geo-based-content"],"wpgeo_banners":["wp-geo-based-content"],"customers":["contractor-contact-form-website-to-workflow-tool","customers"],"cutegigs":["bizarski-cute-gigs"],"e_performance_logs":["site-performance"],"mistest":["mis-cursos"],"misvideos":["mis-cursos"],"rtc_cache":["realtime-comments"],"daftarasin":["azonpost"],"daily_logo":["daily-logo"],"rules_actions":["mwp-rules"],"rules_apps":["mwp-rules"],"log":["ibegin-share"],"rg_user_cashback":["revglue-cashback"],"credentials_node":["jdefender","jcatalog"],"cmcustomevents":["coremetrics"],"members_type":["jdefender","jcatalog"],"members_type_trans":["jdefender","jcatalog"],"mastalab_comments_cache":["mastalab-comments"],"redirect_sef":["jdefender","jcatalog"],"masburti_flickr_gallery_photosets":["masburti-flickr-gallery"],"masburti_flickr_gallery_photos":["masburti-flickr-gallery"],"3wp_email_reflector_queue":["threewp-email-reflector"],"3wp_email_reflector_lists":["threewp-email-reflector"],"3wp_email_reflector_list_settings":["threewp-email-reflector"],"contact_form":["never-loose-contact-form"],"3wp_email_reflector_codes":["threewp-email-reflector"],"content_relations":["content-relations"],"usecurex_group":["usecurex"],"mailing_type_trans":["jdefender","jcatalog"],"content_relations_types":["content-relations"],"mailing_type":["jdefender","jcatalog"],"mailing_trans":["jdefender","jcatalog"],"mailing_statistics_user":["jdefender","jcatalog"],"dbb_meta":["wordbb"],"mailing_statistics":["jdefender","jcatalog"],"viadeo_resume":["viadeo-resume"],"mailing_queue":["jdefender","jcatalog"],"country_language":["jdefender","jcatalog"],"country_node":["jdefender","jcatalog"],"mailing_node":["jdefender","jcatalog"],"members_node":["jdefender","jcatalog"],"usecurex_link":["usecurex"],"mailer_node":["jdefender","jcatalog"],"mcw_widget_item":["multiple-column-widget"],"__openquoteproduct":["openquote"],"squirrels_features":["squirrels-auto-inventory"],"mega_menu":["big-voodoo-mega-menu-related-links-menu"],"__openquoteserver":["openquote"],"__openquotemessagetemplates":["openquote"],"__openquotelog":["openquote"],"__openquoteuserinformation":["openquote"],"refcode":["ref-code-generator-access-gate"],"userplace_cards":["userplace-member-subscription-restriction-payments"],"userplace_invoices":["userplace-member-subscription-restriction-payments"],"userplace_logs":["userplace-member-subscription-restriction-payments"],"res_category":["resource-management"],"melibu_shl":["syntax-high-lighter"],"members_lang":["jdefender","jcatalog"],"user_question_answers":["wp-best-quiz"],"mcw_widget":["multiple-column-widget"],"redirection_logs_archive":["redirection-reporting"],"mcm_baby_name":["mcm-random-baby-name-generator"],"mcavoy_searches":["mcavoy"],"res_library":["resource-management"],"404s":["404s"],"3wp_email_reflector_queue_mail_data":["threewp-email-reflector"],"mastalab_comments_users":["mastalab-comments"],"membermailbox":["member-mailbox"],"membermailboxrecords":["member-mailbox"],"members_details":["jdefender","jcatalog"],"country_states":["jdefender","jcatalog"],"recordbrowser_tracks":["recordbrowser"],"ch_pausas":["control-horas"],"zacctmgr_acm_assignments_mapping":["account-manager-woocommerce"],"vip_payments":["wp-vip"],"p_netatmosphere_devices_details":["netatmosphere"],"vip_roles":["wp-vip"],"rg_cashback":["revglue-cashback"],"p_netatmosphere_data_overview":["netatmosphere"],"p_netatmosphere_data_group_hour":["netatmosphere"],"p_netatmosphere_data_group_day":["netatmosphere"],"p_netatmosphere_data_details":["netatmosphere"],"visio_playlists":["visio-playlist"],"visio_playlists_lists":["visio-playlist"],"zacctmgr_acm_commissions_mapping":["account-manager-woocommerce"],"vi_dummy_content":["viavi-dummy-content-generator"],"zacctmgr_acm_manager_commission_audit_mapping":["account-manager-woocommerce"],"zacctmgr_acm_order_audit_mapping":["account-manager-woocommerce"],"rg_payment_method":["revglue-cashback"],"wppaybox__forms":["wppaybox"],"wppaybox__forms_offers_link":["wppaybox"],"squirrels_images":["squirrels-auto-inventory"],"rg_user_cashout":["revglue-cashback"],"wppaybox__offers":["wppaybox"],"wppaybox__orders":["wppaybox"],"reader_sources":["awe"],"vip_files":["wp-vip"],"ws":["social-network"],"recordbrowser_records":["recordbrowser"],"ltm_trailer":["trailerapi"],"magic_forms_plagin":["magicform"],"magic_forms_messages":["magicform"],"magic_forms_mails":["magicform"],"magic_forms_logs":["magicform"],"layout_listings":["jdefender","jcatalog"],"_wp_exhibit_exhibits":["datapress"],"_wp_exhibit_parrotable_urls":["datapress"],"recipecan_recipes":["recipecan-recipes"],"rechtstext":["juratext-importer-fur-rechtstexte24"],"reword":["reword"],"lwpwl_post":["luckywp-wiki-linking"],"lwpwl_item":["luckywp-wiki-linking"],"ltm_options":["trailerapi"],"chdog_blocked_ip":["login-watchdog"],"ltd_log":["ltd-tickets"],"lt_src_lambdatest":["lam